WordPress获取第一张图作为缩略图
记录WordPress获取第一张图作为缩略图。 首先如果有设置缩略图,则从设置中获取缩略图,没有的话,就从文章中获取第一张图片作为缩略图。 将其添加到functions.php或制作功能插件: 12345678910111213function 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 = "/path/to/default.png"; } return $first_img; } 前端循环输出代码 123456789101112131415if ( get_the_post_thumbnail($post_id) != '' ) { echo '<a […] (more...)