Exclude the Current Post from Elements
// Exclude Current Post from Any Total Grid/Carousel Module add_filter( 'vcex_query_args', function( $args, $atts ) { if ( wp_doing_ajax() ) { $current_id = url_to_postid( wp_get_referer() ); } else { $current_id = get_the_ID(); } $args['post__not_in'] = array( $current_id ); return $args;…