2011年09月16日 | 栏目 插件技巧 | 阅读(428)

WordPress缩略图最多评论文章

如果你想用代码实现wordpress最多评论文章,那么下面的代码可以显示上一个月评论最多的日志,把第一段放在functions.php中,然后再把第二段放在你想显示的文件中,就可以在该位置显示wordpress最多评论文章了。

function most_wps_popular_thumbnail(){
    $current_month = date('n');
    if($current_month==1){ $last_month=12; }else{ $last_month=$current_month-1; }
    $args = array(
	'posts_per_page' => 4,
	'monthnum'       => $last_month,
	'orderby'        => 'comment_count',
     );
    ?>
   <h1>Most popular snippets</h1>
<?php query_posts($args); ?>
<?php  while (have_posts()) : the_post(); ?>
   <a href="<?php the_permalink(); ?>" title="<? the_title(); ?>"><?php the_post_thumbnail( 'thumbnail' ); ?></a>
<? endwhile; ?>
<?
wp_reset_query();
}
第二段
<? most_wps_popular_thumbnail(); ?>

搏虎CMS 提供高级商业版Wordpress中文CMS主题:点击查看

本文地址: http://www.pohoo.net/articles/suo-lue-tu-zui-duo-ping-lun.html

Tags: ,


相关文章