7
Apr.
2009

投稿画像を取得するには

記事に投稿されている画像を取得するには、添付ファイルを取得するget_children()でimageを指定する。画像のURLのほか、タイトルやサイズなどのメタ情報も取得することもできる。

$attachments = get_children(array('post_parent' => $id, 'post_type' => 'attachment', 'post_mime_type' => 'image'));
if (is_array($attachments) ){
	foreach($attachments as $attachment){
		$image = wp_get_attachment_url(intval($attachment->ID));
		echo '<img src="' .$image .'" alt="' .$post->post_title .'" />';
	}
}

コメントをどうぞ

お名前(必須):
メールアドレス (公開されません):
ウェブサイト:
コメント:

Recently Written

Categories

About

WordPressって何?から始まった悪戦苦闘の自分メモを公開...»もっと読む

Feedを購読

Search

Archives

My Blogs