2

你好,

我有来自帖子的图像的自定义字段,我想显示按视图排序的前 5 个帖子。我正在使用WordPress,你能帮帮我吗?

对不起,我的英语不好。

谢谢。

4

3 回答 3

6

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'
));
于 2012-09-25T20:47:55.580 回答
5

这很容易。只需将此代码用于您的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();
   ?>

详情请前往

于 2016-10-31T08:29:10.600 回答
2

http://www.wpbeginner.com/wp-tutorials/how-to-track-popular-posts-by-views-in-wordpress-without-a-plugin/

基本上它为每个帖子添加一个元字段 - 并在查看旧记录时删除它,然后将其替换为“旧记录 + 1”

于 2012-09-24T18:57:15.617 回答