How to create pagination not to have /page/2 /page/3 in tag/category/home
-
I use Voice theme and have 1 problem like that. Ex: in homepage. I find 1 file:
<div class="vce-link-pages"> <?php global $page, $numpages; ?> <span class="vce-paginated-num"><?php printf(__vce( 'page_of' ), $page, $numpages); ?></span> <?php if($page == 1) : ?> <?php echo _wp_link_page( $numpages ).__vce( 'prev_page' ).'</a>'; ?> <?php endif; ?> <?php wp_link_pages(array('before' => '', 'after' => '', 'next_or_number' => 'next', 'nextpagelink' => __vce( 'next_page' ), 'previouspagelink' => __vce( 'prev_page' ))); ?> <?php if($page == $numpages) : ?> <?php echo _wp_link_page( 1 ).__vce( 'next_page' ).'</a>'; ?> <?php endif; ?> </div>
How can I make pangination load more not to have /page/2 /page/3? Help me, please!
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to create pagination not to have /page/2 /page/3 in tag/category/home’ is closed to new replies.