Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created January 31, 2015 08:26
Show Gist options
  • Save rianrietveld/04d4d2600b5f7686cb45 to your computer and use it in GitHub Desktop.
Save rianrietveld/04d4d2600b5f7686cb45 to your computer and use it in GitHub Desktop.
Format ACF date for display
<?php
function gameaccess_acf_date( $id, $field ) {
$meta_value = get_post_meta( $id , $field, true );
echo date_i18n( 'F d, Y' , strtotime( $meta_value ) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment