我一直在寻找整个网络,我什至试图聘请自由职业者寻求帮助,但没有运气。在搜索时,我发现如何从 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
提前感谢您的帮助