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