// Kinderyoga2Go Live Loop Filter add_filter( 'elementor/query/kinderyoga2go_live', function( $query ) { $query->set( 'post_type', 'product' ); $query->set( 'tax_query', array( array( 'taxonomy' => 'product_tag', 'field' => 'term_id', 'terms' => array( 380 ), 'operator' => 'IN', ), ) ); $query->set( 'post__not_in', array( 20441, 19950, 18312 ) ); $query->set( 'posts_per_page', 6 ); } );