サポート » 使い方全般 » 記事中の画像一覧を表示したい

  • 解決済 heureux

    (@heureux)


    記事の中で使っている画像を全て抽出して、
    指定したサイズで別の場所に一覧で表示したいのですが、
    方法が分かりません。
    ご教示いただけると大変有り難いです。

2件の返信を表示中 - 1 - 2件目 (全2件中)
  • トピック投稿者 heureux

    (@heureux)

    現在ループの中で

    <?php
    		$images = get_children(array(
    			'post_parent' => $post->ID,
    			'post_type' => 'attachment',
    			'exclude' => get_post_thumbnail_id($post->ID),
    			'post_mime_type' => 'image'
    		));
    		foreach ( $images as $attachment_id => $attachment ) {
    			$att_image_link = wp_get_attachment_link($attachment_id, 'img_for_photo_thumb');
    	  		echo '<li>'.$att_image_link.'</li>';
    	 	}
    		?>

    と書いています

    トピック投稿者 heureux

    (@heureux)

    カスタムフィールドを利用する方法で解決しました。

2件の返信を表示中 - 1 - 2件目 (全2件中)
  • トピック「記事中の画像一覧を表示したい」には新たに返信することはできません。