WordPress: Disable “Add New” on Custom Post Type

前端 未结 10 917
执笔经年
执笔经年 2020-12-07 14:58

Is there any way to disable the option of adding a new post under a Custom Post Type in WordPress (3.0)? I\'ve looked into labels and arguments but can\'t find anything that

10条回答
  •  春和景丽
    2020-12-07 15:10

    @ Staffan Estberg,

    This is best way to hide the Add New or Create New button in custom postypes

    'capability_type'    => 'post',
    
            'capabilities'       => array( 'create_posts' => false ),       
    
            'map_meta_cap'       => true,
    

    It disable to create new post in custom post types both side in admin menu and above the list of post type.

提交回复
热议问题