• Hello!

    I would like to know how i can remove header-title on posts only? I like having the big title in the middle on my pages but on my posts i would like for the post-title to be there only not the post-title.

    How can i achieve this?

    View post on imgur.com

Viewing 1 replies (of 1 total)
  • Hello,

    Add the below code to the functions.php file of the OceanWP child theme – OceanWP Child Theme

    // Disable page title on single posts
    function disable_title( $return ) {
     
        if ( is_singular( 'post') ) {
            $return = false;
        }
     
        // Return
        return $return;
        
    }
    add_filter( 'ocean_display_page_header', 'disable_title' );
Viewing 1 replies (of 1 total)

The topic ‘Remove header-title on posts’ is closed to new replies.