Make Jetpack Slideshow Block Images Clickable to View Full Size

Add this code to your child themes functions file to make your Jetpack slideshow block images clickable so you can view the full size of each slide.

add_action('wp_footer', 'inline_slideshow_script', 20);
function inline_slideshow_script() {
    ?>
    <script>
    jQuery(document).ready(function ($) {
        $(".wp-block-jetpack-slideshow_image").each(function () {
            var imageSrc = $(this).attr("src");
            $(this)
                .wrap('<a href="' + imageSrc + '" target="_blank"></a>');
        });
    });
    </script>
    <?php
}
Sharing Is Caring:

Kaka MEO is a skilled blogger and content writer specializing in making money and education topics. He crafts engaging content that informs and empowers readers to achieve financial and educational success.

Leave a Comment