2012-08-27 119 views
0

我一直在尋找網絡我甚至試圖聘請自由職業者在這方面的幫助,但沒有運氣。雖然搜索我發現這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 

在此先感謝您的幫助

回答

1

可能是這樣的想法會幫助你。

使用get_comments_number($ POST_ID)function

要得到評論的數量,然後做了排名顯示,如果一個其他循環。

$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 ; 
} 
} 

感謝

+0

我想比較每個帖子的評論,謝謝/ – leanswag

+0

是在循環中使用它,以便這將運行在每個帖子 – Maidul

0

通過當前的問題,我瞭解以下內容:

  1. 你想從具有最多評論的WP數據庫的帖子進行查詢。
  2. 您想向訪問者顯示收到的帖子的排名。排名由評論發佈的數量決定。

所以,你的結果可能是:

1後A(評論數500)

2張貼B(評論數499)

3張貼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中。