I have this SQL query that extracts the year and month of " post_date " posts
$query = "SELECT YEAR(post_date) as
year, MONTH(post_date) as
month`
FROM $wpdb->posts
WHERE post_type
= '$t'
AND post_status
= 'publish'
GROUP BY year
, month
ORDER BY year
DESC, month
ASC";`
but I wonder , how I can do the same query but instead of " post_date " would be a date field created by the custom fields plugin.
Thank you