astra_is_logo_in_section( $section )


Description


Source

File: inc/extras.php

	function astra_is_logo_in_section( $section ) {
		foreach ( $section as $components ) {
			if ( in_array( 'logo', $components ) ) {
				/** @psalm-suppress InvalidReturnStatement */
				return true;
			}
		}
		/** @psalm-suppress FalsableReturnStatement */
		return false;
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.