Home › Forums › Pro Support › "Last Updated" Date › Reply To: "Last Updated" Date
December 29, 2018 at 7:09 pm
#6980
Participant
So with a bit of help from this: https://docs.generatepress.com/article/show-the-updated-post-date/
I used the below code:
.wp-show-posts-updated {
display: inline-block;
}
.wp-show-posts-updated + .wp-show-posts-entry-date {
display: none;
}
.wp-show-posts-entry-date.published:before {
content: "Published: ";
}
.wp-show-posts-entry-date.published:after{
content: " & ";
}
.wp-show-posts-updated:before {
content: "Last Updated: ";
}
And got – https://i.imgur.com/voZ2W6K.png
Wohoo! Anything else I should be aware of? 🙂
-
This reply was modified 2 years ago by
Jake.