Skip to content

Snippet: Move Aside Content On Top Of Logo For Header Three

// Move header aside content above logo by tweaking the action hooks
function move_header_aside() {

	// Remove action
	remove_action( 'wpex_hook_header_inner', 'wpex_header_aside' );

	// Re-add with higher priority
	add_action( 'wpex_hook_header_inner', 'wpex_header_aside', 0 );
	
}
add_action( 'init', 'move_header_aside' );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top