概要説明
管理画面に表示されている標準のヘルプ機能を殆ど使ったことがありません。ヘルプメニューを非表示にするカスタマイズ。
管理画面右上のヘルプを非表示にする
functions.php
/*----------------------------------------------------
管理画面右上のヘルプを非表示にする
----------------------------------------------------*/
if ( !function_exists( 'remove_contextual_help' ) ){
function remove_contextual_help() {
$screen = get_current_screen();
$screen->remove_help_tabs();
}
add_action( 'admin_head', 'remove_contextual_help' );
}
WordPress 3.3 以降は非推奨の記述
functions.php
/*----------------------------------------------------
管理画面右上のヘルプを非表示にする ( 非推奨 )
----------------------------------------------------*/
add_filter('contextual_help', function($old_help, $id, $screen) {
$screen->remove_help_tabs();
$screen->set_help_sidebar('');
return false;
}, 900, 3);
Deprecated: フック contextual_help は、バージョン 3.3.0 から非推奨になりました ! 代わりに get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab() を使用してください。
Deprecated: contextual_help is deprecated since version 3.3.0! Use get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab() instead.
上記のようなメッセージの場合は最新版への対応をおすすめ致します。



