WP AI Agent
Features Pricing Blog Contact Download Plugin Manage Subscription Get Free Key →

How to Change Your WordPress Site Title and Tagline (Complete Guide)

· · 9 min read

Knowing how to change your WordPress site title and tagline is one of the first tasks every site owner should master — it directly affects your branding, browser tab text, and even search engine rankings. Whether you just installed WordPress and need to replace the default "Just another WordPress site" tagline, or you are rebranding an existing website, this guide walks you through every available method clearly and completely.

Why Your WordPress Site Title and Tagline Matter

Before diving into the steps, it is worth understanding why these two fields are more important than they might first appear.

SEO Impact

Your site title is typically output inside the <title> tag of every page on your website. Search engines like Google read this tag to understand what your site is about. A clear, keyword-rich site title can contribute to better click-through rates in search results. The tagline is often appended to the title tag on your homepage, so it adds an extra line of context for both users and crawlers.

Brand Identity

The site title appears in browser tabs, bookmarks, RSS feeds, and social media previews. If your title still reads "My WordPress Blog" or your tagline says "Just another WordPress site," visitors may question the professionalism of your brand. Updating these fields is a quick win that immediately improves how your site is perceived.

Theme Display

Many WordPress themes display the site title prominently in the header area, either as plain text or as a fallback when no logo image is uploaded. The tagline often appears directly beneath it. Getting these right ensures your header looks polished on every device.

Method 1 — Using the WordPress Customizer (Recommended)

The WordPress Customizer gives you a live preview of your changes before you publish them, making it the safest and most beginner-friendly method.

Step-by-Step Instructions

  1. Log in to your WordPress admin dashboard at yoursite.com/wp-admin.
  2. In the left-hand menu, hover over Appearance and click Customize. This opens the live Customizer panel.
  3. In the Customizer sidebar, click Site Identity. You will see fields for Site Title, Tagline, and optionally a Site Icon (favicon).
  4. Click inside the Site Title field and update the text to your desired title. Watch the live preview on the right update in real time.
  5. Click inside the Tagline field and type your new tagline. If you prefer not to display a tagline, simply clear the field — many themes respect this gracefully.
  6. Once you are happy with the preview, click the blue Publish button at the top of the Customizer sidebar to save your changes.

Hiding the Tagline in the Customizer

Some themes include a checkbox labelled Display Site Title and Tagline within the Site Identity panel. If you want to keep the tagline stored in the database for SEO purposes but hide it visually in the header, untick that checkbox and publish. The tagline will still be used by your SEO plugin for meta tags but will not render in the visible header area.

Method 2 — Using the General Settings Page

If you prefer to skip the Customizer, WordPress also lets you update the site title and tagline directly from the Settings menu. This method is faster but does not offer a live preview.

Step-by-Step Instructions

  1. Log in to yoursite.com/wp-admin.
  2. In the left-hand admin menu, click Settings, then click General.
  3. You will see two fields near the top of the page: Site Title and Tagline.
  4. Update the Site Title field with your new title.
  5. Update the Tagline field with your new tagline, or clear it entirely if you do not want one.
  6. Scroll to the bottom of the page and click the Save Changes button.
  7. Visit your site's front end to confirm the changes appear correctly in the browser tab and header.

What Else Is on the General Settings Page?

While you are on this page, you will also find settings for your WordPress Address (URL), Site Address (URL), admin email, membership options, default user role, language, and timezone. It is a good idea to verify these are all correct when you are setting up a new site, as some of these settings directly affect how WordPress sends emails and handles user registration.

Method 3 — Using WP-CLI (For Developers and Power Users)

WP-CLI is the official command-line interface for WordPress. If you manage WordPress on a server via SSH, or if you need to update the site title and tagline across multiple sites in a scripted workflow, WP-CLI is the most efficient approach.

Prerequisites

You need SSH access to your server and WP-CLI installed. Most managed WordPress hosts (such as WP Engine, Kinsta, and Cloudways) include WP-CLI by default. Run wp --info to confirm it is available.

WP-CLI Commands to Update Site Title and Tagline

To change the site title and tagline, use the wp option update command. WordPress stores these values in the wp_options database table under the option names blogname (site title) and blogdescription (tagline).

# Update the site title
wp option update blogname "Your New Site Title"

# Update the tagline
wp option update blogdescription "Your new compelling tagline"

# Verify both changes were saved
wp option get blogname
wp option get blogdescription

Run these commands from the root directory of your WordPress installation. The changes take effect immediately without requiring a cache flush, although if you are running a full-page caching plugin you should clear the cache afterwards so visitors see the updated values right away.

Bulk Updating Multiple Sites with WP-CLI

If you manage a WordPress Multisite network, you can loop through all sites and update each one. However, exercise caution here — on a network each sub-site can have its own title and tagline, so a bulk update may not always be appropriate. Always test on a staging environment first.

Method 4 — Editing Programmatically via PHP

