Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. get_avatar( $current_user->user_email, 128, null, null, array('class' => array('img-responsive', 'img-rounded') ) );
  2.  
  3. $args = array(
  4. 'class' => 'img-responsive img-rounded'
  5. );
  6. get_avatar( $current_user->user_email, 128, null, null, $args );
  7.  
  8. $args = array(
  9. 'class' => array( 'img-responsive', 'img-rounded');
  10. );
  11.  
  12. get_avatar( $id_or_email = get_the_author_meta( 'user_email' ), $size = '60', $default, $alt, $args = array( 'class' => array( 'd-block', 'mx-auto' ) ) );
  13.  
  14. get_avatar( get_the_author_meta( 'user_email' ), '60', $default, $alt, array( 'class' => array( 'd-block', 'mx-auto' ) ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement