我想在Prettypoto类的帖子中显示所有添加为gallery的图片。
我正在使用此代码。
<?php
/* The loop */
while ( have_posts() ) : the_post();
if ( get_post_gallery() ) :
$gallery = get_post_gallery( get_the_ID(), false );
/* Loop through all the image and output them one by one */
foreach( $gallery[\'src\'] AS $src )
{
?>
<a href="<?php echo $src; ?>" rel="prettyPhoto[pp_gal]"><img src="<?php echo $src; ?>" alt="Gallery image" /></a>
<?php
}
endif;
endwhile;
?>
它正在显示照片,但只显示缩略图为src。我想显示完整图像。
如何显示完整图像而不是缩略图?