Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 19, 2016 14:05
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 billerickson/2901fb639f315af35145aa9d036eaf4b to your computer and use it in GitHub Desktop.
Save billerickson/2901fb639f315af35145aa9d036eaf4b to your computer and use it in GitHub Desktop.
<?php
// Assuming 'be_date' is the name of your ACF date field
// For date formatting options, see: https://codex.wordpress.org/Formatting_Date_and_Time
$date = get_post_meta( get_the_ID(), 'be_date', true );
echo date( 'F j, Y', $date );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment