Adding Author to the Posts
Shame on me but after changing template, this new one didn’t prove me the author part after the posts so there’s no way to know who’s the author (since this blog has 3 authors total). After some templates codes comparisons in “single.php”.
I found my template missing the following compare to the one that has author in it.
<?php the_author() ?>
Then in my own template I found
<div><small class=”date”><?php the_time(‘F j, Y – g:i a’) ?>
This seems like the date format so I just took a bold step and add in <?php the_author() ?> right in. Like this:
<div><small class=”date”> <?php the_author() ?> <?php the_time(‘F j, Y – g:i a’) ?>
Hoollla! It works
I feel smart haha. I did the same thing for index.php also.
