mfwpt/content.php

13 lines
254 B
PHP
Raw Normal View History

2018-11-16 09:41:06 -05:00
<?php
// content.PHP
?>
<div class="blog-post">
<h2 class="blog-post-title"><?php the_title(); ?></h2>
<p class="blog-post-meta"><?php the_date(); ?> by <a href="#"><?php the_author(); ?></a></p>
<?php the_content(); ?>
</div><!-- /.blog-post -->