0

我一直在寻找整个网络,我什至试图聘请自由职业者寻求帮助,但没有运气。在搜索时,我发现如何从 wordpress 中的选定类别中获取热门帖子?& http://www.queness.com/code-snippet/6546/how-to-display-most-popular-posts-from-a-specific-category-in-wordpress这基本上就是我想要的,但我想要我从中获得的信息被拆分,以便我可以对帖子进行排名。

<?php
$args=array(
  'cat' => 3, // this is category ID
  'orderby' => 'comment_count',
  'order' => 'DESC',
  'post_type' => 'post',
  'post_status' => 'publish',
  'posts_per_page' => 6, // how much post you want to display
  'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) { ?>
<ul>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php    the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php  endwhile; ?>
</ul>
<?php }

wp_reset_query(); ?>

使用该代码,它会通过评论获得最受欢迎的帖子,而我想要做的基本上是获取结果并为其添加排名,如下面的示例。

#1 - post 1
#2 - post 2
#3 - post 3
#4 - post 4
#5 - post5 last post

提前感谢您的帮助

4

2 回答 2

1

可能这个想法会对你有所帮助。

使用 get_comments_number( $post_id )函数

要获取评论数量,然后执行 if else 循环以显示排名。

$num_comments = get_comments_number(); // get_comments_number returns only a numeric value

if ( comments_open() ) {
if ( $num_comments == 0 ) {
    $rating= 0 ;
} elseif ( $num_comments > 1 ) {
    $rating= 1 ;
} else {
    $rating= 0 ;
}
}

谢谢

于 2012-08-27T05:55:09.723 回答
0

根据您当前的问题,我了解以下内容:

  1. 您想从评论最多的 WP 数据库帖子中查询。
  2. 您希望向访问者显示收到的帖子的排名。排名取决于帖子的评论数量。

所以你的结果可能是:

1 个帖子 A(评论数 500)

2 帖子 B(评论数 499)

3 Post Z(评论数 200)

我会这样做:

<?php
function get_popular_posts()
{

$sql="SELECT comment_count, guid AS link_to_post, post_title
FROM wp_posts 
WHERE post_status = "publish" AND post_type = "post"
ORDER BY comment_count DESC
LIMIT 5"
return $wpdb->get_results($sql, OBJECT)

}   
$post_objects = get_popular_posts();
$i = 1;
foreach($post_objects as $object)
{
echo 'Post: ' . $i . '#' . ' ' . $post_title . ' ' . $link_to_post . ' ' . $comment_count;
$i++;
}
?>

没有测试代码。但它应该从数据库中获取五个“顶级帖子”。出于解释原因,留在了 comment_count 中。

于 2013-11-16T09:24:24.500 回答