使用插件创建CPT时启用自定义发布类型的自定义字段

时间:2019-09-26 作者:Dev

我的CPT是使用插件创建的,因此我无法编辑supports参数来添加对自定义字段的支持。

我尝试使用此代码,但也不起作用

add_action(\'init\', \'custom_child_init\');
function custom_child_init() {
    add_theme_support( \'custom-fields\' );
}
如何在编辑页面屏幕上为单个自定义帖子类型启用自定义字段元框?

1 个回复
最合适的回答,由SO网友:Chetan Vaghela 整理而成

试试这个。只要换一下CPT 使用您的帖子类型。

function wpcodex_add_excerpt_support_for_cpt() {
    add_post_type_support( \'CPT\', \'custom-fields\' );
}
add_action( \'init\', \'wpcodex_add_excerpt_support_for_cpt\' );

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: