Show post updated date instead of published
get_the_modified_date should do what you’re looking for. I am guessing that perhaps you are struggling a bit with the sprintf syntax. $date = sprintf( ‘<span>’ . __( ‘Posted’, ‘theme’ ) . ‘ <a href=”%3$s”><time class=”entry-date” datetime=”%1$s”>%2$s</time></a></span>’, esc_attr( get_the_date( ‘c’ ) ), esc_html( time_ago() ), esc_html( get_day_link( get_the_date(‘Y’), get_the_date(‘m’), get_the_date(‘d’) ) ) ); Let’s break it … Read more