• Resolved Geycer

    (@geycer)


    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(); ?>
    
    • This topic was modified 4 years, 8 months ago by Geycer.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 16 through 17 (of 17 total)
  • Thread Starter Geycer

    (@geycer)

    Stayed friend, thank you very much

    Super, glad to hear that helped. Sorry, I didn’t get to that rule sooner. All the best with your site ?? If questions arise in the future, please, let us know.

    Cheers for now.

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘pagination does not work’ is closed to new replies.