Hello,
I'm desperately trying to figure out how to change the search-field value text ("To search, type and hit enter"). Can I do that by writing a function in my functions.php?
Thanks,
Jürgen
Hello,
I'm desperately trying to figure out how to change the search-field value text ("To search, type and hit enter"). Can I do that by writing a function in my functions.php?
Thanks,
Jürgen
Try this in your child theme functions.php, making changes where you see necessary:
add_filter('search_field_value', 'my_search_field_value');
function my_search_field_value($value) {
return 'the text you want to use';
}Thank you nathanrice, I was looking for that also.
You must log in to post.