获取附加到特定页面的图像

时间:2013-06-18 作者:Elmo

是否有办法获取附加到页面x的所有图像的URL和标题?

1 个回复
最合适的回答,由SO网友:Paflow 整理而成

$is = get_children("post_parent=$id&post_type=attachment&post_mime_type=image");
foreach($is as $i) {
  $url = wp_get_attachment_image_src($i->ID, \'full\');
  $caption = $i->post_title);
}
$id是您的帖子的id。看见http://codex.wordpress.org/Function_Reference/get_children

结束