管理画面右上のヘルプを非表示にする

概要説明

管理画面に表示されている標準のヘルプ機能を殆ど使ったことがありません。ヘルプメニューを非表示にするカスタマイズ。

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.

上記のようなメッセージの場合は最新版への対応をおすすめ致します。

WordPress Developer Resources

関連機能

  1. 管理画面の特定のメニューを非表示にする

  2. WordPress投稿ページにボタンを追加して任意の処理を実行させる

  3. WordPressプラグインが英語表示になってしまった時に日本語にする方法 ( 日本語対応済みのプラグインの場合 )

サイドバー

よく使うカスタマイズ

最近の記事

アニメの名言集

いかに鞘から抜かずにおくか
そのために我々は死にものぐるいで
剣を振っとるのだ

バガボンド
by 柳生石舟斎

Profile

PAGE TOP
Amazon プライム対象