Home / Admin / Dropdown field — Sort modern dropdown choices alphabetically
Duplicate Snippet

Embed Snippet on Your Site

Dropdown field — Sort modern dropdown choices alphabetically

Ralden Souza PRO
<10
Code Preview
php
<?php
function wpf_dev_modern_dropdown_search_results( $config, $forms ) { 
    $config['shouldSort'] = true;
    $config['shouldSortItems'] = false;
    $config['sortBy'] = 'label'; // Sort by label to achieve alphabetical sorting
    return $config;
}
add_filter( 'wpforms_field_select_choicesjs_config', 'wpf_dev_modern_dropdown_search_results', 10, 2 );

Comments

Add a Comment