Support

Account

Home Forums ACF PRO Sort Checkbox Alphabetically Reply To: Sort Checkbox Alphabetically

  • Hey,
    There is a php function called sort() which is used to sort an array of values.

    $cars = array("Volvo", "BMW", "Toyota");
    sort($cars);

    Might be of some use to you.