我没有得到Preg_match_all

时间:2015-11-19 17:16:05

标签: wordpress image preg-match-all

我想在我的Wordpress帖子中找到一张图片(通过短代码[image] ... [/ image]设置为特色图片。因为我正在使用插件的代码自动保存远程图像,我想这可行,但事实并非如此。

任何人都可以帮助我吗?谢谢!

    if(preg_match_all('/.image./(.*?)/..image./', $post->post_content, $matches)){
    $first_image = $matches [1] [0];

1 个答案:

答案 0 :(得分:0)

尝试以下操作(不知道您的短代码实际上是什么样子)

if(preg_match_all('/\[image\](.*?)\[\/image\]/', $post->post_content, $matches)){