Advertisement
Guest User

Untitled

a guest
Feb 17th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. <?php if(get_option('pyre_author') == 'On'): ?>
  2. <div class="post-box-wrapper first">
  3.  
  4. <div class="post-box">
  5.  
  6. <?php foreach( get_coauthors() as $coauthor ): ?>
  7. <h5>About the Author</h5>
  8. <?php echo get_avatar($coauthor->user_email, '75'); ?>
  9. <p><?php $coauthor->description; ?></p>
  10. <?php if(get_the_author_meta('twitter', $coauthor->ID) || get_the_author_meta('facebook',$coauthor->ID)): ?>
  11. <p>
  12. <?php if(get_the_author_meta('twitter',$coauthor->ID)): ?>
  13. <a href='http://twitter.com/<?php echo get_the_author_meta('twitter',$coauthor->ID); ?>'>Twitter</a>
  14. <?php endif; ?>
  15.  
  16. <?php if(get_the_author_meta('twitter',$coauthor->ID) || get_the_author_meta('facebook',$coauthor->ID)): ?>
  17. -
  18. <?php endif; ?>
  19.  
  20. <?php if(get_the_author_meta('facebook',$coauthor->ID)): ?>
  21. <a href='http://facebook.com/<?php echo get_the_author_meta('facebook',$coauthor->ID); ?>'>Facebook</a>
  22. <?php endif; ?>
  23. </p>
  24. <?php endif; ?>
  25. </div>
  26.  
  27. </div>
  28. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement