Solved here is the code,
<?php
$temp = new WP_Query(array('cat'=>7, 'posts_per_page'=>3, 'paged' => get_query_var('paged')));
if ($temp->have_posts()) :
while ($temp->have_posts()) : $temp->the_post();?>
<div class="cl-ix callout">
<h5><a>"><?php the_title(); ?></a></h5>
</div>
<?php endwhile;
endif;
wp_pagenavi(array( 'query' => $temp ));
wp_reset_postdata();
?>