Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created January 28, 2015 07:53
Show Gist options
  • Save rianrietveld/2552770627c53ddb6ebf to your computer and use it in GitHub Desktop.
Save rianrietveld/2552770627c53ddb6ebf to your computer and use it in GitHub Desktop.
ACF display date in custom format
<?php
$meta_value = get_post_meta( get_the_ID() , 'acf_date', true );
$date = date_i18n( 'd M Y' , strtotime( $meta_value ) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment