Your browser tab shows a title for every page. On WordPress, this typically follows the pattern: “Page Title – Site Name” or “Site Name – Tagline.” If your site name is “My WordPress Site” and your tagline is still “Just another WordPress site” — that’s what Google shows in search results.
This is one of the most overlooked settings in WordPress, and it directly affects your click-through rate from search.
What controls the browser tab title?
WordPress uses the tag in to set what appears in browser tabs and search results. By default, it’s generated from: the page or post title, a separator character, and the site name (set in Settings → General).
If you have an SEO plugin (Yoast, RankMath), it overrides this with more granular control. Without one, WordPress uses its built-in wp_get_document_title() function.
The quick fix
Step 1: Go to Settings → General. Update “Site Title” to your actual brand name. Change “Tagline” to something meaningful — or leave it empty.
Step 2 (without SEO plugin): To customize the title format:
// Customize the document title separator
add_filter( 'document_title_separator', function() {
return '|'; // or '—', '·', etc.
});
// Remove the tagline from the homepage title
add_filter( 'document_title_parts', function( $title ) {
unset( $title['tagline'] );
return $title;
});
Step 3 (with SEO plugin): Use your SEO plugin’s title template settings for precise control over every page type.
The one-click solution
OvKit includes Site Headline settings under Features → Frontend for basic title customization without a full SEO plugin.
What happens after you fix this?
- Professional site name in browser tabs — no more “Just another WordPress site”
- Better search result appearance — your brand name shows correctly
- Improved click-through rate — clear, accurate titles attract more clicks
FAQ
### Do I need an SEO plugin to change the title tag?
No. WordPress’s built-in system and the filters shown above give you basic control. An SEO plugin adds per-page customization and more formatting options, but it’s not required for simple changes.
### Will changing the site title affect my SEO?
Changing it to something better will help. Changing it frequently or to something unrelated to your content can cause temporary ranking fluctuations while Google reprocesses.
Related reads: