0

<?php the_content(); ?>私はhtmlタグを生成する関数を持っています:

<p>
 <a href="http://127.0.0.1/www/www1/wordpress/wordpressEng/wp-content/uploads/2012/09/page1-img2.jpg">
  <img class="alignnone size-full wp-image-82" title="page1-img2" src="http://127.0.0.1/www/www1/wordpress/wordpressEng/wp-content/uploads/2012/09/page1-img2.jpg" alt="" width="219" height="124" />
 </a>
</p> 

を抽出しようとして<img.**./>いますが、うまくいきません。

次のようなもの:

//$String =
<p>
 <a href="http://127.0.0.1/www/www1/wordpress/wordpressEng/wp-content/uploads/2012/09/page1-img2.jpg">
  <img class="alignnone size-full wp-image-82" title="page1-img2" src="http://127.0.0.1/www/www1/wordpress/wordpressEng/wp-content/uploads/2012/09/page1-img2.jpg" alt="" width="219" height="124" />
 </a>
</p> 

$String = "the_content()";

$pattern = '/^<img/.*/$/>/';//Take string wich start with "<img" and all between and End in "/>"
preg_match($pattern, substr($subject,3), $StrImg, PREG_OFFSET_CAPTURE);
echo $StrImg[0];
output
//<img class="alignnone size-full wp-image-82" title="page1-img2" src="http://127.0.0.1/www/www1/wordpress/wordpressEng/wp-content/uploads/2012/09/page1-img2.jpg" alt="" width="219" height="124" />

$StrImg完全な img タグを変数に設定するにはどうすればよいですか?

どうもありがとう。

4

1 に答える 1

3

したがって、投稿するすべての画像の src 属性を取得する必要があります。もっと簡単な方法があります:

$images = get_posts(array(
            'post_parent' => $post->ID,
            'post_type' => 'attachment',
            'numberposts' => -1,
            'post_mime_type' => 'image'
        ))

        foreach( $images as $image ) {
            $image_url[] = wp_get_attachment_image_src( $image->ID, full );

        }
于 2012-09-30T13:16:13.163 に答える