我正在运行这个查询,它会将附加到特定帖子的所有图像拉出来,并将它们输出到幻灯片中(参见这里的示例-http://powers.deanelliott.me/property/1428-elm-street/)
有没有一种方法可以直接将链接输出到这个查询中(以便较大的图像显示在灯箱中),因为添加链接标记似乎不起作用
<?php $args = array(\'numberposts\' => -1, \'orderby\' => \'menu_order\', \'order\' => \'ASC\', \'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'post_parent\' => $post->ID); ?>
<?php if ( $photos = get_posts($args) ) : ?>
<?php foreach ( $photos as $photo ) : ?>
<?php echo wp_get_attachment_image($photo->ID,\'thumbnail\'); ?>
<?php endforeach; ?>
<?php endif; ?>