Archived topic
Removing "Search Results for:" from archive title
3 replies · Started by Altti on May 15, 2019
Hi there,
I'm building a website for one of our customer. It's in finnish language so I ran in to a problem with search results page. Is there a way to remove the text "Search Results for:" from the archive title on search result page? I don't want to install a translation plugin just for that text. Can it be removed with a script in functions.php or something like that?
Thanks
Hi there,
Try this filter:
add_filter( 'gettext', function( $text ) {
if ( 'Search Results for: %s' === $text ) {
$text = '%s';
}
return $text;
} );
Let me know if that does it or not :)
Worked out perfectly. Thanks Tom.
You're welcome :)