我一直在尋找網絡我甚至試圖聘請自由職業者在這方面的幫助,但沒有運氣。雖然搜索我發現這how to get popular posts fro selected categories in wordpress? & http://www.queness.com/code-snippet/6546/how-to-display-most-popular-posts-from-a-specific-category-in-wordpress這基本上是我想要的,但我想從我得到的信息分裂,所以我可以排名帖子。如何拆分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
在此先感謝您的幫助
我想比較每個帖子的評論,謝謝/ – leanswag
是在循環中使用它,以便這將運行在每個帖子 – Maidul