asp_print_search_query
Allows changing the value (search query) before printed to the search input field on the search results page
Last updated
Allows changing the value (search query) before printed to the search input field on the search results page
Last updated
add_filter("asp_print_search_query", "asp_change_print_search_query", 10, 2);
function asp_change_print_search_query($query, $search_id) {
// Do whatever with the query
return $query;
}