Wordpress 禁用可视编辑器和媒体按钮

Wordpress 禁用可视编辑器和媒体按钮,wordpress,Wordpress,创建插件在wordpress站点中添加“帖子” $args = array( 'labels' => $labels, 'hierarchical' => true, 'description' => 'Music reviews filterable by genre', 'supports' => array('title', 'editor', 'thumbnail', 'revisions'), 'public' =>

创建插件在wordpress站点中添加“帖子”

$args = array(
    'labels' => $labels,
    'hierarchical' => true,
    'description' => 'Music reviews filterable by genre',
    'supports' => array('title', 'editor', 'thumbnail', 'revisions'),
    'public' => true,
    'show_ui' => true,
    'show_in_menu' => true,
    'menu_position' => 5,
    'menu_icon' => 'dashicons-format-quote',
    'show_in_nav_menus' => true,
    'publicly_queryable' => false,
    'exclude_from_search' => false,
    'has_archive' => false,
    'query_var' => true,
    'can_export' => false,
    'rewrite' => true,
    'capability_type' => 'post',
    'user_can_richedit' => '__return_false',
);

register_post_type('music_review', $args);
那个么,我怎样才能禁用插件页面上的可视化编辑器和“添加媒体”按钮呢