Hi, I just started with "Sentence" and like it a lot. But I can't seem to adjust my old blog posts. I need to include my name as author, and also the full date, with year to each post? Thank you
How to add the author's name and date (with year) to a blog post
2 posts from 2 voices-
Posted 1 year ago #
-
In includes/format-standard.php replace:
<span class='date-day'><?php the_time('d') ?></span> <span class='date-month'><?php the_time('M') ?></span>with:
<span class='date-day'><?php the_time('d') ?></span> <span class='date-month'><?php the_time('M') ?></span> <span class='date-year'><?php the_time('Y') ?></span>and add following code to the meta data (or the tags under the content):
<p>This post was written by <?php the_author(); ?></p>Obviously you can change the text :)
Posted 1 year ago #
Reply
You must log in to post.














