Astra_Ext_Transparent_Header_Markup::__construct()

Constructor


Description


Source

File: inc/addons/transparent-header/classes/class-astra-ext-transparent-header-markup.php

		public function __construct() {

			add_action( 'body_class', array( $this, 'add_body_class' ) );

			/* Fixed header markup */
			add_action( 'astra_header', array( $this, 'transparent_header_logo' ), 1 );

			/**
			 * Metabox setup
			 */
			add_filter( 'astra_meta_box_options', array( $this, 'add_options' ) );
			add_action( 'astra_meta_box_markup_after', array( $this, 'add_options_markup' ) );

			add_action( 'astra_customizer_save', array( $this, 'customizer_save' ) );
		}


User Contributed Notes

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