Archived topic
need 'dated date' to show instead of published date
4 replies · Started by Christine on June 7, 2022
Hi,
I have tried to have the updated date show however it currently only shows in the google search results and not on the post itself.
I would like only the updated date to show.
I currently have this as custom css
.posted-on .updated {
display: inline-block;
margin-right: 1em;
}
/*Add date prefixes */
.posted-on .updated:before {
content: 'Updated: ';
}
.posted-on .entry-date:before {
content: 'Published: ';
}
How do I make it so I only have the updated date listed?
THanks
Hi there,
can you share a link to your site where i can see the problem date ?
https://www.travellerswithtime.com/destinations/
I updated this page yesterday so the date should be yesterdays date, not the date i set up the page 2018. It also seems to only be showing the original date in search results now too. I've been fiddling..
Thanks David
Hi Christine,
Your post meta is added to the page hero, so try this CSS instead:
.page-hero .hero-meta time.updated {
display: block;
}
.page-hero .hero-meta time.updated:before {
content: "Updated on: ";
}
Hi Ying, thank you, that's perfect for the website.
How do i make the updated date show in the SERPS? It did that until yesterday when i must have removed that css by accident...