wordpress 投稿画面 消す

	
add_action( 'init' , 'my_remove_post_editor_support' );
 
function my_remove_post_editor_support() {
 remove_post_type_support( 'news', 'editor' );
}