国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > WordPress > WordPress实现缩略图显示上月最多评论贴

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

来源:程序员人生   发布时间:2014-01-22 22:01:01 阅读次数:3571次

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

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生