site_editor_no_javascript_message
Filters the message displayed in the site editor interface when JavaScript is not enabled in the browser.
Использование
add_filter( 'site_editor_no_javascript_message', 'wp_kama_site_editor_no_javascript_message_filter', 10, 2 );
/**
* Function for `site_editor_no_javascript_message` filter-hook.
*
* @param string $message The message being displayed.
* @param WP_Post $post The post being edited.
*
* @return string
*/
function wp_kama_site_editor_no_javascript_message_filter( $message, $post ){
// filter...
return $message;
}
- $message(строка)
- The message being displayed.
- $post(WP_Post)
- The post being edited.
Список изменений
| С версии 6.3.0 | Введена. |
Где вызывается хук
В файле: /wp-admin/site-editor.php
site_editor_no_javascript_message
wp-admin/site-editor.php 327
$message = apply_filters( 'site_editor_no_javascript_message', __( 'The site editor requires JavaScript. Please enable JavaScript in your browser settings.' ), $post );