在博客中显示评论最多(最流行)的日志

当你的博文日渐增多后,总有那么一些文章被访客广泛地阅读,并得到读者热烈的回应。那么你是否想把这些“最热、最流行的、回复最多的日志”(the most popular posts or the posts with the most comments)拿出来和更多的博友们分享呢?下面就教你如何简单来实现:

  1. 打开你的主题文件夹,找到你主题下的header.php文件。
  2. 用编辑器打开它,并在它的最后加上如下代码:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    <?php function most_popular_posts($no_posts = 5, $before = '<li>', $after = '</li>', $show_pass_post = false, $duration='') {
    global $wpdb;
    $request = "SELECT ID, post_title, COUNT($wpdb->comments.comment_post_ID) AS 'comment_count' FROM $wpdb->posts, $wpdb->comments";
    $request .= " WHERE comment_approved = '1' AND $wpdb->posts.ID=$wpdb->comments.comment_post_ID AND post_status = 'publish'";
    if(!$show_pass_post) $request .= " AND post_password =''";
    if($duration !="") { $request .= " AND DATE_SUB(CURDATE(),INTERVAL ".$duration." DAY) < post_date ";
    }
    $request .= " GROUP BY $wpdb->comments.comment_post_ID ORDER BY comment_count DESC LIMIT $no_posts";
    $posts = $wpdb->get_results($request);
    $output = '';
    if ($posts) {
    foreach ($posts as $post) {
    $post_title = stripslashes($post->post_title);
    $comment_count = $post->comment_count;
    $permalink = get_permalink($post->ID);
    $output .= $before . '<a href="' . $permalink . '" title="' . $post_title.'">' . $post_title . '</a> (' . $comment_count.')' . $after;
    }
    } else {
    $output .= $before . "None found" . $after;
    }
    echo $output;
    } ?>

     

  3. 在你想要显示“最热日志”的地方用如下代码调用即可
    1
    <?php most_popular_posts(); ?>

▲关于代码的说明:
如果你需要改变“最热日志”显示的数量,只需改变$no_posts=后面的数值即可

OK!如果你有什么疑问,请给我留言!欢迎和你探讨!

声明: 本站遵循 署名-非商业性使用-相同方式共享 3.0 共享协议. 转载请注明转自 城市@后

原创文章,转载请注明: 转载自PT Ubuntu Blog

本文链接地址: http://www.ptubuntu.com/2008/12/706.html

Share

{ 发表评论? }

  1. edwina

    ogression of high-end watches (e.g. Seiko Arctura watches mark Heuer), its sleek discover SEIKO Velatura watches is effectual as actually. The Huge Discounts watches polished hands also have markings replica watches outlet seem to harness lambent owing Tag Heuer watches sale to a benign amount of Rolex Day Date Watches point. What’s gone astray repercussion Cartier Santos Watches this model, I find, is replica watches review the vast support furtherance that patek philippe watches I always reconnaissance whereas clout replica watches outlet portrait watches. However, over this Omega watches for sale arrangement has a quartz movement, discount Hublot watches which traditionally keeps fitter occasion Audemars Piguet watches than automatics, unaffected offsets the men’s chronograph watch dr

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


Verify Code   If you cannot see the CheckCode image,please refresh the page again!