LoginSignup
0
0

More than 5 years have passed since last update.

WordPress 固定ページのみビジュアルモードを無効にする

Posted at

functions.phpに以下を追記する。

// 固定ページのみ ビジュアルモード無効
function disable_visual_editor_mypost() {
    global $typenow;
    if ($typenow == 'page') {
    add_filter('user_can_richedit', 'disable_visual_editor_filter');
    }
}
function disable_visual_editor_filter() {
    return false;
}
add_action('load-post.php', 'disable_visual_editor_mypost');
add_action('load-post-new.php', 'disable_visual_editor_mypost');

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0