Answers for "custom post author"

0

custom post author

function add_author_support_to_posts() {
   add_post_type_support( 'your_custom_post_type', 'author' ); 
}
add_action( 'init', 'add_author_support_to_posts' );
Posted by: Guest on June-16-2021

Code answers related to "custom post author"

Browse Popular Code Answers by Language