Change the string for search results in Astra

Change the string for search results in Astra on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'astra_the_search_page_title', 'my_function', 10 ); 

function my_function() {
    return sprintf( __( 'Add Custom Text Here: %s', 'astra' ), '<span>' . get_search_query() . '</span>' );
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.