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