14 lines
206 B
PHP
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>
|