Disable Home title
-
Hi,
I’ve tried this, on the functions child theme, but it don’t work.
Please, can you help me?// Disable page title on single posts
function disable_title( $return ) {if ( is_home() ) {
$return = false;
}// Return
return $return;}
add_filter( ‘ocean_display_page_header’, ‘disable_title’ );
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Disable Home title’ is closed to new replies.