Home › Forums › Support › Published and Updated date at the bottom of the content This topic has 3 replies, 2 voices, and was last updated 2 years, 7 months ago by Leo. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts October 6, 2020 at 3:51 am #1474355 Chitika I would like to display published and updated date at the bottom of the content. I should be able to customize the message to display them. If both are equal, they should not be displayed, otherwise show them. October 6, 2020 at 8:26 am #1474842 LeoStaff Customer Support Hi there, Are you referring to single posts here? If so activate it in the customizer: https://docs.generatepress.com/article/blog-content-layout/#single And move it to the bottom with this PHP snippet: add_filter( 'generate_footer_entry_meta_items ', function( $items ) { if ( is_single() ) { $items = array( 'date', ); } return $items; } ); Adding PHP: https://docs.generatepress.com/article/adding-php/ Reference: https://docs.generatepress.com/article/generate_footer_entry_meta_items/ Then use this CSS solution: https://docs.generatepress.com/article/show-the-updated-post-date/ Adding CSS: https://docs.generatepress.com/article/adding-css/ October 10, 2020 at 11:06 pm #1482822 Chitika I would like a similar message – This post was published on <published date> and has been modified on <updated date>. How can I do this. I’m not sure whether the above code does it in single line. October 11, 2020 at 7:57 am #1483409 LeoStaff Customer Support Can you apply the solution above first and we can tweak it from there? Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In