Site logo

Archived topic

Show "Updated Post Date" in Header Element

3 replies · Started by Tommy on September 25, 2018

Viewing posts 1–4 of 4

Hi there,

we can do this by creating a shortcode:

function post_modified_date(){
 return get_the_modified_date();
}
add_shortcode( 'modified_date', 'post_modified_date' );

https://docs.generatepress.com/article/adding-php/

Then you just need to add the [modified_date] to the Header element content

Awesome - that works! Thank you!

Glad i could help :)

This archived topic is closed to new replies.