要获取帖子的附加(即子)图像,请尝试使用get_children()
. e、 g.:
<?php
$child_image_args = array(
\'post_mime_type\' => \'image\',
\'post_parent\' => $postID,
\'post_type\' => \'attachment\'
);
$child_images = get_children( $child_image_args );
?>
返回子图像的关联数组。然后,只需在它们之间循环,例如使用
wp_get_attachment_image()
, 输出。e、 g.:
<div id="nivoslider">
<?php
foreach ( $child_images as $child_image ) {
wp_get_attachment_image( $child_image->ID );
}
?>
</div>
Nivo滑块集成在WPSE的范围之外,但是如果您想手动推进,请更改
manualAdvance
设置为
manual
在您的
#nivoslider
jQuery实例化。