How to remove front page title for Thematic theme in WordPress?

Have you ever wanted to remove the title only for front page in WordPress? Are you using Thematic theme? Than I have good news for you. Use this function to remove the title only on the first page of your Thematic theme in WordPress:

Code:

function remove_front_pagetitle($posttitle) {
if ( is_front_page() ) {
$posttitle = ”;
}
return $posttitle;
}
add_filter(‘thematic_postheader_posttitle’, ‘remove_front_pagetitle’);

The code above should be put in functions.php
You can paste it in the bottom of the functions-file.

Leave a Comment