Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from richgcook/template.php
Created April 29, 2016 22:40
Show Gist options
  • Save dgoze/128394a9af1b5ffdc8f1bede55c682bd to your computer and use it in GitHub Desktop.
Save dgoze/128394a9af1b5ffdc8f1bede55c682bd 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