Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created July 26, 2022 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/a71b35feb252bee98443532435448b07 to your computer and use it in GitHub Desktop.
Save tripflex/a71b35feb252bee98443532435448b07 to your computer and use it in GitHub Desktop.
Customize WP Job Manager Select2 Arguments
<?php
add_filter( 'job_manager_select2_args', 'smyles_custom_select2_args' );
function smyles_custom_select2_args( $args ){
$args['minimumInputLength'] = 2;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment