2018-11-16 09:41:06 -05:00
|
|
|
<?php
|
2024-02-18 15:05:34 -05:00
|
|
|
// MFWPT - content.php
|
2018-11-16 09:41:06 -05:00
|
|
|
|
|
|
|
?>
|
|
|
|
|
2024-02-18 11:35:39 -05:00
|
|
|
<article id="post-<?php the_ID(); ?>" >
|
2018-11-18 11:11:51 -05:00
|
|
|
|
2024-02-18 11:35:39 -05:00
|
|
|
<section <?php post_class(); ?>>
|
|
|
|
<h2 class="blog-post-title"><a href="<?php the_permalink(); ?> "><?php the_title(); ?></a></h2>
|
|
|
|
<p class="blog-post-meta"><?php the_date(); ?> by <?php the_author_link(); ?></p>
|
|
|
|
<?php the_content(); ?>
|
|
|
|
</section><!-- /.blog-post -->
|
|
|
|
|
|
|
|
</article>
|