pagination does not work
-
I have created a child theme, I have created a page but the pagination does not work, although it shows me well but it does not advance, it continues at 1, although in the menu it shows me page2, page3, etc.
<?php /** * Template Name: azhar * */ get_header(); ?> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : ?> <?php vantage_content_nav( 'nav-above' ); ?> <?php /* Start the Loop */ ?> <?php query_posts(array('orderby' => 'rand', 'showposts' => 7, 'cat'=>-629)); while (have_posts ()): the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> <?php get_template_part( 'loops/loop', siteorigin_setting( 'layout_search' ) ); ?> </div><!-- #content .site-content --> </div><!-- #primary .content-area --> <?php get_sidebar(); ?> <?php get_footer(); ?>
The page I need help with: [log in to see the link]
- The topic ‘pagination does not work’ is closed to new replies.