Ordering / grouping posts by datepicker ACF
Here you were trying to use echo as a method of DateTime object. $month = $date->echo date_i18n(‘F’); It should be: $month = date_i18n(‘F’, strtotime( $acf_date ) ); Where $acf_date is the time string not the DateTime object.