1

我想获取页面中使用的所有图像。这是我正在使用的代码:

function get_page_images($id) {
    $photos = get_children( array(
        'post_parent' => $id,
        'post_status' => 'inherit',
        'post_type' => 'attachment',
        'post_mime_type' => 'image',
        'order' => 'ASC',
        'orderby' => 'menu_order ID') );

    $results = array();

    if ($photos) {
        foreach ($photos as $photo) {
            // get the correct image html for the selected size
            $results[] = wp_get_attachment_image($photo->ID, $size);
        }
    }

    return $results;
}

这只会获取专门为此页面上传的图像,如果我重用了之前已经为不同页面/帖子上传的图像,则不会检索这些图像(因为它们附加到它们上传到的帖子,但没有任何帖子它们被重用)。有谁知道获取页面/帖子中使用的所有图像的方法?

4

2 回答 2

5

使用内置的 PHP Dom Parser 抓取位于您的内容中的所有图像。此代码未经测试,但应该让您朝着正确的方向开始:

<?php
while(have_posts()) : the_post();
    $dom = new DOMDocument();
    $dom->loadHTML(get_the_content());
    $images = $dom->getElementsByTagName('img');
    foreach($images as $img){
        $src = $img->getAttribute('src');
        printf('<img src="%s" />', $src);
    }
endwhile;
?>
于 2013-07-31T12:54:23.500 回答
1

我认为以下功能对于从帖子中获取图像很有用

function get_images_from_post( $id ) {
   $get_custom_post = get_post($id); 
   $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $get_custom_post->post_content, $matches);
   return $matches;
}
于 2013-07-31T12:49:20.953 回答