您可以使用INSER GALLERY按钮在每页的媒体中上载图像。您可以上载多个图像&;画廊也是。
您可以使用下面的代码获得每个页面的所有图像。
$images = get_posts(
array(
\'numberposts\' => -1,
\'post_parent\' => $post->ID,
\'post_status\' => \'inherit\',
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'order\' => \'ASC\',
\'orderby\' => \'menu_order\'
)
);