/ Published in: PHP
This CSS is nice to use with this function:
.custom .avatar {float:left; border:3px solid #ddd; margin-right:1em;}
.custom .avatar {float:left; border:3px solid #ddd; margin-right:1em;}
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function author_avatar() { echo get_avatar( get_the_author_id(), 50 ); } add_action('thesis_hook_before_headline', 'author_avatar');