astra_is_white_labelled()

Check if white label option is enabled in astra pro plugin


Description


Source

File: inc/core/common-functions.php

	function astra_is_white_labelled() {

		if ( is_callable( 'Astra_Ext_White_Label_Markup::show_branding' ) && ! Astra_Ext_White_Label_Markup::show_branding() ) {
			return apply_filters( 'astra_is_white_labelled', true );
		}

		return apply_filters( 'astra_is_white_labelled', false );
	}


User Contributed Notes

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