Wenn man bspw. vis PHP nach dem Header eine Zeile mit TItel und Breadcrumb einfügt…
Shortcode to display the search term
//===================================================
//SHORTCODE: SEARCH TERM
//===================================================
add_shortcode( 'search_term', function( $atts = null, $content = null ) {
return $_GET['s'];
} );