How To Deactivate A Title In WordPress

How To Deactivate A Title In WordPress – Explained

In WordPress, you’ve just finished creating a page or composing articles. Unfortunately, there is no simple way for how to deactivate a title from showing in WordPress.

There is no simple method to change it; how it appears is determined by your theme. If it’s too enormous and invasive, what should you do? Hence it is crucial to know how to conceal page titles in WordPress. So you’re looking for a way to deactivate a title? Continue reading to learn how to hide the title without really concealing it.

Why Hide The Title In WordPress?

There be reasons why you’re google about how to hide your title. Some of them are as follows:

Not that every page of the website needs a title. While titles get required for blog articles, they don’t necessarily look good on other sites. What works well for a blog isn’t necessarily appropriate for the rest of a website. For example, placing a “Home” title on your site is superfluous and may appear amateurish. Similarly, your “About” or “Services” page should speak for itself, and putting the title at the top may be superfluous.

In addition, the title element may appear out of place in the overall look. Even though you can use CSS to change it, deleting it might be the fitting solution.

You don’t even want to erase the title almost all the time – maybe it can be its location or theme design that bothers you. If the page title is in an unusual location or does not match your design, you may conceal it and put an H1 heading somewhere. On the other hand, burying a page’s title is more complex than removing a picture or a piece of text—headers impact SEO and how search engines interpret the structure of your page. Before you hide all of your titles, there are some things to consider.

How To Deactivate A Title In WordPress?

Now let’s discuss the article’s main query, i.e., how to deactivate a title in WordPress? Or can you delete the title? Your initial inclination may be to eliminate the website’s header, but do not do so because this might impact your SEO. What can you do if you want to eliminate that title? Although WordPress lacks a “hide title” option, removing it is not difficult.

You have several alternatives, whether you want to deactivate only one title or conceal them. Although these techniques are safe and will not create any issues, you must always back up your site before adding additional custom code or a plugin. There are techniques to selectively conceal titles from posts or pages, which we will discuss below.

But first, let’s go through how to remove every post and page title in WordPress using a simple CSS technique. You only need a single line of code to delete such titles permanently.

In your WordPress dashboard, go to Appearance > Customize and navigate to Additional CSS option once more. Type this code into the code text box:

.entry-title {

display: none;

}

Simple as that, all titles on the right-hand preview will erase. The headline is also absent when you go to a specific topic or page.

How To Hide Page Titles In WordPress?

Maybe you don’t want to remove all your page titles. What if you only want to conceal all of your site’s page (but not post) titles? You have to modify the CSS code above in such a scenario slightly. Place “.page” at the front of the code. As an example:

.page .entry-title {

display: none;

}

It should immediately hide all page titles just on the WordPress site

How To Hide A Single Page’s Title In WordPress?

Want to know How to deactivate a single page title in WordPress? You have two choices: add a plugin or modify the CSS code above should target sites based on their ID. Specific plugins, such as the famous Hide Page And Post Title plugin, are designed to hide headlines.

Rather than downloading a small plugin, having multiple plugins on one site may be a security issue. Elementor is one example of this, and it has a simple toggle that allows you to hide page titles.

Navigate to any backend page, select Edit with Elementor, and select the Settings gear in the lower-left corner afterwards.

Now, enable Hide Title, and the page title will get removed.

Last thing is modifying the previous CSS code after getting the ID of the page. This is so that it targets selected page instead of all of them. Navigate to All Pages in your backend and hover on a headline. In the lower-left corner, a link address preview will appear. At the end of a string, you will see “post=*number*”. That is the page ID. Now, use the ID to address that page with CSS, substituting “0” with an ID you discovered as follows:

.page-id-0 .entry-title {

display: none;

}

Final Thought

WordPress has no built-in button to conceal page names, and you still have lots of choices. You might download a plugin that allows toggle titles off and on at will for specific posts or pages. You might also use CSS to conceal every page’s titles or select pages wherever you want them hidden.

Prevent just blurring the title in the backend since this causes SEO and permalink difficulties, clutters the backend, and can therefore harm backend functionality that depends on post/page names, like the menu and Recent Posts widget.

Related Reads: Discover More Content You’ll Love


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *