📅  最后修改于: 2022-03-11 14:57:10.294000             🧑  作者: Mango
function add_author_support_to_posts() {
add_post_type_support( 'your_custom_post_type', 'author' );
}
add_action( 'init', 'add_author_support_to_posts' );