Hi need to remove the title of a specific page, this one. I could do
add_filter( 'the_title', ai1ec_remove_title );
function ai1ec_remove_title( $title ) {
if( 'Calendar' === $title ) {
return '';
} else {
return $title;
}
}
but this would also remove the title for any Post / Custom Post, titled calendar, i want to target specifically a page, is there a better way to do this?