Это будет работать с любой темой.
Шаг 1:
Добавьте этот код из следующего блока в файл тем function.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 = '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);
}
}
// Remove issues with prefetching adding extra views
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
Шаг 2: Добавьте эту строку кода в файл single.php . Обратите внимание, что это должно быть внутри цикла, вы можете добавить его сразу после the_content()
:
setPostViews(get_the_ID());
Например, оно должно быть:
the_content(); setPostViews(get_the_ID());
Шаг 3: Добавьте эту строку кода, где вы хотите показать общее количество просмотров сообщения:
echo getPostViews(get_the_ID());
Источник: https://www.themexpert.com/blog/track-display-post-views-in-wordpress