In some scenarios — for example, when building a custom plugin or child theme that needs to set a default site title during setup — you may want to update these options programmatically using PHP.

Using update_option() in a Plugin or Theme

The WordPress function update_option() lets you write directly to the options table. You might use this in a plugin activation hook to set sensible defaults the first time a plugin is activated.

<?php
/**
 * Set the site title and tagline on plugin activation.
 */
function myplugin_set_site_identity() {
    update_option( 'blogname', 'My Awesome Website' );
    update_option( 'blogdescription', 'Helping you build better WordPress sites' );
}
register_activation_hook( __FILE__, 'myplugin_set_site_identity' );

Important: Never hard-code site title changes in a theme's functions.php file without proper conditional logic. Doing so would override any changes a site owner makes through the admin dashboard every time the functions file is executed, creating a frustrating loop.

Reading the Site Title in a Theme Template

To display the site title and tagline inside a theme template file, use the built-in WordPress template tags:

<?php
// Display the site title
bloginfo( 'name' );

// Display the tagline
bloginfo( 'description' );

// Or retrieve them as strings for use in custom logic
$site_title = get_bloginfo( 'name' );
$tagline    = get_bloginfo( 'description' );
?>

These functions always pull the current values from the database, so any changes made through the admin dashboard or WP-CLI are immediately reflected without any code changes.

Troubleshooting Common Issues

Even such a simple task can occasionally produce unexpected results. Here are the most common problems and how to fix them.

Changes Not Appearing on the Front End

If you save the new title or tagline but the old text still shows on your live site, the most likely cause is a caching layer. Try the following in order:

  1. Clear your WordPress caching plugin's cache (e.g., WP Super Cache, W3 Total Cache, or WP Rocket).
  2. Clear the cache in your hosting control panel if your host provides server-level caching.
  3. Clear your browser cache by pressing Ctrl + Shift + Delete (Windows) or Command + Shift + Delete (Mac).
  4. If you use a CDN such as Cloudflare, purge the CDN cache from your CDN dashboard.

Site Title Not Showing in the Header

If the title and tagline are saved correctly in Settings but not visible in the header, the issue is almost certainly theme-related. Some themes only show the site title as a text fallback when no logo image is set. Check Appearance > Customize > Site Identity to see if a logo is uploaded — removing the logo image may reveal the text-based title. Alternatively, consult your theme documentation to understand how it handles the site identity display.

SEO Plugin Overriding the Title Tag

Plugins like Yoast SEO, Rank Math, and All in One SEO take control of the <title> tag and generate it using their own templates. Your WordPress site title is still used as a variable within those templates (often as %%sitename%% in Yoast). If the title in the browser tab does not match what you set in WordPress, open your SEO plugin's settings and look for the title template configuration — that is where the actual output is being controlled.

Frequently Asked Questions

Does changing my WordPress site title affect my SEO rankings?

Yes, it can. Your site title is used in the HTML <title> tag, which is one of the factors search engines use to understand your site's topic. A sudden change to the site title may cause a temporary fluctuation in rankings as Google re-crawls your pages. However, if the new title is more accurate and keyword-relevant, the long-term effect is typically positive. Always submit an updated sitemap to Google Search Console after making significant branding changes.

What is the difference between the site title and the tagline in WordPress?

The site title (stored as blogname in the database) is the primary name of your website — for example, "Jane's Photography Studio." The tagline (stored as blogdescription) is a short descriptive phrase that elaborates on what the site is about — for example, "Capturing life's most beautiful moments." Themes and SEO plugins use both fields in different ways, but the site title carries more weight for branding and SEO purposes.

Can I leave the WordPress tagline blank?

Yes, leaving the tagline blank is perfectly acceptable and is actually common practice. Many professional websites do not use a tagline at all. If you clear the tagline field and save, WordPress simply omits it from the title tag and header area (depending on your theme). There is no negative consequence for leaving it empty, though a well-crafted tagline can help communicate your value proposition to new visitors quickly.

How do I change the site title on a WordPress Multisite network?

On a WordPress Multisite network, each individual site manages its own title and tagline independently. Log in to the specific sub-site's admin dashboard (not the network admin) and navigate to Settings > General to update that site's title and tagline. If you need to update titles across all network sites at once, use WP-CLI with the --url flag to target each site, or write a custom script that iterates through the network using get_sites() and switch_to_blog().

Updating your site title and tagline is a small change that can have a meaningful impact on your brand clarity and search visibility. Whether you prefer the visual Customizer approach, the straightforward General Settings page, a quick WP-CLI command, or a programmatic PHP snippet, WordPress gives you multiple flexible paths to get the job done. If you would rather skip the admin dashboard entirely and just describe the change you want in plain English, WP AI Agent is an AI-powered chat tool that can handle WordPress tasks like this — and many more — through simple natural-language conversation, making site management faster and more accessible for everyone.

Ready to manage WordPress with AI?

Get 100,000 tokens free every month. No credit card required.

Get Your Free License Key →

More from the blog