// Show Author Image with Author Name in UrduPaper Theme function urdu_paper_author_image_with_name($content) { if (is_single()) { $author_id = get_the_author_meta('ID'); $author_name = get_the_author(); $author_avatar = get_avatar($author_id, 48); // 48px size image $author_html = '
' . $author_avatar . '
' . $author_name . '
'; return $author_html . $content; } return $content; } add_filter('the_content', 'urdu_paper_author_image_with_name');