<pre>
<?php
$date = "2021-12-25";
$today = date("Y-m-d");
$today_time = strtotime($today);
$compare_date = strtotime($date);
if($compare_date > $today_time){
echo 'Future date';
}else{
echo 'Past Date';
}
?>
</pre>
Month: November 2021
How to get taxonomy acf data in WordPress
<pre>
$terms = get_the_terms( get_the_ID(), 'custom_taxonomy' );
<?php foreach( $terms as $term ){
$image = get_field('image', $term->taxonomy . '_' . $term->term_id);
} ?>
</pre>