Change search button text
-
Hi there! Thanks so much for the plugin!
I’m trying to find a way to change the ‘Search’ text of the button.
I’m trying with the following PHP but it doesn’t work, maybe you can see it?PS if there was a ‘tip’ option within the plugin I would’ve definitely tipped you, I really needed it.
add_filter(‘get_search_form’, ‘my_search_form_text’);
function my_search_form_text($text) {
$text = str_replace(‘value=”Search”‘, ‘value=”Click me”‘, $text); //set as value the text you want
return $text;
}`
- The topic ‘Change search button text’ is closed to new replies.