Astra_Ext_Header_Sections_Markup::add_options( array $meta_option )

Add Meta Options


Description


Parameters

$meta_option

(array) (Required) Page Meta.


Return

(array)


Source

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

		public function add_options( $meta_option ) {
			$meta_option['ast-below-header-display'] = array(
				'sanitize' => 'FILTER_DEFAULT',
				'default'  => astra_get_option( 'ast-below-header-display' ),
			);
			$meta_option['ast-above-header-display'] = array(
				'sanitize' => 'FILTER_DEFAULT',
				'default'  => '',
			);
			return $meta_option;
		}

User Contributed Notes

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