Skip to content

Instantly share code, notes, and snippets.

@nirbhay18
Last active May 19, 2020 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirbhay18/2d717ede35af6d7fde19bfca9c55a4ee to your computer and use it in GitHub Desktop.
Save nirbhay18/2d717ede35af6d7fde19bfca9c55a4ee to your computer and use it in GitHub Desktop.
Customize date format for Post Timeline
function pp_timeline_custom_date_format() {
$date = get_post_meta( get_the_ID(), 'mec_start_date', true );
$timestamp = strtotime( $date );
$new_date = date( 'F j', $timestamp );
return $new_date;
}
add_filter( 'pp_timeline_date_format','pp_timeline_custom_date_format' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment