Hi @leso,
Neve theme doesn’t offer such customization out of the box so something like that could only be achieved using a child theme and modifying the template of either single blog page of archive page depending on where you want that date to appear.
Of course, you can also change the creation date of the post manually as WordPress allows that.
I hope that helps!
Thread Starter
leso
(@leso)
thanks for the reply, I wanted something like this but wanted to add “last updated” before the date if possible otherwise there are plugins that can help with that though they place the last updated in an inconvenient position, that’s why I sought for help here
TIA
Hi @leso,
Yes, that solution would work in your case. You can also add the text with additional CSS like this after unhiding the “updated” element:
.nv-meta-list .posted-on .updated:before {
content: "Last updated: ";
}
I hope that helps!