从特定的自定义帖子类型编辑屏幕中删除标题

时间:2018-12-17 12:45:44

标签: wordpress custom-post-type

我想从WordPress中的特定自定义帖子类型中删除自定义帖子类型标题字段 我的自定义帖子类型为:post_type=dosage-details因此,我删除了该帖子类型标题字段。

2 个答案:

答案 0 :(得分:0)

您可以将以下代码添加到您的functions.php中:

function remove_post_type_title() {

    remove_post_type_support( 'dosage-details', 'title' );

}

add_action( 'init', 'remove_post_type_title' );

Src:http://www.lets-develop.com/html5-html-css-css3-php-wordpress-jquery-javascript-photoshop-illustrator-flash-tutorial/wordpress-plugin-theme-codex-template/remove-title-from-custom-post-type-wordpress/

答案 1 :(得分:0)

您可以使用get_post_type()来检查循环中的帖子类型,这样您就可以看到类似的内容:

//if the post type is not 'dosage-details'
if ( 'dosage-details' != get_post_type() ) {
    the_title();
}