Hi Markus,
I was searching for “Unique gift items for kids and teens!” and then “Unique” on https://www.kidtivity.com/marketplace/ it’s a hardcoded subtitle.
Does it really search thru everything? I found it after downloading the site back-up in the titles.php file. The folder structure is: wp-content>themes>theme-name>lib>titles.php
It did find the file when I searched for titles. So that’s good!
File:
Namespace Roots\Sage\Titles;
/**
* Page titles
*/
function title() {
if (is_home()) {
if (get_option(‘page_for_posts’, true)) {
return get_the_title(get_option(‘page_for_posts’, true));
} else {
return __(‘Latest Posts’, ‘sage’);
}
} elseif (is_post_type_archive(‘marketplace’)) {
return “Kidtivity Marketplace <small>Unique gift items for kids and teens!</small>”;
} elseif (is_post_type_archive(‘tribe_events’)) {
return “All Kid and Teen Events in CT”;
} elseif (is_archive()) {
return get_the_archive_title();
} elseif (is_search()) {
return sprintf(__(‘Search Results for %s’, ‘sage’), get_search_query());
} elseif (is_404()) {
return __(‘No Results Found, Please Try a Different Search’, ‘sage’);
} else {
return get_the_title();
}
}