Answers for "wordpress php get author mail"

0

wp get post author link

<?php $author_id=$post->post_author; ?>
<img src="<?php the_author_meta( 'avatar' , $author_id ); ?> " width="140" height="140" class="avatar" alt="<?php echo the_author_meta( 'display_name' , $author_id ); ?>" />
<?php the_author_meta( 'user_nicename' , $author_id ); ?>
Posted by: Guest on June-16-2021
0

wp+get author box in dashboard

add_post_type_support( string $post_type, string|array $feature, mixed $args )
/* example  */
add_post_type_support( 'my_post_type', array(  
    'author', 'excerpt',
) );
Posted by: Guest on December-01-2020

Code answers related to "wordpress php get author mail"

Browse Popular Code Answers by Language