9 lines
231 B
PHP
9 lines
231 B
PHP
|
<section class="entry-content">
|
||
|
<?php
|
||
|
if ( has_post_thumbnail() ) {
|
||
|
the_post_thumbnail();
|
||
|
}
|
||
|
?>
|
||
|
<?php the_content(); ?>
|
||
|
<div class="entry-links"><?php wp_link_pages(); ?></div>
|
||
|
</section>
|