Allows authors to hide the title on single pages and posts via the edit post screen.
This plugin allows the author of a post or page to hide the title and it’s containing HTML element from the single view ( is_singular() ).
hide-title
folder to the /wp-content/plugins/
directoryIt is possible that your theme does not have the wp_head function in it’s header.php file. In general all themes are suppose to have it, and version 1.0.2 looks for it to prevent adding bad code to the <head>
area of the page. If you have access to your theme file simply add <?php wp_head(); ?>
to header.php just before the </head>
tag. If not, this plugin will no longer be compatible with your theme.
By default this plugin looks for the .entry-title
class and hides it. If it doesn’t find it it will look for any h1
or h2
elements that contain the title and hide them instead. To change the default .entry-title
selector to something that makes more sense to you, add the following code to the functions.php file of your current theme:
global $DojoDigitalHideTitle; // Be sure to replace ".your-selector" with your selector! $DojoDigitalHideTitle->set_selector('.your-selector');
As noted in the comments, you’ll need to replace the string .your-selector
with the css selector you’d like hidden. It can be any valid css selector such as h1
, .myclass
, #myid
, etc. I recommend using a class or id to avoid accidentally hiding unforeseen elements.
I could, but I’d like to avoid adding Yet Another Options Page if I can. If enough people request it though, I’ll go ahead and bite the bullet.
This plugin was originally was developed by Randall Runnels of Dojo Digital. In March 2015, the plugin was not compatible with the latest version of WordPress. After finding the problem, Brandon Kraft reached out with a solution, but didn’t hear a response. He contacted the Plugins team at WordPress.org with an offer to assume development to bring it up date. The plugins team reached out and either recieved the approval of Randall, did not hear back at all, or the e-mail bounced.