Skip to content
نئے اسلامی سال 1447 ھ کا آغاز ہوگیا ہےپاکستان میں اسلامی سال کے پہلے مہینہ محرم الحرام کا چاند نظر آگیا رب العالمین یہ سال تمام مسلمانوں کے لئے رحمتوں اور برکتوں کا باعث بنائے آمین
اگر آپ کو کسی مخصوص خبر کی تلاش ہے تو یہاں نیچے دئے گئے باکس کی مدد سے تلاش کریں
// 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');