Archived topic
Last Updated instead of Published Date on Posts
3 replies · Started by Rika on September 13, 2020
Hi Support,
As a non-techie can you please provide me with the CSS code for the following:
I would like to replace the published date with a last updated date. It should look like this:
Last Updated on "date" by "author"
The published date should be removed.
The "last updated on" should be in bold.
Thanks very much in advance.
PS: What are your take on changing the publish date to last updated? Is it a good or bad thing?
Thanks
Hi there,
This should help:
.posted-on .updated {
display: inline-block;
}
.posted-on .updated + .entry-date {
display: none;
}
.posted-on .updated:before {
content: "Last Updated on";
font-weight: bold;
}
Definitely not a bad idea - people like to know how current the content they're reading is :)
Thank you Tom:)
Great support!
Glad I could help! :)