程序员人生 网站导航

WordPress实现缩略图显示上月最多评论贴

栏目:WordPress时间:2014-01-22 22:01:01

WordPress实现缩略图显示上月最多评论贴,这段代码可以显示上一个月评论最多的日志,属于一段计数型代码,把第一段放在functions.php中,然后再把第二段放在你想显示的文件中。

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(); ?>

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