一般我在写文章的时候都会加上配图,但是也有的文章实在是没有配图了,我就整一张默认的缩略图,但是一旦无缩略图的文章多了,默认缩略图就重复很多,会有些不美观。
于是干脆在首页和列表页自动调用几张图片作为缩略图,这种方法的确很省事,而且缩略图也不会大量重复,非常实用的一个WordPress技巧,这篇WordPress教程给大家分享出来:
//支持外链缩略图
if ( function_exists('add_theme_support') )
add_theme_support('post-thumbnails');
function catch_first_image()
{
global $post, $posts;$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=['"]([^'"]+)['"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
//判断图片是否过小
if(!empty($first_img))
{
$image_size = getimagesize($first_img);
$image_width = $image_size[0];
}
//如果第一张图不存在或过小,则返回随机图片
if(empty($first_img) || $image_width<50){
$first_img = '';
//从2张图中随机选择,可根据自己的图片数量修改mt_rand(1, 2)中的2
$random = mt_rand(1, 2);
echo get_bloginfo ( 'stylesheet_directory' );
echo '/images/random/'.$random.'.JPG';
}
return $first_img;
}
上面代码可以实现文章缩略图随机显示多张图片,这样就不会始终调用单一的缩略图了。
使用方法
1、复制上面代码粘贴到主题functions.php中
2、在主题中新建/images/random/目录,找一些自己喜欢的图片上传进去。将他们重命名为1,2,3,4,5…..jpg(数量随意)
$random:表示图片标号
3、在想要展示缩略图的地方加入下面代码
<?php echo catch_first_image(); ?>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...