我正在通过简码将图像添加到 WP 站点:
[figure src="" url"" caption=""]
其中src
是图像源,url
是指向更大图像的链接(如果需要),caption
是标题。
我试图src
从上面的代码中得到它:
$pattern = '/<img[^>]*src=\"?(?<src>[^\"]*)\"?[^>]*>/im';
preg_match( $pattern, $html, $matches );
if($matches['src']) {
return $matches['src'];
}
但我试图弄清楚如何获得[figure]
比赛。