<?php the_title(); ?>
<?php the_content(); ?>
<?php the_exerpt(); ?>
<?php the_category(', '); ?>
The (‘,’) parameter defines that if multiple categories are present it will be separated by a comma (‘,’) .
<?php echo get_avatar(get_the_author_meta('ID'),24); ?>
’24’ is the size of the avatar in pixels that is to display.
<?php the_author_posts_link(); ?>
<?php if(has_post_thumbnail()){ } ?>
<?php the_post_thumbnail('medium'); ?>
<?php the_time('F j, Y'); //the_date(); ?>
Th following will display the date only for the first post of the day.
<?php the_date(); ?>