// Move page header title area into site header wrap
add_action( 'init', function() {
// Remove page header title from default hook
remove_action( 'wpex_hook_main_top', 'wpex_page_header', 10 );
// Insert page header title into the site header at the very bottom
add_action( 'wpex_hook_header_bottom', 'wpex_page_header', PHP_INT_MAX );
} );
Snippets: Move Page Header Title Area into Site Header
All PHP snippets should be added via a child theme's functions.php file or via the Code Snippets Plugin (or alternative plugin)