Advertisement
Guest User

Author Box

a guest
Jan 8th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <div class="author-box">
  2.     <?php
  3.    
  4.     global $post;
  5.    
  6.     $author_id = $post->post_author;
  7.    
  8.     ?>
  9.    
  10.     <div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' )); ?></div>
  11.  
  12.         <h5 class="author-title"><?php printf( esc_attr__( 'About %s', 'the author' ), get_the_author_meta( 'display_name') );?></h5>
  13.    
  14.                 <div class="author-summary">
  15.    
  16.         <p class="author-description"><?php echo wp_kses( get_the_author_meta( 'description' ), null ); ?></p>
  17.  
  18.         <div class="author-links">
  19.  
  20.             <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="Read more">
  21.                 ...
  22.             </a>
  23.  
  24.         </div>
  25.  
  26.     </div>
  27.  
  28. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement