Remove the page title in the OceanWP theme

Remove the page title in the OceanWP theme on child sites.

Snippet Type

Execute on Child Sites

Snippet

function prefix_page_header_heading( $return ) {
   $return = false;    
}
add_filter(  'ocean_display_page_header_heading',  'prefix_page_header_heading'  );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.