In this Thesis Tutorial I show you how to remove the Title text from specific pages in your self-hosted WordPress blog or website that uses the Thesis Theme.
Oftentimes, that Title text in the upper left hand corner of the page just doesn’t look right. You want to center the text and change font size and color and all that good stuff! Well in that case, it’s probably just easier to simply remove the default Title text from that page and add your own text into the body of the post and then style it anyway you like. If it’s the Title of the page, you will want to use an “<H1>” HTML tag and I show you how to do that in this WordPress Video Tutorial on Header Tags. Reminder: you should only use the H1 tag once per page.
Here’s the code to copy and paste:
/* START of Removing Pages Titles from Specific Pages */ function no_page_titles() { if (is_page(array(P1,P2,P3))) return false; else return true; } add_filter('thesis_show_headline_area', 'no_page_titles'); /* END of Removing Pages Titles from Specific Pages */