Custom Taxonomy Pagination
-
<?php $args = array( 'post_type' => 'news_events', 'posts_per_page' => 4); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); ?>
and
<ul class="news-events-pagination"> <li class="older"><?php next_posts_link('Older')?> <li class="newer"><?php previous_posts_link('Newer')?>
This is only i have,
How to set a pagination on this taxonomy ?.
-Thankyou-
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Custom Taxonomy Pagination’ is closed to new replies.