特定の固定ページではビジュアルエディタを利用できないようにする


//特定の固定ページではビジュアルエディタを利用できないようにする
function disable_visual_editor_in_page(){
	global $typenow;

	$post_id = $_GET['post'];
	if( $typenow == 'page' ){
		if( $post_id== '480' ){	// xxxページはビジュアルエディタ禁止
			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-now.php', 'disable_visual_editor_in_page');