Archived topic
Add text BEFORE updated date beneath post title
2 replies · Started by Remco on January 17, 2021
Viewing posts 1–3 of 3
Hi all,
Currently my text looks the following (example):
January 17 2021 by Marc
I would like to change this to
Last updated on January 17 2021 by Marc
Any way I can do this? I found a resource, but it only allowed me to add some text AFTER the date.
Thank you.
Hi there,
you can use this PHP Snippet:
add_filter( 'generate_post_date_output','tu_add_to_post_date' );
function tu_add_to_post_date( $output ) {
return '<span class="date-label">Last updated on </span>' . $output;
}
How to add PHP: https://docs.generatepress.com/article/adding-php/
Hi David,
Thanks, but this is still adding the text AFTER the date instead of before it.
This archived topic is closed to new replies.