@dcooney We have restored the querystring value. Here’s the code for the repeater template
<?php
$post_id = get_the_id();
$post_type = get_post_type( $post_id );
$title = get_the_title();
$thumb_id = get_post_thumbnail_id();
?>
<article id="<?php echo $post_type . '-' . $post_id; ?>" <?php post_class( 'entry-card' ); ?>>
<header class="entry-header">
<?php
echo '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark" aria-label="Read more about ' . $title . '">';
if ( has_post_thumbnail() ) {
$featured_img_normal = wp_get_attachment_image_src( $thumb_id, 'featured-image-thumbnail' );
$featured_img_retina = wp_get_attachment_image_src( $thumb_id, 'featured-image-thumbnail-retina' );
$retina_width = get_image_width( 'featured-image-thumbnail-retina' );
$retina_height = get_image_height( 'featured-image-thumbnail-retina' );
$srcset = ( ( $retina_width === $featured_img_retina[1] ) && ( $retina_height === $featured_img_retina[2] ) ) ? ' srcset="' . $featured_img_retina[0] . ' 2x"' : '' ;
echo '<img src="' . $featured_img_normal[0] . '" alt="" width="' . $featured_img_normal[1] . '" height="' . $featured_img_normal[2] . '"' . $srcset . '>';
}
echo '<h2 class="entry-title">' . $title . '</h2>';
echo '</a>';
?>
</header><!-- .entry-header -->
<footer class="entry-footer">
<?php gmktg_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->