WordPress调用文中第一张图片
- 发表于
- WordPress
在制作WordPress主题时,想要实现自动调用文章中的第一张图片作为缩略图,于是找到了一个自动调用文章第一张图片的方法,代码如下:
将以下代码添加到你的主题模板的function.php文件
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('//i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "这里添加默认图片的路径,文章中没有图片时显示";
}
return $first_img;
}
把以下代码添加到你想要显示图片的位置,即可实现自动调用文章中第一张图片
原文连接:WordPress调用文中第一张图片
所有媒体,可在保留署名、
原文连接
的情况下转载,若非则不得使用我方内容。