<div class="main-col">
<div class="review-wrapp">
<?php if ( have_posts() ) : ?>
<?php
// Start the loop.
while ( have_posts() ) : the_post();
?>
<div class="review-item">
add_action( 'pre_get_posts', 'tax_filter' );
function tax_filter( $query ){
if( ! is_admin() && $query->is_main_query() ){
if( $query->is_tax( 'object' ) ){
$query->set( 'posts_per_page', '3' );
}
}
}