Pictures in the slider are not included in my website’s sitemap
-
Pictures in the slider are not included in my website’s sitemap. Do you have a solution for this?
Theme: Gridzone
The slider php code is:<?php if ( has_post_format( ‘gallery’ ) ): // Gallery ?>
<div class=”post-format”>
<?php $images = gridzone_post_images(); if ( !empty($images) ): ?>
<div class=”slick-image-slide-wrapper”>
<div class=”slick-image-slide-nav”></div>
<div class=”slick-image-slide” id=”slide-<?php the_ID(); ?>”>
<?php foreach ( $images as $image ): ?>
<div>
<?php $imageid = wp_get_attachment_image_src($image->ID,’large’); ?><?php $imageidb = wp_get_attachment_image_src($image->ID,’full’); ?>
” height=”<?php echo esc_attr( $imageid[2] ); ?>” src=”<?php echo esc_attr( $imageid[0] ); ?>” alt=”<?php echo esc_attr( $image->post_title ); ?>” loading=”lazy”>
<div class=”image-caption”><?php echo $image->post_title; ?><?php echo ‘ <span>?ndir</span>’ ?></div>
</div>
<?php endforeach; ?>
</div>
<div class=”slick-image-slide-dots”></div>
</div>
<?php endif; ?>
</div><?php endif; ?>
The page I need help with: [log in to see the link]
- The topic ‘Pictures in the slider are not included in my website’s sitemap’ is closed to new replies.