a template start

This commit is contained in:
2018-07-18 08:03:46 -05:00
parent 0348bb3c42
commit 21062ca0a8
7 changed files with 110 additions and 18 deletions

13
loop.php Normal file
View File

@ -0,0 +1,13 @@
<section>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title( '<h1>', '</h1>' );
the_content();
}
get_template_part('pagination');
}
?>
</section>