jacodelucia
5/18/2014 - 9:40 AM

WP - Loop

WP - Loop

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
	<?php the_title(); ?>
	<?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?>
	<?php the_content(); ?>
	<?php the_category(', '); ?>
<?php endwhile; endif; ?>