Support

Account

Home Forums ACF PRO Values cannot be saved no matter what I do Reply To: Values cannot be saved no matter what I do

  • I used your function, @hube2

    function acf_wp_kses_post($data) {
      if (!is_array($data)) {
        return wp_kses_post($data);
      }
      $return = array();
      foreach ($data as $index => $value) {
        $return[$index] = acf_wp_kses_post($value);
      }
      return $return;
    }
    

    and replaced it in the filter above. seems to work!

    you guys are amazing, thank you 🙂