apply_filters( 'block_editor_no_javascript_message', string $message, WP_Post $post, bool $installed )

Filters the message displayed in the block editor interface when JavaScript is not enabled in the browser.


Parameters

$message string
The message being displayed.
$post WP_Post
The post being edited.
$installed bool
Whether the classic editor is installed.

Top ↑

Source

File: wp-admin/edit-form-blocks.php. View all references

$message = apply_filters( 'block_editor_no_javascript_message', $message, $post, $installed );

Top ↑

Changelog

Changelog
Version Description
6.4.0 Added $installed parameter.
5.0.3 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.