我在用Scribu的Posts 2 Posts 插件,用于将帖子连接到附加到相册类型的小图库。一切都很好,只是我不知道如何合并附件以显示在一起。
现在,我正在使用下面的代码将每个库一个接一个地显示出来。
$images = get_children( array(
\'post_parent\' => $post->ID,
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\',
\'numberposts\' => 999 ) );
if ( $images ) {
$total_images = count( $images );
$image = array_shift( $images );
$image_img_tag = wp_get_attachment_image( $image->ID, \'thumbnail\', $default_attr );
}
if ($images)
echo do_shortcode(\'[gallery size="small" columns="5"]\');
在运行此脚本之前,是否可以获取所有连接到相册的帖子附件并进行合并?