apply_filters( ‘site_editor_no_javascript_message’, string $message, WP_Post $post )

In this article

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

Parameters

$messagestring
The message being displayed.
$postWP_Post
The post being edited.

Source

$message = apply_filters( 'site_editor_no_javascript_message', __( 'The site editor requires JavaScript. Please enable JavaScript in your browser settings.' ), $post );

Changelog

VersionDescription
6.3.0Introduced.

User Contributed Notes

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