Skip to content

Instantly share code, notes, and snippets.

@richgcook
Created June 3, 2014 13:16
Show Gist options
  • Save richgcook/9c5b8011e62f4e3a5d44 to your computer and use it in GitHub Desktop.
Save richgcook/9c5b8011e62f4e3a5d44 to your computer and use it in GitHub Desktop.
Calculate number of days left on an event (WP/ACF)
<?php
$today = date('Ymd');
$today = strtotime($today);
$finish = get_field('end_date');
$finish = strtotime($finish);
$diff = $finish - $today;
$daysleft=floor($diff/(60*60*24));
echo "$daysleft days left";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment