skip to Main Content

Use Header Style Two, Three or Four for Header Overlay

add_filter( 'wpex_header_style', function( $style ) {
	if ( wpex_has_overlay_header() ) {
		$style = 'three';
	}
	return $style;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top