Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter INchargeWebsite

    (@inchargewebsite)

    After reviewing the code more, it appears the problem is coming from this block of code

    <?php get_header(); ?>
    <div class="container-fluid">
    	<?php
    	$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    	$args = array(
    		'post_type' => 'post',
    		'paged' => $paged
    	);
    
    	query_posts($args);
    
    	get_template_part('index', 'masonry');
    	get_footer();?>
    Thread Starter INchargeWebsite

    (@inchargewebsite)

    Thanks. I’ll look that over.

    It appears that the problem is coming from this block of code

    <?php get_header(); ?>
    <div class="container-fluid">
    	<?php
    	$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    	$args = array(
    		'post_type' => 'post',
    		'paged' => $paged
    	);
    
    	query_posts($args);
    
    	get_template_part('index', 'masonry');
    	get_footer();?>
Viewing 2 replies - 1 through 2 (of 2 total)