//获取文章中第一张图片或视频
//在function文件中写函数
//获取第一张图片
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] [
wordpress获取文章中第一张图片或第一个视频
最新推荐文章于 2024-01-30 14:17:57 发布