mfwpt/content.php

20 lines
525 B
PHP
Raw Normal View History

2018-11-16 09:41:06 -05:00
<?php
// content.PHP
?>
<div class="blog-post">
2018-11-18 11:06:58 -05:00
<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>
2018-11-18 11:11:51 -05:00
<?php the_content(); ?>
2018-11-16 09:41:06 -05:00
</div><!-- /.blog-post -->
2018-11-18 11:11:51 -05:00
<div class="blog-comments">
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
</div> <!-- blog comments -->