我正在尝试在主博客页面上检索并显示帖子的第一张图片......但唯一显示的是该图片的链接,而不是图片本身!不知道怎么回事!...
这是用于尝试此操作的代码。
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;
}
感谢您的帮助......这是有问题的页面的链接:http ://wordpress-dev.designer17.com/blog/ (底部帖子)