我会建立一个循环,将我所有的cpt传递到
function add_cpt_author_support( ) {
$post_types = array(\'detox\', \'recipes\', \'movements\', \'lifestyle\');
foreach ($post_types as $type) {
add_post_type_support($type, \'author\');
}
}
add_action( \'init\', \'add_cpt_author_support\' );
另一个想法是,为什么不在注册自定义帖子类型时声明对作者的支持?