اول در function.php این کد رو بزار:
<?php
function wpb_set_post_views($postID) {
$count_key = 'wpb_post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
//To keep the count accurate, lets get rid of prefetching
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
?>
حالا تو فایل single.php در درون حلقه وردپرس این کد رو هر جا خواستی قرار بده تا تعداد بازدید از اون صفحه رو بهت نشون بده:
wpb_set_post_views(get_the_ID());