ildi-wp/loop.php
2018-07-19 20:26:13 -05:00

14 lines
206 B
PHP

<section>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title( '<h1>', '</h1>' );
the_content();
}
get_template_part('pagination');
}
?>
</section>