Skip to main content

How to Hide Single Page Titles in WordPress

By July 9, 2014Programming, Wordpress
  1. In your Dashboard > Pages > Edit > Page
  2. Take note or your URL bar ID number, where it says post=(?) ie, (9) = /wp-admin/post.php?post=9&…
  3. Go to Dashboard > Appearance > Tools > Custom CSS code
  4. Paste this code and change the ID numbers to match the pages you wish to custom hide page titles:
.page-id-9 #page-title,
.page-id-23 #page-title,
.page-id-117 #page-title {
   display: none;
}