Skip to content

Customizing the search text

Jon Schroeder edited this page Nov 1, 2022 · 2 revisions

If you'd like to customize the search text (in the properties search), just add a filter like this to your functions.php file:

add_filter( 'rentfetch_search_placeholder_text', 'custom_search_text' );
function custom_search_text( $text ) {
    return 'My custom search text here!';
}

Clone this wiki locally