有时候,我们有些图片来自远程,而很多WORDPRESS主题在首页或者列表页只会调用默认上传的那个图片,而我们这些远程图片又不想下载回来,还想要显示,那就试试下面的方法吧
1、找到主题下的functions.php,增加一个现实第一个图片的方法。、
//获取文章第一张图片,如果没有图就会显示默认的图
function catch_that_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)){
$first_img = bloginfo('template_url'). '/images/default-thumb.jpg';
}
return $first_img;
}
2、在需要显示的地方,加上以下代码