• Resolved austinneely

    (@austinneely)


    Hello, I am having issues here with trying to make my infinite scroll work properly on my homepage. When changing my static homepage to the “blog” which is from my media template the first page keeps loading over and over.
    Can anyone help? Below is my code.

    <?php 
    
    /*
            Template Name: Media
     */ 
    
    get_header(); 
    
    $paged = ( get_query_var('paged') ? get_query_var('paged') : 1 );
    ?> 
    
    <div class="main cf"> 
    
                    <?php
                            query_posts(array(
                                    'post_type'      => 'attachment',
                                    'post_status'    => 'any',
                                    'posts_per_page' => 25,
                                    'paged'          => $paged,
                            )); 
    
                            get_template_part('loop', 'media'); 
    
                            wp_reset_query();
                    ?>
            </div><!-- /.main --> 
    
    <?php get_footer(); ?>

    https://www.wineandorangejuice.com

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘HELP! Infinite Scroll – WP Query Issue – Static Homepage’ is closed to new replies.