8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
|
jQuery( function($) {
|
||
|
$( '#site-search-input' ).autocomplete({
|
||
|
source: ajaxurl + '?action=autocomplete-site',
|
||
|
delay: 500,
|
||
|
minLength: 2
|
||
|
});
|
||
|
});
|