Wednesday, March 8, 2017

How to change search box text in Genesis

To change search box text add below code snippet in Genesis child theme's functions.php file

add_filter( 'genesis_search_text', 'bg_search_input_text' );
function bg_search_input_text( $text ) {
    
return esc_attr( 'Search this site..' );
}

Add text of your choice instead of highlighted text above.

No comments:

Post a Comment