'font-size-site-title', 'type' => 'sub-control', 'parent' => ASTRA_THEME_SETTINGS . '[site-title-typography]', 'section' => 'title_tagline', 'control' => 'ast-responsive', 'default' => astra_get_option( 'font-size-site-title' ), 'transport' => 'postMessage', 'priority' => 9, 'title' => __( 'Size', 'astra' ), 'input_attrs' => array( 'min' => 0, ), 'units' => array( 'px' => 'px', 'em' => 'em', ), ), /** * Option: Site Tagline Font Size */ array( 'name' => 'font-size-site-tagline', 'type' => 'sub-control', 'parent' => ASTRA_THEME_SETTINGS . '[site-tagline-typography]', 'section' => 'title_tagline', 'control' => 'ast-responsive', 'default' => astra_get_option( 'font-size-site-tagline' ), 'transport' => 'postMessage', 'priority' => 15, 'title' => __( 'Size', 'astra' ), 'input_attrs' => array( 'min' => 0, ), 'units' => array( 'px' => 'px', 'em' => 'em', ), ), ); $configurations = array_merge( $configurations, $_configs ); // Learn More link if Astra Pro is not activated. if ( ! defined( 'ASTRA_EXT_VER' ) ) { $_configs = array( /** * Option: Divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[ast-header-typography-more-feature-divider]', 'type' => 'control', 'control' => 'ast-divider', 'section' => 'section-header-typo', 'priority' => 999, 'settings' => array(), ), /** * Option: Learn More about Typography */ array( 'name' => ASTRA_THEME_SETTINGS . '[ast-header-typography-more-feature-description]', 'type' => 'control', 'control' => 'ast-description', 'section' => 'section-header-typo', 'priority' => 999, 'title' => '', 'help' => '
' . __( 'More Options Available for Typography in Astra Pro!', 'astra' ) . '
' . __( 'Learn More', 'astra' ) . '', 'settings' => array(), ), ); $configurations = array_merge( $configurations, $_configs ); } return $configurations; } } } new Astra_Header_Typo_Configs();