نمایش پربازدید ترین مطالب در وردپرس دوستان زیادی نیاز به کدی داشتن که هم تعداد بازدید یک موضوع رو نشون بده و هم اینکه پربازدیدترین ها رو نشون بده. طبق توضیحات عمل کنید و لذت ببرید. کد در فایل فانکشن: [codesyntax lang=”php”] function getpostviews($postID){ $count_key = ‘post_views_count’; $count = get_post_meta($postID, $count_key, true); if($count==”){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, ‘0’); return “0 View”; } return $count.’ Views’; } function setpostviews($postID) { $count_key …