ASTRA_THEME_SETTINGS . '[divider-section-archive-typo-archive-title]', 'type' => 'control', 'control' => 'ast-divider', 'section' => 'section-archive-typo', 'priority' => 0, 'title' => __( 'Blog Post Title', 'astra' ), 'settings' => array(), 'separator' => false, ), /** * Option: Blog - Post Title Font Size */ array( 'name' => ASTRA_THEME_SETTINGS . '[font-size-page-title]', 'type' => 'control', 'control' => 'ast-responsive', 'section' => 'section-archive-typo', 'transport' => 'postMessage', 'priority' => 4, 'default' => astra_get_option( 'font-size-page-title' ), 'title' => __( 'Font Size', 'astra' ), 'input_attrs' => array( 'min' => 0, ), 'units' => array( 'px' => 'px', 'em' => 'em', ), ), /** * Option: Divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[divider-section-archive-summary-box-typo]', 'type' => 'control', 'control' => 'ast-divider', 'section' => 'section-archive-typo', 'priority' => 6, 'title' => __( 'Archive Summary Box Title', 'astra' ), 'settings' => array(), ), /** * Option: Archive Summary Box Title Font Size */ array( 'name' => ASTRA_THEME_SETTINGS . '[font-size-archive-summary-title]', 'type' => 'control', 'control' => 'ast-responsive', 'section' => 'section-archive-typo', 'transport' => 'postMessage', 'default' => astra_get_option( 'font-size-archive-summary-title' ), 'priority' => 11, 'title' => __( 'Font 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-blog-typography-more-feature-divider]', 'type' => 'control', 'control' => 'ast-divider', 'section' => 'section-archive-typo', 'priority' => 999, 'settings' => array(), ), /** * Option: Learn More about Contant Typography */ array( 'name' => ASTRA_THEME_SETTINGS . '[ast-blog-typography-more-feature-description]', 'type' => 'control', 'control' => 'ast-description', 'section' => 'section-archive-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_Archive_Typo_Configs;