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

概要説明

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

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.

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

関連機能

  1. リビジョンの自動保存を停止、最大件数変更

  2. 管理画面ヘッダーの不要なメニューを非表示にする

  3. 記事タイトルの初期値(プレースホルダー)をpost_type毎に変更する

サイドバー

よく使うカスタマイズ

最近の記事

アニメの名言集

ファーストキスのような
強烈な行為と共に
海馬に記憶されたエピソードは
忘却しにくいのよ

STEINS;GATE
by 牧瀬紅莉栖

Profile

PAGE TOP
Amazon プライム対象