How to Remove Page Title in WordPress
Learn how to remove page title in WordPress with theme settings, CSS, block templates, and Elementor while keeping your layout clear and search-friendly.
Understanding Page Titles in WordPress
A WordPress page title names the page in your dashboard and site structure. It also helps search engines grasp the page topic. You can hide that title on the front end without changing the page name in WordPress.
This split matters. Search engines can still use the title field, page address, and page content. Visitors simply will not see the heading in the layout. The WordPress page guide explains how pages work.
The right fix depends on your theme. Some themes print titles through a template. Others add them through a block or page builder. Check the page source before changing anything.
| What you want | Best first choice |
|---|---|
| Hide one page title | Theme or builder setting |
| Hide titles on a page group | Custom template |
| Hide titles with a classic theme | Scoped CSS |
| Delete the page itself | Move it to the trash |
If you search for how to remove page name in WordPress, you likely mean the visible heading. Keep the page name in the editor unless you also need to change its URL or search details.
Why Hide a WordPress Page Title?
A visible title gives most pages a clear start. It helps visitors know where they are. It also supports users who scan pages with assistive tools.
Some layouts need a cleaner top area. Landing pages often start with a hero panel. Portfolios may use a visual grid that names each project. A second title can then feel bulky or repeated.
Hiding a title does not improve search rank by itself. It only changes what visitors see. Keep a clear main heading in the page content when the design allows it.
Do not confuse hiding a title with deleting a page. If you need to know how to remove a page from WordPress, open Pages and choose Move to Trash. That action can break links, so check the page's role first.
Removing a menu item is different again. To learn how to remove menu from WordPress page layouts, edit the menu and remove its link. The page will still exist unless you move it to the trash.
Methods to Remove or Hide Page Titles
There are four common ways to remove a page title in WordPress. Start with a built-in setting. It uses less code and often survives theme updates.
- Theme setting: Look for “Hide title,” “Disable title,” or “Page header.”
- Custom CSS: Hide one title or a group of titles with a page class.
- Plugin: Add title controls when your theme has no useful setting.
- Page builder: Use the builder settings when it controls the page layout.
Use one main method per page. Several title rules can clash. They can also make future changes hard to track.
Test each change on a phone and a wide screen. Check the gap above the first content block. A hidden title can leave an empty space if the theme keeps its margin.
If you ask, “WordPress, how to remove page title?” begin with the page editor. Look in the right sidebar for page options. The label may differ across themes.

Removing Titles in Block Themes
Block themes let you edit full templates in the Site Editor. This gives you control over the title block without editing theme files. Menu names can vary by theme version.
- Open Appearance, then choose Editor.
- Open Design, Templates, or Patterns.
- Select the template used by the target page.
- Click the Title block in the template.
- Open the block menu and choose Remove.
- Save the template and check a page that uses it.
This change may affect every page that uses that template. That can help with a group of landing pages. It can also hide titles from standard pages by mistake.
For one page, create a custom template first. Assign it from the page settings. Then remove the title block from that custom version.
You can also leave the block in place and hide it through its settings. That choice is safer when you may restore the title later.

Hiding Titles in Classic Themes With CSS
Classic themes often print page titles through theme files. You may not find a title switch in the Customizer. Custom CSS can hide the title without changing those files.
Open the page in your browser. Right-click the title and choose the browser's inspect tool. Find the heading class, such as .entry-title or .page-title. Your theme may use another name.
Add your rule under Appearance, then Customize, then Additional CSS. A common rule looks like this:
.page .entry-title { display: none; }
This rule may hide titles on all pages. For one page, add a page-specific class before the title class. For example, a rule may look like this:
.page-id-42 .entry-title { display: none; }
Replace 42 with the real page ID. You can find that ID in the page edit address. Use a narrow selector so posts and other headings stay visible.
If you want to know how to remove the page title in WordPress without code, use a theme option instead. CSS works well, but it needs testing after theme changes.

