Ever wondered how to make your WordPress pages look cleaner by hiding those pesky page titles? You’re not alone. Many website owners find that removing page titles can give their site a more streamlined, customized appearance—especially for landing pages, homepages, or portfolios.

Knowing how to remove a page title quickly and safely can help you achieve the precise look you want without compromising functionality. In this article, you’ll learn step-by-step methods, helpful tips, and best practices to get the job done right.

Related Video

How to Remove Page Title in WordPress

Removing or hiding the page title in WordPress is a common task for website owners and bloggers who want more control over how their web pages appear. Whether you want a clean landing page, a unique homepage, or simply don’t need the default title showing on certain pages, WordPress offers several methods to achieve this—no matter your skill level.

Below, you’ll find clear explanations, step-by-step instructions, tips, and answers to popular questions about removing page titles in WordPress.


Why Remove Page Titles in WordPress?

Page titles serve an important function: they let visitors know what a page is about. However, there are many scenarios where you may want to hide or remove them:

  • Custom Landing Pages: For sales pages or lead capture pages, you often need a distraction-free layout.
  • Homepages: Many themes display the page title at the top of the homepage by default, which can look repetitive or awkward.
  • Unique Designs: Sometimes, your site’s design demands a cleaner or more custom look with no page title.

The good news is that hiding page titles is easy and reversible. Let’s explore the best ways to do it.


1. How to Hide Page Titles Using the Block Editor (Site Editor)

The WordPress Block Editor (also called the Site Editor or Gutenberg) offers a straightforward way to hide titles, especially on WordPress.com sites or those using Full Site Editing themes.

Steps to Hide Page Titles with the Block Editor

  1. Open the Page You Want to Edit:
  2. From your WordPress dashboard, navigate to Pages and select the page you wish to edit.

  3. Locate the Title Block:

  4. At the top, you’ll see the page title. This is usually a separate “block” in the editor.

  5. Remove or Hide the Block:

  6. Click on the title block. You can either delete the block (if your theme supports this) using the “Remove” option or, in some cases, toggle visibility using settings on the right sidebar.

Benefits

  • Super simple, no code required.
  • Instant preview of the changes.

Challenges

  • Not all themes support removing titles via the editor.
  • Some themes may still show the title even after it’s deleted from the editor.

2. Using Theme Customization and Site Options

Many modern WordPress themes include settings to hide the page title on individual pages or site-wide.

How to Use Theme Options

  1. Edit Your Page:
  2. Open the page you want to change in the editor.

  3. Check for Theme-Specific Settings:

  4. Look for a “Hide Title” or similar checkbox in the settings panel (usually found in the document/sidebar settings or under a dedicated tab like “Page Options”).

  5. Apply and Update:

  6. Check the box and update/save the page.

Benefits

  • No plugins or coding needed.
  • Keeps the option to show/hide titles per page easily.

Challenges

  • Not all themes have this feature.
  • Sometimes only available with premium versions of the theme.

Expert Tip

If you plan to remove titles from multiple pages, consider switching to a theme that offers this feature natively.


3. Hiding Page Titles with a Plugin

If your theme doesn’t allow you to easily hide titles, using a plugin is the next best choice. Plugins are user-friendly and suitable for beginners.

Popular Plugins for Hiding Page Titles

  • “Hide Page And Post Title”
  • “Title Remover”

You can search for these plugins from your dashboard.

Step-by-Step Guide

  1. Install the Plugin:
  2. Go to Plugins > Add New.
  3. Search for “Hide Page and Post Title”, then install and activate the plugin.

  4. Edit the Desired Page:

  5. After activation, edit the page you wish to hide the title on.

  6. Use the Plugin Options:

  7. You’ll now see a new option, usually in the right-hand menu, to hide the title for this page. Tick the box and update the page.

Benefits

  • No coding knowledge required.
  • Works with virtually all themes.

Possible Challenges

  • Adds another plugin, which could slightly impact site performance.
  • Some plugins may no longer be updated; always choose active, well-rated plugins.

4. Removing Page Titles with Custom CSS

For those comfortable with a little code, custom CSS is a flexible way to hide page titles while maintaining SEO structure and accessibility.

How to Hide Titles Using CSS

  1. Find the Page’s CSS Class or ID:
  2. Visit the page, right-click on the title, and select “Inspect” (in Chrome) to view its HTML structure.

  3. Identify a Unique Class/ID:

  4. Look for something like .page-id-2 .entry-title or .postid-5 h1.

  5. Go to Customize > Additional CSS:

  6. In your WordPress dashboard, navigate to Appearance > Customize > Additional CSS.

  7. Add Custom CSS Code:

  8. Example to hide the title on just one page:

