Great
Done this for the new Search Header to show it in my language
function mi_search_func() {
return sprintf( __( 'Search Results for: %s', 'generatepress' ), '<span>' . get_search_query() . '</span>' );
}
add_shortcode('mi_search', 'mi_search_func');
and then css for removing the actual title that is not removed automactly:
.search .page-header {
display: none;
}
Finishing i created a new Page Header for 404. Sounds weird having so much copies of the “same” header but offer much more flexibility in design. I think everything is ok…
Many Thanks!