我在尝试让这段代码为数组中的每个图像输出一个单独的 og:image 元标记时遇到问题。
<?php 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 = "http://example.com/images/fbthumb.jpg";
}
return $first_img;
}
?>
目前该代码正在返回第一个匹配的 img src 标签,但我希望它将它们全部作为单独的标签返回,以便我可以选择要使用的共享图像。
我知道这一行:
$first_img = $matches [1] [0];
需要针对每种情况更改为某种类型,但我不确定如何。任何帮助将不胜感激。谢谢!
编辑:
这是我在最后一个建议之后的代码:
<?php function catch_that_image() {
global $post, $posts;
$result = preg_match_all('#<img.+src=[\'"]([^\'"]+)[^>]*>#i', $post->post_content, $matches);
return $matches[1];
}
?>
" />
我还是想不通。有任何想法吗?