需要从the_content()获取所有<img/>;在wordpress?

时间:2013-12-31 18:39:38

标签: php wordpress

我最近刚将博客网站上的所有内容导入wordpress,我需要整理一下。

我在single.php中工作,我想从<a><img src=""/></a>获取每个the_content();。我的php充其量有点粗制滥造。

据我所知,这让我得到了帖子的第一张图片,但是我需要类似的东西,一张能够从the_content();获取所有图片(非精选图片)的内容。

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)) {
        $first_img = "/path/to/default.png";
    }
    return $first_img;
} 

2 个答案:

答案 0 :(得分:4)

看一下PHP的原生DOMDocument对象。 http://www.php.net/manual/en/class.domdocument.php

您可以通过loadHTML()获取内容并将其加载到DOMDocument中。您可以使用getElementsByTagName()获取所有图像。

http://www.php.net/manual/en/domdocument.getelementsbytagname.php

$document = new DOMDocument();
$document->loadHTML($post->post_content);
$images = $document->getElementsByTagName('img');

答案 1 :(得分:2)

DOMDocument的琐碎任务:

$doc = new DOMDocument();
$doc->loadHTML($post->post_content);
foreach ($doc->getElementsByTagName('img') as $img)
    $img->attributes['src'] = '/path/to/default.png'; // or whatever you want to do
return $doc->saveHTML();

您需要注意,saveHTML()可能会在您的结构周围添加缺少的标签。