Filters the message displayed in the block editor interface when JavaScript is not enabled in the browser.
$messagestring$postWP_Post$installedboolwp-admin/edit-form-blocks.php:439file scope * @since 6.4.0 Added `$installed` parameter. * * @param string $message The message being displayed. * @param WP_Post $post The post being edited. * @param bool $installed Whether the classic editor is installed. */ $message = apply_filters( 'block_editor_no_javascript_message', $message, $post, $installed ); wp_admin_notice( $message, array( 'type' => 'error', ) );Introduced in 5.0.3. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.