Using Elementor to Hide Page Titles
Elementor has a page setting that can hide the theme title. This is often the fastest answer to how to remove page title in Elementor.
- Open the page with Edit with Elementor.
- Click the settings icon in the lower-left corner.
- Open the Page Settings panel.
- Find Hide Title or the matching title option.
- Turn the option on, then click Update.
- View the page in a private browser window.
The exact label can change between Elementor releases and themes. Elementor's official help center lists current editor controls.
This setting hides the theme title. It does not remove a heading widget inside your layout. Delete or edit that widget if two headings still appear.
Searchers also phrase this task as Elementor how to remove page title. The steps are the same. First check the page settings, then check the content for a second heading.

Centering or Hiding Post Titles
Not every title needs to disappear. You may only want to change its position. To learn how to center page title in WordPress, check your theme's title alignment control first.
If no control exists, use CSS after checking the title class. A simple rule may look like this:
.entry-title { text-align: center; }
Use a page-specific selector when only one title needs a new position. Avoid centering every heading unless that choice fits the whole site.
The same issue can affect blog posts. If you need to know how to remove post title in WordPress, inspect a post title first. Then use the theme setting, builder setting, or a scoped CSS rule.
Post and page selectors may differ. A rule for .page .entry-title may not affect posts. Test both content types before publishing the change.
Best Practices Before You Publish
Keep one clear main heading on each page when possible. It may come from the page content instead of the theme template. That heading helps visitors and screen reader users understand the page.
Do not rename a page just to hide its visible title. The name may feed menus, links, and search data. Change the name only when the page topic has changed.
Save a backup before editing templates or adding CSS. Test logged-out views on desktop and mobile. Clear your cache if the old title still appears.
- Check the browser title and page address.
- Confirm the page still has one useful main heading.
- Check menus and footer links.
- Test keyboard focus and screen reader order.
- Review the page after theme or plugin updates.
Use the smallest change that solves the design problem. A page setting is best for one page. A template is best for a page group. CSS is best when you need a narrow rule.
These steps cover how to remove title from WordPress page layouts without deleting useful site data. They also cover how to remove the page title in WordPress when a theme or builder controls the heading.
Step-by-step
- 01 Check the page title source
Open the page and inspect the heading. Note whether the theme, block template, or page builder creates it.
- 02 Try the built-in title setting
Open the page editor and look for Hide Title, Disable Title, or Page Header. Save the page after changing the setting.
- 03 Edit a block template when needed
Open Appearance, Editor, and the page template. Remove or hide the Title block, then save the template.
- 04 Add scoped CSS for classic themes
Find the title class with the browser inspector. Add a narrow rule under Additional CSS for one page or page group.
- 05 Check Elementor page settings
Open the page in Elementor and turn on Hide Title in Page Settings. Update the page and check the live view.
- 06 Test the finished page
View the page while logged out on desktop and mobile. Confirm that one useful main heading remains.
Frequently asked questions
- How do I remove a page title in WordPress?
- Check your theme or page editor for a Hide Title setting first. You can also remove the title block or use scoped CSS.
- How do I remove the title from a WordPress page without deleting it?
- Hide the visual title with a theme, block, Elementor, or CSS setting. The page name and URL can stay unchanged.
- How do I remove a page title in Elementor?
- Open the page in Elementor, open Page Settings, and turn on Hide Title. Check your layout for any second heading widget.
- How do I remove a page from WordPress?
- Open Pages in the WordPress dashboard, select the page, and choose Move to Trash. This deletes the page from normal site views.
- How do I remove a menu from a WordPress page?
- Edit the menu and remove that page link. The page will remain published unless you move it to the trash.
- Can I center a page title instead of hiding it?
- Yes. Use your theme's alignment control or a scoped CSS rule with text-align: center. Test the result on mobile.
Related reading
How to Add a Calendar to WordPress: A Clear Guide
Add Google Calendar or a plugin to WordPress with this practical guide.
How to Install Divi on WordPress, Step by Step
Install Divi on WordPress, connect your account, and build your first page.
WordPress Anchor Links: A Practical Guide
Create clear WordPress anchor links that make long pages easier to use.