ildi-wp/loop.php

14 lines
206 B
PHP
Raw Normal View History

2018-07-18 08:03:46 -05:00
<section>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_title( '<h1>', '</h1>' );
the_content();
}
get_template_part('pagination');
}
?>
</section>