Skip to content

Instantly share code, notes, and snippets.

@shehabkhan013
Created January 28, 2018 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shehabkhan013/2c1b8678e14d5d059bd81f89d14abf07 to your computer and use it in GitHub Desktop.
Save shehabkhan013/2c1b8678e14d5d059bd81f89d14abf07 to your computer and use it in GitHub Desktop.
Wordpress Get Author Information In User Area
//for user profile picture
<?php echo get_avatar(get_the_author_meta('ID'), 100);?>
//for user profile Name
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) ); ?>"><?php the_author(); ?></a>
//for user discription
<?php echo get_the_author_meta('description'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment