All Links in a Query Block get .current applied

As per this quick video, I have a query to output all the Posts in the following query.

<?php 
// The Arguments
$args = array (
  'post_type' => 
  array (
    0 => 'video',
  ),
  'ignore_sticky_posts' => true,
  'tax_query' => 
  array (
    0 => 
    array (
      'taxonomy' => 'module',
      'terms' => 
      array (
        0 => 39,
      ),
      'include_children' => true,
      'removeNoTerms' => false,
    ),
  ),
  'orderby' => 'menu_order',
  'order' => 'ASC',
);
// The Query
$the_query = new WP_Query( $args );

But all the links to the posts are getting .current applied and not just the current post

https://www.awesomescreenshot.com/video/20250384?key=c33bf6439af85d2cc38b4925e595eede

  • WordPress version: 6.3
  • Cwicly Plugin version: 1.2.9.9.2

Hi @grantambrose,

Thank you for bringing this to our attention!

I can confirm that .current gets applied to all links in a Query block.
We’ll be sure to have a fix for this as soon as possible.

Apologies for the inconvenience.

Hi,

We have fixed this issue in 1.3.0.2.

Please let us know if you are still experiencing issues once updated.

Best regards,
Johnny