Change the search results archive title in Hello Elementor theme

Change the search results archive title in Hello Elementor theme on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'elementor/utils/get_the_archive_title','archive_callback' );
function archive_callback( $title ) {
 if ( is_search() ) { 
   return 'Your Custom Message Here: ' . get_search_query() ; 
 } 
   return $title; 
}

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