走啊走
加油

wordpress获取文章第一张图片的方法

服务器价格表

wordpress获取文章第一张图片的方法?

// 获取文章第一张缩略图 
function catch_that_image() {
	global $post;
	$first_img = '';
	ob_start();
	ob_end_clean();
	$output = preg_match_all('/<img*.+src=[\'"]([^\'"]+)[\'"].*>/iU', wp_unslash($post->post_content), $matches);
	if(empty($output)){ 
		$first_img = "/436be4cc39cceae4.png";//默认图片
	}else {
		$first_img = $matches [1][0];
	}
	return $first_img;
}