Support

Account

Home Forums Backend Issues (wp-admin) "Choices" automatically appear in alphabetical order in the post creation page Reply To: "Choices" automatically appear in alphabetical order in the post creation page

  • see https://www.advancedcustomfields.com/resources/acfload_field/

    
    add_filter('acf/load_field/name=field-name', 'short_choices');
    function sort_choices($field) {
      asort($field['choices']);
      return $field;
    }