Skip to content

Snippet: Shift The Header Five (Centered Logo) Logo

function myprefix_alter_header_five_split_offset( $array ) {
	$array['headerFiveSplitOffset'] = 1; // 1 is default increase to move logo to the left
	return $array;
}
add_filter( 'wpex_localize_array', 'myprefix_alter_header_five_split_offset' );
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