WordPress怎么调用文章的第一张图片
一般WordPress主题都自带可以自定义缩略图,或者自动将第一张文章中的图片作为缩略图。 但是有时我们可能需要调用文章中的图片称为缩略图。 例如,在设置企业网站模板时,可能需要手动设置此功能。下面我一起来看看,WordPress怎么调用文章的第一张图片。
将以下代码添加到你的主题模板的function.php文件
1 2 3 4 5 6 7 8 9 10 11 12 | 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)){ //Defines a default image $first_img = "这里添加默认图片的路径,文章中没有图片时显示"; } return $first_img; } |
把以下代码添加到你想要显示图片的位置,即可实现自动调用文章中第一张图片
1 | <img src="<?php echo catch_that_image() ?>" alt="" /> |