【wordpress】固定ページでビジュアルエディタ使用禁止にする設定

固定ページは表示崩れを防ぐためにもビジュアルエディタを使うことがほぼないので、はじめから使えないようにfunctions.phpに記述しておく。
忘れないようにメモメモ。

/* 固定ページでビジュアルエディター使用禁止 */
  function disable_visual_editor_in_page()
  {
      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_in_page');
  add_action('load-post-new.php', 'disable_visual_editor_in_page');
ABOUT US
yukipan
Web制作会社で働いてます。パンダとかリラックマとか、まあるいものが好き。好奇心旺盛で、何にでも興味をもってしまう。とりあえずやってみてから取捨選択するのがモットー。今はグリーンカレーとチャイと株式投資がブーム。