Skip to content

Instantly share code, notes, and snippets.

@brycejacobson
Created September 30, 2013 20:48
Show Gist options
  • Save brycejacobson/6770042 to your computer and use it in GitHub Desktop.
Save brycejacobson/6770042 to your computer and use it in GitHub Desktop.
Get date from a WordPress Custom Field and alter its format.
<?php
//* Get date from a WordPress Custom Field and alter its format.
$display_date = date('F d, Y', strtotime(get_post_meta($post->ID, "event_start_date", true)));
echo $display_date;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment