Untitled

 avatar
unknown
plain_text
3 years ago
271 B
5
Indexable
add_filter( 'get_search_form', function( $form ) {
	if ( is_admin() ) {
		return $form;
	}

	$new_text = "Change this Text";

	$form = str_replace( 'placeholder="Search …"', ( 'placeholder="' . esc_attr( $new_text ) . '"' ), $form );

	return $form;
} );
Editor is loading...