Advertisement
Guest User

Untitled

a guest
Mar 5th, 2013
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Post Author Info
  4.  *
  5.  * @package WP Journal
  6.  * @subpackage Include
  7.  */
  8.  ?>
  9.  
  10. <div id="authorinfo" class="columns alpha omega marT30 marB20">
  11.     <a href="<?php the_author_meta('url'); ?>"><?php echo get_avatar( get_the_author_meta('email'), '80' ); ?></a>
  12.     <h5 class="marB10"><?php _e('By', 'contempo'); ?>: <a href="<?php the_author_meta('url'); ?>"><?php the_author(); ?></a></h5>
  13.     <p><?php the_author_meta('description'); ?></p>
  14.         <div class="clear"></div>
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement