当WordPress文章中没有设置特色图片时,读取文章中的第一张图片
1 | https://www.91wordpress.com/370.html |
1. 切换到你主题所在目录,打开function.php文件,加入下面这段代码:注:此方法工作原理是查找文章内有没img这个标签,如果有就调出第一张图片,如果没有就用一张设计好的图片代替
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 = get_bloginfo('template_url')."/images/default.jpg"; } return $first_img; } |
2. 在想调用的地方,加入下面这段代码:
1 2 3 4 | <?php $a=catch_that_image(); echo '<img src="'.$a.'" alt="" style="width:150px;"/>'; ?> |