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

In this article

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

Parameters

$messagestring
The message being displayed.
$postWP_Post
The post being edited.
$installedbool
Whether the classic editor is installed.

Source

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

Changelog

VersionDescription
6.4.0Added $installed parameter.
5.0.3Introduced.

User Contributed Notes

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