Remove Page Title from Static Frontpage

wrap your add_filter function call around a conditional tag and use the builtin return false function:

if ( is_page('138') )
{
      add_filter( 'the_title', '__return_false' );
}

Leave a Comment