如果你愿意get_post_gallery_images
要提供完整大小的图像,可以使用以下选项:
// Use full size gallery images for the next gallery shortcode:
add_filter( \'shortcode_atts_gallery\', \'wpse_141896_shortcode_atts_gallery\' );
// Your code:
$gallery = get_post_gallery_images( $post );
foreach ($gallery as $img) { ?>
<li><img src="<?php echo $img; ?>" /></li>
<?php }
在哪里
/**
* Set the size attribute to \'full\' in the next gallery shortcode.
*/
function wpse_141896_shortcode_atts_gallery( $out )
{
remove_filter( current_filter(), __FUNCTION__ );
$out[\'size\'] = \'full\';
return $out;
}
在本例中,我们在使用一次过滤器后将其删除,因此不会影响其他库。
这样,您就不必包括size="full"
库中的属性短代码,