Astra_Headings_Typo_Configs::register_configuration( Array $configurations, WP_Customize_Manager $wp_customize )
Register headings Typography Customizer Configurations.
Description
Parameters
- $configurations
-
(Array) (Required) Astra Customizer Configurations.
- $wp_customize
-
(WP_Customize_Manager) (Required) instance of WP_Customize_Manager.
Return
(Array) Astra Customizer Configurations with updated configurations.
Source
File: inc/customizer/configurations/typography/class-astra-headings-typo-configs.php
public function register_configuration( $configurations, $wp_customize ) {
$section = 'section-typography';
$_configs = array(
/**
* Heading Typography starts here - h1 - h3
*/
/**
* Option: Heading <H1> Font Family
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-family-h1]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-family',
'default' => astra_get_option( 'font-family-h1' ),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h1',
),
),
'title' => __( 'Font Family', 'astra' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-weight-h1]',
'transport' => 'postMessage',
),
/**
* Option: Heading <H1> Font Weight
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-weight-h1]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-weight',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h1',
),
),
'title' => __( 'Weight', 'astra' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ),
'default' => astra_get_option( 'font-weight-h1' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-family-h1]',
'transport' => 'postMessage',
),
/**
* Option: Heading <H1> Text Transform
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[text-transform-h1]',
'section' => $section,
'default' => astra_get_option( 'text-transform-h1' ),
'title' => __( 'Text Transform', 'astra' ),
'type' => 'control',
'control' => 'ast-select',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h1',
),
),
'priority' => 28,
'choices' => array(
'' => __( 'Inherit', 'astra' ),
'none' => __( 'None', 'astra' ),
'capitalize' => __( 'Capitalize', 'astra' ),
'uppercase' => __( 'Uppercase', 'astra' ),
'lowercase' => __( 'Lowercase', 'astra' ),
),
'transport' => 'postMessage',
),
/**
* Option: Heading 1 (H1) Font Size
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-size-h1]',
'type' => 'control',
'control' => 'ast-responsive',
'section' => $section,
'default' => astra_get_option( 'font-size-h1' ),
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h1',
),
),
'priority' => 28,
'title' => __( 'Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
),
'units' => array(
'px' => 'px',
'em' => 'em',
),
),
/**
* Option: Heading <H1> Line Height
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[line-height-h1]',
'section' => $section,
'default' => astra_get_option( 'line-height-h1' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_number_n_blank' ),
'type' => 'control',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h1',
),
),
'control' => 'ast-slider',
'title' => __( 'Line Height', 'astra' ),
'transport' => 'postMessage',
'priority' => 28,
'suffix' => 'em',
'input_attrs' => array(
'min' => 1,
'step' => 0.01,
'max' => 5,
),
),
/**
* Option: Heading <H2> Font Family
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-family-h2]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-family',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h2',
),
),
'title' => __( 'Font Family', 'astra' ),
'default' => astra_get_option( 'font-family-h2' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-weight-h2]',
'transport' => 'postMessage',
),
/**
* Option: Heading <H2> Font Weight
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-weight-h2]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-weight',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h2',
),
),
'title' => __( 'Weight', 'astra' ),
'section' => $section,
'default' => astra_get_option( 'font-weight-h2' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ),
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-family-h2]',
'transport' => 'postMessage',
),
/**
* Option: Heading <H2> Text Transform
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[text-transform-h2]',
'section' => $section,
'default' => astra_get_option( 'text-transform-h2' ),
'title' => __( 'Text Transform', 'astra' ),
'type' => 'control',
'lazy' => true,
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h2',
),
),
'control' => 'ast-select',
'transport' => 'postMessage',
'priority' => 28,
'choices' => array(
'' => __( 'Inherit', 'astra' ),
'none' => __( 'None', 'astra' ),
'capitalize' => __( 'Capitalize', 'astra' ),
'uppercase' => __( 'Uppercase', 'astra' ),
'lowercase' => __( 'Lowercase', 'astra' ),
),
),
/**
* Option: Heading 2 (H2) Font Size
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-size-h2]',
'type' => 'control',
'control' => 'ast-responsive',
'section' => $section,
'lazy' => true,
'default' => astra_get_option( 'font-size-h2' ),
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h2',
),
),
'priority' => 28,
'title' => __( 'Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
),
'units' => array(
'px' => 'px',
'em' => 'em',
),
),
/**
* Option: Heading <H2> Line Height
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[line-height-h2]',
'section' => $section,
'type' => 'control',
'control' => 'ast-slider',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h2',
),
),
'default' => astra_get_option( 'line-height-h2' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_number_n_blank' ),
'transport' => 'postMessage',
'title' => __( 'Line Height', 'astra' ),
'priority' => 30,
'lazy' => true,
'suffix' => 'em',
'input_attrs' => array(
'min' => 1,
'step' => 0.01,
'max' => 5,
),
),
/**
* Option: Heading <H3> Font Family
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-family-h3]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-family',
'default' => astra_get_option( 'font-family-h3' ),
'title' => __( 'Font Family', 'astra' ),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h3',
),
),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-weight-h3]',
'transport' => 'postMessage',
),
/**
* Option: Heading <H3> Font Weight
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-weight-h3]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-weight',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ),
'default' => astra_get_option( 'font-weight-h3' ),
'title' => __( 'Weight', 'astra' ),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h3',
),
),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-family-h3]',
'transport' => 'postMessage',
),
/**
* Option: Heading <H3> Text Transform
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[text-transform-h3]',
'type' => 'control',
'section' => $section,
'lazy' => true,
'title' => __( 'Text Transform', 'astra' ),
'default' => astra_get_option( 'text-transform-h3' ),
'transport' => 'postMessage',
'control' => 'ast-select',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h3',
),
),
'priority' => 28,
'choices' => array(
'' => __( 'Inherit', 'astra' ),
'none' => __( 'None', 'astra' ),
'capitalize' => __( 'Capitalize', 'astra' ),
'uppercase' => __( 'Uppercase', 'astra' ),
'lowercase' => __( 'Lowercase', 'astra' ),
),
),
/**
* Option: Heading 3 (H3) Font Size
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-size-h3]',
'type' => 'control',
'control' => 'ast-responsive',
'section' => $section,
'priority' => 28,
'lazy' => true,
'default' => astra_get_option( 'font-size-h3' ),
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h3',
),
),
'title' => __( 'Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
),
'units' => array(
'px' => 'px',
'em' => 'em',
),
),
/**
* Option: Heading <H3> Line Height
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[line-height-h3]',
'type' => 'control',
'control' => 'ast-slider',
'section' => $section,
'lazy' => true,
'title' => __( 'Line Height', 'astra' ),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h3',
),
),
'transport' => 'postMessage',
'default' => astra_get_option( 'line-height-h3' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_number_n_blank' ),
'priority' => 28,
'suffix' => 'em',
'input_attrs' => array(
'min' => 1,
'step' => 0.01,
'max' => 5,
),
),
/**
* Option: Heading <H4> Font Family
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-family-h4]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-family',
'title' => __( 'Font Family', 'astra' ),
'default' => astra_get_option( 'font-family-h4' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-weight-h4]',
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h4',
),
),
),
/**
* Option: Heading <H4> Font Weight
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-weight-h4]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-weight',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ),
'title' => __( 'Weight', 'astra' ),
'default' => astra_get_option( 'font-weight-h4' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-family-h4]',
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h4',
),
),
),
/**
* Option: Heading <H4> Text Transform
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[text-transform-h4]',
'section' => $section,
'type' => 'control',
'title' => __( 'Text Transform', 'astra' ),
'default' => astra_get_option( 'text-transform-h4' ),
'transport' => 'postMessage',
'control' => 'ast-select',
'lazy' => true,
'priority' => 28,
'choices' => array(
'' => __( 'Inherit', 'astra' ),
'none' => __( 'None', 'astra' ),
'capitalize' => __( 'Capitalize', 'astra' ),
'uppercase' => __( 'Uppercase', 'astra' ),
'lowercase' => __( 'Lowercase', 'astra' ),
),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h4',
),
),
),
/**
* Option: Heading 4 (H4) Font Size
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-size-h4]',
'type' => 'control',
'control' => 'ast-responsive',
'section' => $section,
'default' => astra_get_option( 'font-size-h4' ),
'transport' => 'postMessage',
'lazy' => true,
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h4',
),
),
'priority' => 28,
'title' => __( 'Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
),
'units' => array(
'px' => 'px',
'em' => 'em',
),
),
/**
* Option: Heading <H4> Line Height
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[line-height-h4]',
'type' => 'control',
'section' => $section,
'default' => astra_get_option( 'line-height-h4' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_number_n_blank' ),
'title' => __( 'Line Height', 'astra' ),
'control' => 'ast-slider',
'priority' => 28,
'lazy' => true,
'transport' => 'postMessage',
'suffix' => 'em',
'input_attrs' => array(
'min' => 1,
'step' => 0.01,
'max' => 5,
),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h4',
),
),
),
/**
* Option: Heading <H5> Font Family
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-family-h5]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-family',
'default' => astra_get_option( 'font-family-h5' ),
'title' => __( 'Font Family', 'astra' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-weight-h5]',
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h5',
),
),
),
/**
* Option: Heading <H5> Font Weight
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-weight-h5]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-weight',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ),
'title' => __( 'Weight', 'astra' ),
'section' => $section,
'default' => astra_get_option( 'font-weight-h5' ),
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-family-h5]',
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h5',
),
),
),
/**
* Option: Heading <H5> Text Transform
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[text-transform-h5]',
'type' => 'control',
'section' => $section,
'lazy' => true,
'control' => 'ast-select',
'title' => __( 'Text Transform', 'astra' ),
'transport' => 'postMessage',
'default' => astra_get_option( 'text-transform-h5' ),
'priority' => 28,
'choices' => array(
'' => __( 'Inherit', 'astra' ),
'none' => __( 'None', 'astra' ),
'capitalize' => __( 'Capitalize', 'astra' ),
'uppercase' => __( 'Uppercase', 'astra' ),
'lowercase' => __( 'Lowercase', 'astra' ),
),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h5',
),
),
),
/**
* Option: Heading 5 (H5) Font Size
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-size-h5]',
'type' => 'control',
'control' => 'ast-responsive',
'section' => $section,
'lazy' => true,
'default' => astra_get_option( 'font-size-h5' ),
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h5',
),
),
'priority' => 28,
'title' => __( 'Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
),
'units' => array(
'px' => 'px',
'em' => 'em',
),
),
/**
* Option: Heading <H5> Line Height
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[line-height-h5]',
'type' => 'control',
'control' => 'ast-slider',
'lazy' => true,
'section' => $section,
'default' => astra_get_option( 'line-height-h5' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_number_n_blank' ),
'title' => __( 'Line Height', 'astra' ),
'transport' => 'postMessage',
'priority' => 28,
'suffix' => 'em',
'input_attrs' => array(
'min' => 1,
'step' => 0.01,
'max' => 5,
),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h5',
),
),
),
/**
* Option: Heading <H6> Font Family
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-family-h6]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-family',
'default' => astra_get_option( 'font-family-h6' ),
'title' => __( 'Font Family', 'astra' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-weight-h6]',
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h6',
),
),
),
/**
* Option: Heading 6 (H6) Font Size
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-size-h6]',
'type' => 'control',
'control' => 'ast-responsive',
'section' => $section,
'lazy' => true,
'default' => astra_get_option( 'font-size-h6' ),
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h6',
),
),
'priority' => 29,
'title' => __( 'Size', 'astra' ),
'input_attrs' => array(
'min' => 0,
),
'units' => array(
'px' => 'px',
'em' => 'em',
),
),
/**
* Option: Heading <H6> Font Weight
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[font-weight-h6]',
'type' => 'control',
'control' => 'ast-font',
'font-type' => 'ast-font-weight',
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ),
'default' => astra_get_option( 'font-weight-h6' ),
'title' => __( 'Weight', 'astra' ),
'section' => $section,
'priority' => 28,
'connect' => ASTRA_THEME_SETTINGS . '[font-family-h6]',
'transport' => 'postMessage',
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h6',
),
),
),
/**
* Option: Heading <H6> Text Transform
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[text-transform-h6]',
'section' => $section,
'type' => 'control',
'control' => 'ast-select',
'lazy' => true,
'title' => __( 'Text Transform', 'astra' ),
'transport' => 'postMessage',
'priority' => 28,
'default' => astra_get_option( 'text-transform-h6' ),
'choices' => array(
'' => __( 'Inherit', 'astra' ),
'none' => __( 'None', 'astra' ),
'capitalize' => __( 'Capitalize', 'astra' ),
'uppercase' => __( 'Uppercase', 'astra' ),
'lowercase' => __( 'Lowercase', 'astra' ),
),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h6',
),
),
),
/**
* Option: Heading <H6> Line Height
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[line-height-h6]',
'type' => 'control',
'section' => $section,
'lazy' => true,
'transport' => 'postMessage',
'default' => astra_get_option( 'line-height-h6' ),
'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_number_n_blank' ),
'title' => __( 'Line Height', 'astra' ),
'control' => 'ast-slider',
'priority' => 29,
'suffix' => 'em',
'input_attrs' => array(
'min' => 1,
'step' => 0.01,
'max' => 5,
),
'context' => array(
'',
array(
'setting' => ASTRA_THEME_SETTINGS . '[heading-typo-selector]',
'operator' => '===',
'value' => 'h6',
),
),
),
);
return array_merge( $configurations, $_configs );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.7.0 | Introduced. |