从自定义帖子类型中删除标题并添加新按钮-Wordpress

时间:2018-07-21 13:24:58

标签: wordpress post custom-post-type

enter image description here

需要一种解决方案,以从没有jQuery的帖子类型中删除“标题”和“添加新”按钮。

1 个答案:

答案 0 :(得分:0)

删除标题的最佳方法是使用功能remove_post_type_support()。

remove_post_type_support('custom_post_type', 'title');

您可以通过init钩子将其添加到functions.php文件中。

add_action( 'init', 'remove_custom_post_support' );

function remove_custom_post_support() {
    remove_post_type_support( 'custom_post_type', 'title' );
}