'1.png', '2' => '2.png', '3' => '3.png', '4' => '4.png','5' => '5.png', '6' => '6.png', '7' => '1.png', '8' => '2.png' ); /* Start the Loop */ $i = 1; while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ set_query_var( 'default_image', $default_image ); set_query_var( 'i', $i ); get_template_part( 'template-parts/content', get_post_format() ); $i++; endwhile; the_posts_pagination(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?>