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