css
.page-id-2 .entry-title {
display: none;
}

  • To hide all page titles:

css
.page .entry-title {
display: none;
}

  1. Publish Changes

Benefits

  • No plugins necessary.
  • Control over which pages to target.

Challenges

  • CSS selectors can vary by theme.
  • Mistyped CSS may unintentionally hide other elements.

Best Practice

Double-check your page on different devices after adding CSS to ensure nothing else disappears.


5. Editing Theme Files (Advanced)

For full control, you can edit your theme’s template files to permanently remove or conditionally hide page titles. This method is recommended only for advanced users or developers.

General Steps

  1. Use a Child Theme:
  2. Never edit a parent theme directly; use a child theme to preserve updates.

  3. Locate the Page Template:

  4. Find page.php or your theme’s custom page template file.

  5. Find the Title Output:

  6. Look for code similar to:

“`php

“`

  1. Remove or Comment Out the Code
  2. You can delete or comment out this line for permanent removal.

Benefits

  • Complete control over page output.
  • No plugin or custom CSS required.

Challenges

  • Editing code can break your site if not done carefully.
  • Risk of losing changes if not using a child theme.

Caution

Always back up your site before modifying template files.


Pros and Cons of Each Method

Method Pros Cons
Block Editor Easy, no code May not work with all themes
Theme Options Fast, per-page control Not universal
Plugin Universal, non-intrusive Adds plugin overhead
Custom CSS Flexible, targets specific pages May hide unintended elements
Theme File Edit Fully custom, site-wide Risky, not for beginners

Practical Tips and Best Practices

  • Test on Staging First: Before removing titles on your live site, test changes in a staging environment to avoid surprising visitors.
  • Keep SEO in Mind: Hiding the displayed title doesn’t remove it from your page’s HTML. Your page will still have a proper title for SEO, which is good for search rankings.
  • Document Your Changes: If you’re working with code or CSS, keep notes on what you change for future reference, updates, and troubleshooting.
  • Use Child Themes: When editing theme files, always work within a child theme to prevent your changes from being overwritten by theme updates.
  • Limit Plugins: Whenever possible, use built-in options before adding plugins, to keep your site fast and secure.
  • Mobile Responsiveness: Always check how your site looks on mobile after hiding titles.
  • Backups: Regularly back up your website before making changes—especially before editing code or template files.

Cost Tips

Hiding page titles in WordPress is generally free. You don’t need to purchase plugins—there are reliable free options available. However, premium themes sometimes offer more design flexibility, including the ability to hide page titles with a toggle. Investing in a quality theme with robust page controls may save you time in the long run.

There are no shipping or external costs involved, as all solutions are digital and take only a few minutes to apply.


Final Thoughts

Removing or hiding page titles in WordPress is a straightforward task, suitable for both beginners and advanced users. With several methods available—ranging from built-in editor tools to plugins, custom CSS, and theme code edits—you can tailor your site appearance to match your unique needs.

Start with the simplest method that matches your comfort level and your theme’s capabilities. Always prioritize ease of maintenance, site performance, and compatibility with future updates. And remember, if you ever want the page title back, it’s just as easy to restore.


Frequently Asked Questions (FAQs)

How do I hide the title on just one page and not the whole website?
You can hide the title on a single page by either using a plugin that lets you toggle the title per page, or by adding custom CSS targeting that page’s unique class (like .page-id-XX .entry-title { display: none; }). Many themes and plugins offer page-specific controls.

Will hiding the page title affect my site’s SEO?
No, hiding the visible title does not impact SEO. The page title element remains in your site’s code for search engines, even if visitors no longer see it on the page.

Can I remove page titles with no coding knowledge?
Absolutely! The block editor, many themes, and several plugins allow you to hide page titles easily—no coding required. Just follow the steps in your editor or plugin settings.

Can I change my mind and show the page titles again later?
Yes, most methods are fully reversible. If you used a plugin or editor toggle, simply uncheck the option. If you added custom CSS, you can remove the code. Even theme file edits can be reverted by restoring the line of code.

What should I do if hiding the title causes layout issues?
Sometimes, hiding the page title can leave empty space or disrupt your design. In these cases, tweak your theme settings, adjust your CSS to manage spacing, or consult your theme documentation for more advanced layout options.


With these guidelines and answers, you’re ready to customize your WordPress site’s appearance by removing unwanted page titles in a way that best fits your workflow and style.