switched code to call content php for the blog list

This commit is contained in:
Jacob Haddon 2018-11-16 09:40:14 -05:00
parent 68c2f51c89
commit 906654f4e9

View File

@ -1,7 +1,7 @@
<?php <?php
get_header(); get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post(); if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content(); get_template_part( 'content', get_post_format() );
endwhile; endwhile;
else : else :
_e( 'Sorry, no posts matched your criteria.', 'textdomain' ); _e( 'Sorry, no posts matched your criteria.', 'textdomain' );