Advertisement
Guest User

The_author Loop

a guest
Mar 5th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <p class="post-author author vcard">
  2.  
  3. <?php
  4.  
  5. /* translators: this is for the author byline, such as 'by John Doe' */
  6.  
  7. $author_url = '<a href="' . get_author_posts_url( get_the_author_meta( 'ID' ) ) . '" class="url">' . get_the_author_meta( 'display_name' ) . '</a>';
  8.  
  9. printf( __( 'by %s', 'graphene' ), '<span class="fn nickname">' . $author_url . '</span>' );
  10.  
  11. ?>
  12.  
  13. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement