Support

Account

Home Forums Backend Issues (wp-admin) get custom post by specified date Reply To: get custom post by specified date

  • What version of ACF are you using?

    in ACF4, you set the format how the date is stored when you create the field. The value in your meta query needs to match this format.

    In ACF5 dates are always stored in the format ‘YYYYMMDD’ and the value for your meta query needs to match this format. Something like this I think: $saturday = date('Ymd', $nextsat);