skip to Main Content

Snippet: Remove Title From Page Header & Leave Breadcrumbs Only

// Remove title from page header area
add_action( 'init', function() {
    remove_action( 'wpex_hook_page_header_inner', 'wpex_page_header_title' );
    remove_action( 'wpex_hook_page_header_content', 'wpex_page_header_title' ); // Total v5+
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)
Back To Top