WEB系キャンパス

固定ページごとにエディタ自体を非表示にするコード

特定の固定ページをエディタじゃなくて、カスタムフィールドで構築した場合、通常のエディタが必要ない場合とかは消してしまうに限る。

function disable_visual_editor_in_page_individual(){
    global $typenow;
     $post_id = $_GET['post'];
    if( $typenow == 'page' ){
        if ( in_array( $post_id, array('固定ページのID','固定ページのID'), true )  ){
            $hide_postdiv_css = '<style type="text/css">#postdiv, #postdivrich { display: none; }</style>';
            echo $hide_postdiv_css;
        }
    }
}
add_action('load-post.php', 'disable_visual_editor_in_page_individual');
add_action('load-post-new.php', 'disable_visual_editor_in_page_individual');

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です