WP Chosen implements the Chosen jQuery Plugin for WordPress.
Chosen makes long, unwieldy select boxes much more user-friendly.
- Download and install using the built in WordPress plugin installer.
- Activate in the "Plugins" area of your admin by clicking the "Activate" link.
- Consider sponsoring future development by clicking "Sponsor".
- No further setup or configuration is necessary.
npm install
Use this command to install PostCSS and all other development dependencies
npm run remap
Use this command to remap colors to the latest WordPress palette
npm run dev
Use this command to compile human-readable and unminified CSS files
npm run prod
Use this command to compile minified CSS files for production environments
/* Options */
var chosen_options = {
disable_search_threshold: 13,
search_contains: true
};
/* Targets */
var chosen_selects = ' select:not(#metakeyselect, [name^=acf_], [name^=edd], [name^=_edd], [name^=sc], [name=wc_order_action], [class*=chosen], [class*=select2], [class*=wc-enhanced-select], [class*=wc-product-search], [class*=wc-enhanced-select-nostd], [class*=wc-customer-search], [class*=wc-category-search], [class=learndash-binary-selector-items], [class=sendgrid-settings-select])',
chosen_targets =
'.wp-pretty-filters' + chosen_selects
+ ', .wp-filter' + chosen_selects
+ ', .media-toolbar' + chosen_selects
+ ', .postbox .inside' + chosen_selects
+ ', .tablenav' + chosen_selects
+ ', .form-table' + chosen_selects
+ ', .form-wrap' + chosen_selects
+ ', .customize-pane-parent' + chosen_selects;
- Community: https://wordpress.org/support/plugin/wp-chosen
- Development: https://github.com/stuttter/wp-chosen/discussions
Please open a new issue to discuss whether the feature is a good fit for the project. Once you've decided to work on a pull request, please follow the WordPress Coding Standards.