Created
June 3, 2014 13:16
-
-
Save richgcook/9c5b8011e62f4e3a5d44 to your computer and use it in GitHub Desktop.
Calculate number of days left on an event (WP/ACF)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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