tzvij

Social Media Profile Bio

Jun 17th, 2014
7,350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <ul class="icons">
  2. <?php
  3. $rss_url = get_the_author_meta( 'rss_url' );
  4. if ( $rss_url && $rss_url != '' ) {
  5. echo '<li class="rss"><a href="' . esc_url($rss_url) . '"></a></li>';
  6. }
  7.  
  8. $google_profile = get_the_author_meta( 'google_profile' );
  9. if ( $google_profile && $google_profile != '' ) {
  10. echo '<li class="google"><a href="' . esc_url($google_profile) . '" rel="author"></a></li>';
  11. }
  12.  
  13. $twitter_profile = get_the_author_meta( 'twitter_profile' );
  14. if ( $twitter_profile && $twitter_profile != '' ) {
  15. echo '<li class="twitter"><a href="' . esc_url($twitter_profile) . '"></a></li>';
  16. }
  17.  
  18. $facebook_profile = get_the_author_meta( 'facebook_profile' );
  19. if ( $facebook_profile && $facebook_profile != '' ) {
  20. echo '<li class="facebook"><a href="' . esc_url($facebook_profile) . '"></a></li>';
  21. }
  22.  
  23. $linkedin_profile = get_the_author_meta( 'linkedin_profile' );
  24. if ( $linkedin_profile && $linkedin_profile != '' ) {
  25. echo '<li class="linkedin"><a href="' . esc_url($linkedin_profile) . '"></a></li>';
  26. }
  27. ?>
  28. </ul>
Advertisement
Add Comment
Please, Sign In to add comment