Title: Remove header-title on posts
Last modified: December 2, 2018

---

# Remove header-title on posts

 *  [testarn](https://wordpress.org/support/users/testarn/)
 * (@testarn)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/remove-header-title-on-posts/)
 * 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](https://imgur.com/bPY56ow)

Viewing 1 replies (of 1 total)

 *  [Amit Singh](https://wordpress.org/support/users/apprimit/)
 * (@apprimit)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/remove-header-title-on-posts/#post-10940278)
 * Hello,
 * Add the below code to the functions.php file of the OceanWP child theme – [OceanWP Child Theme](https://docs.oceanwp.org/article/90-sample-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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/oceanwp/4.1.5/screenshot.png)
 * OceanWP
 * [Support Threads](https://wordpress.org/support/theme/oceanwp/)
 * [Active Topics](https://wordpress.org/support/theme/oceanwp/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/oceanwp/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/oceanwp/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Amit Singh](https://wordpress.org/support/users/apprimit/)
 * Last activity: [7 years, 5 months ago](https://wordpress.org/support/topic/remove-header-title-on-posts/#post-10940278)
 * Status: not resolved