你好,
我有来自帖子的图像的自定义字段,我想显示按视图排序的前 5 个帖子。我正在使用WordPress,你能帮帮我吗?
对不起,我的英语不好。
谢谢。
Xhynk 的参考文献有一个错误:
它运行的查询按字母顺序(1、2、20、23、3、4 等)返回帖子
你只需要改变
'orderby' => 'wpb_post_views_count'
到
'orderby' => 'meta_value_num'
对于前 5 名,请使用:
$popularpost = new WP_Query(array(
'posts_per_page' => 5,
'meta_key' => 'wpb_post_views_count',
'orderby' => 'meta_value_num',
'order' => 'DESC'
));
这很容易。只需将此代码用于您的functions.php
/*
* 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
setPostViews(get_the_ID());
这是您的热门帖子查询:
<?php
query_posts('meta_key=post_views_count&posts_per_page=5&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();
?>
详情请前往
基本上它为每个帖子添加一个元字段 - 并在查看旧记录时删除它,然后将其替换为“旧记录 + 1”