为了方便访问者找到最好的内容,很多博客都会在显著的位置展示最热的文章,也就是评论最多的文章,就集成了这一功能。今天再发一个带缩略图的评论最文章代码。
<?php $popular = new WP_Query('orderby=comment_count&posts_per_page=5'); ?>
<?php while ($popular->have_posts()) : $popular->the_post(); ?>
<?php $justanimage = get_post_meta($post->ID, 'image', true);
if ($justanimage) { ?>
<img src="<?php echo get_post_meta($post->ID, "image", true); ?>" alt="<?php the_title(); ?>" />
<?php } else { ?>
<img src="http://zmingcx.com/wp-content/themes/HotNewspro3/images/logo.png" alt="" />
<?php } ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endwhile; ?>
将这段代码粘贴到模板适当位置,评论最多的文章列表及缩略图就会显示在该位置处。不过可别忘了给文章添加自定义域:image,并用一张默认图片的 地址替换掉我的LOGO图片地址,如果未添加自定义域就会用这张图片代替,再加上CSS样式效果更佳。