Astra_Primary_Header::__construct()

Constructor function that initializes required actions and hooks


Description


Source

File: inc/builder/type/header/primary-header/class-astra-primary-header.php

	public function __construct() {
		// @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
		require_once ASTRA_PRIMARY_HEADER_DIR . '/class-astra-primary-header-loader.php';

		// Include front end files.
		if ( ! is_admin() || Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) {
			require_once ASTRA_PRIMARY_HEADER_DIR . '/dynamic-css/dynamic.css.php';
			remove_filter( 'astra_dynamic_theme_css', 'astra_header_breakpoint_style' );
		}
		// @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
	}


User Contributed Notes

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