Skip to content

Instantly share code, notes, and snippets.

@yokotak0527
Created March 21, 2013 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yokotak0527/5211058 to your computer and use it in GitHub Desktop.
Save yokotak0527/5211058 to your computer and use it in GitHub Desktop.
WordPressのエディターを強制的にHTMLモードにする
add_action('admin_head','page_editor');
function page_editor(){
global $post_type;
global $user_ID;
// 固定ページの場合HTMLエディターに
if($post_type == 'page'){
add_filter('user_can_richedit','__return_false');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment