سلام دوستان من برای نمایش تعداد بازدید مطالب از این کد استفاده میکنم <?phpfunction getpostviews($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if(empty($count) and $count!==0) { delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return "0"; } return $count; } function setpostviews($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key