15 lines
361 B
PHP
15 lines
361 B
PHP
<?php
|
|
// MFWPT - content.php
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" >
|
|
|
|
<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>
|