Home › Forums › Support › Show post time This topic has 5 replies, 3 voices, and was last updated 3 years, 10 months ago by Tom. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts January 31, 2020 at 12:42 pm #1150808 Marc-Antoine Hi I’m using generatepress with Broadcast and I’m looking to show post time (ex : example 5:00pm) Currently, it only shows post date with header template tag {{post_date}} Do you have any idea ? Thanks π January 31, 2020 at 12:53 pm #1150817 g33kgirl Maybe this will help? https://generatepress.com/forums/topic/last-updated-date-displaying-as-yesterdays-date-for-all-posts/#post-1149891 January 31, 2020 at 1:55 pm #1150852 Marc-Antoine Unfortunately it doesn’t works. As the other user, the result is it now displays βLast Updated:β but with no date. I do not have any other custom functions January 31, 2020 at 5:10 pm #1150928 TomLead Developer Lead Developer Hi there, This might help: https://generatepress.com/forums/topic/add-time-to-post-meta/#post-1133548 Let me know π February 1, 2020 at 12:23 am #1151092 Marc-Antoine Thanks it works. Do you know if there is a template tag to show informations entered in author profile (like biography, twitter account…). It appears on AMP version but not in the header element thanks π February 1, 2020 at 10:00 am #1151472 TomLead Developer Lead Developer Hi there, There isn’t, but you can build a shortcode. add_shortcode( 'user_meta', function( $atts ) { $atts = shortcode_atts( array( 'field' => '', ), $atts, 'user_meta' ); if ( $atts['field'] ) { return get_the_author_meta( $atts['field'] ); } } ); Available fields are here: https://developer.wordpress.org/reference/functions/get_the_author_meta/ Then you should be able to do this: [user_meta field="user_firstname"] Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In