asp_only_keyword_results
Gives access to the live search suggested keywords array before sending them to the templating system.
Last updated
add_filter( 'asp_only_keyword_results', 'asp_custom_keyword_results', 10, 4 );
function asp_custom_keyword_results( $data ) {
$data['keywords'] = array('keyword 1', 'keyword 2', 'keyword 3');
return $data;
}