How to display recent post without pagination
-
I am showing posts conditionally
for eg.$args = array( 'post_type'=> 'post', 'order' => 'DESC', ); if($sort_by == 'recent'){ $args['order'] = 'DESC'; $args['posts_per_page'] = 2; } $args['paged'] = get_query_var('paged');
When $sort_by == ‘recent’ than it display only 2 posts, but also display pagination,
pagination code is
` wp_pagenavi( array( ‘query’ => $query) );
wp_reset_postdata();`Please Help me!!!
I am stuck,Thanks in Advance
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to display recent post without pagination’ is closed to new replies.