我想使用WP_Query在WordPress中显示10个观看次数最多的帖子,但我的代码没有显示任何内容。
代码:
$q_mostViewed = [
'meta_key' => 'post_views_count',
'orderby' => 'meta_value_num',
'order' => 'DESC',
'posts_per_page' => '10'
];
你能帮我吗?
完整代码:
<!-- Most Viewed -->
<div class="home-post-wrapper col-sm-12 nopadding">
<?php
$q_mostViewed = [
'meta_key' => 'post_views_count',
'orderby' => 'meta_value_num',
'order' => 'DESC',
'posts_per_page' => '10'
];
$mostViewed = new WP_Query($q_mostViewed);
if ($mostViewed->have_posts()) :
while ($mostViewed->have_posts()) :
$mostViewed->the_post(); ?>
// Do things here
<?php endwhile;
endif; ?>
</div>
答案 0 :(得分:1)
打开激活主题的functions.php文件,并添加以下代码。
setPostViews()函数使用post_views_count元键添加或更新post meta。
/*
* Set post views count using post meta
*/
function setPostViews($postID) {
$countKey = 'post_views_count';
$count = get_post_meta($postID, $countKey, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $countKey);
add_post_meta($postID, $countKey, '0');
}else{
$count++;
update_post_meta($postID, $countKey, $count);
}
}
single.php文件
从激活的主题目录中打开single.php文件,并将setPostViews()函数放在循环中。
setPostViews(get_the_ID());
显示观看次数最多的帖子
以下查询将根据post_views_count元键值获取帖子。将以下代码放在侧边栏中或您要显示最热门帖子列表的位置。
<?php
query_posts('meta_key=post_views_count&orderby=meta_value_num&order=DESC');
if (have_posts()) : while (have_posts()) : the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile; endif;
wp_reset_query();
?>