-
-
Save dgoze/128394a9af1b5ffdc8f1bede55c682bd to your computer and use it in GitHub Desktop.
Calculate number of days left on an event (WP/ACF)
This file contains hidden or 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