rubengc / cmb2-field-ajax-search

CMB2 field type to attach posts, users or terms.
33 stars 24 forks source link

Added autocomplete options hook #12

Closed ko31 closed 5 years ago

ko31 commented 5 years ago

@rubengc I want to set jQuery-Autocomplete options. So I added a filter hook that can set options.

For example, as follows.

add_filter( 'cmb_field_ajax_search_autocomplete_options', function ( $options ) {
    $options = [
        'minChars' => 3,
    ];

    return $options;
} );
pimmink commented 5 years ago

Really nice, thanks!

rubengc commented 5 years ago

Hi @ko31

Thanks for your contribution! PR merged!