Archived topic
Change the placeholder for the search widget
3 replies · Started by Hilton on April 8, 2020
Viewing posts 1–4 of 4
Hi,
how can I change the placeholder for the search sidebar widget from "Pesquisar ..." to "Buscar ..."?
Thanks
Hi there,
try adding this PHP Snippet to your site:
function db_search_form_placeholder( $html ) {
$html = str_replace( 'placeholder="Pesquisar ', 'placeholder="Buscar ', $html );
return $html;
}
add_filter( 'get_search_form', 'db_search_form_placeholder' );
Hi David,
Perfect! Thanks
You're welcome
This archived topic is closed to new replies.