I couldn’t show gallery images on archive page:
<?php
if ( $gallery = get_post_galleries_images( get_the_ID(), true ) ) :
// Loop through all the image and output them one by one.
foreach ( $gallery['src'] AS $src ) {
?>
<img src="<?php echo $src; ?>" class="my-custom-class" alt="Gallery image" />
<?php
}
endif;
?>
it doesn’t show anything."if" returns false.
my post has the below block.isn’t the gallery? what is the problem?