laipower/wp-content/themes/generatepress/inc/customizer/fields/body.php

157 lines
3.6 KiB
PHP

<?php
/**
* This file handles the customizer fields for the Body.
*
* @package GeneratePress
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // No direct access, please.
}
GeneratePress_Customize_Field::add_title(
'generate_body_colors_title',
array(
'section' => 'generate_colors_section',
'title' => __( 'Body', 'generatepress' ),
'choices' => array(
'toggleId' => 'base-colors',
),
)
);
GeneratePress_Customize_Field::add_field(
'generate_settings[background_color]',
'GeneratePress_Customize_Color_Control',
array(
'default' => $defaults['background_color'],
'sanitize_callback' => 'generate_sanitize_hex_color',
'transport' => 'postMessage',
),
array(
'label' => __( 'Background', 'generatepress' ),
'section' => 'generate_colors_section',
'choices' => array(
'toggleId' => 'base-colors',
),
'output' => array(
array(
'element' => 'body',
'property' => 'background-color',
),
),
)
);
GeneratePress_Customize_Field::add_field(
'generate_settings[text_color]',
'GeneratePress_Customize_Color_Control',
array(
'default' => $defaults['text_color'],
'sanitize_callback' => 'generate_sanitize_hex_color',
'transport' => 'postMessage',
),
array(
'label' => __( 'Text', 'generatepress' ),
'section' => 'generate_colors_section',
'choices' => array(
'toggleId' => 'base-colors',
),
'output' => array(
array(
'element' => 'body',
'property' => 'color',
),
),
)
);
GeneratePress_Customize_Field::add_wrapper(
'generate_body_link_wrapper',
array(
'section' => 'generate_colors_section',
'choices' => array(
'type' => 'color',
'toggleId' => 'base-colors',
'items' => array(
'link_color',
'link_color_hover',
'link_color_visited',
),
),
)
);
GeneratePress_Customize_Field::add_field(
'generate_settings[link_color]',
'GeneratePress_Customize_Color_Control',
array(
'default' => $defaults['link_color'],
'sanitize_callback' => 'generate_sanitize_hex_color',
'transport' => 'postMessage',
),
array(
'label' => __( 'Link', 'generatepress' ),
'section' => 'generate_colors_section',
'choices' => array(
'wrapper' => 'link_color',
'tooltip' => __( 'Choose Initial Color', 'generatepress' ),
'toggleId' => 'base-colors',
),
'output' => array(
array(
'element' => 'a, a:visited',
'property' => 'color',
),
),
)
);
GeneratePress_Customize_Field::add_field(
'generate_settings[link_color_hover]',
'GeneratePress_Customize_Color_Control',
array(
'default' => $defaults['link_color_hover'],
'sanitize_callback' => 'generate_sanitize_hex_color',
'transport' => 'postMessage',
),
array(
'label' => __( 'Link Hover', 'generatepress' ),
'section' => 'generate_colors_section',
'choices' => array(
'wrapper' => 'link_color_hover',
'tooltip' => __( 'Choose Hover Color', 'generatepress' ),
'toggleId' => 'base-colors',
'hideLabel' => true,
),
'output' => array(
array(
'element' => 'a:hover',
'property' => 'color',
),
),
)
);
if ( '' !== generate_get_option( 'link_color_visited' ) ) {
GeneratePress_Customize_Field::add_field(
'generate_settings[link_color_visited]',
'GeneratePress_Customize_Color_Control',
array(
'default' => $defaults['link_color_visited'],
'sanitize_callback' => 'generate_sanitize_hex_color',
'transport' => 'refresh',
),
array(
'label' => __( 'Link Color Visited', 'generatepress' ),
'section' => 'generate_colors_section',
'choices' => array(
'wrapper' => 'link_color_visited',
'tooltip' => __( 'Choose Visited Color', 'generatepress' ),
'toggleId' => 'base-colors',
'hideLabel' => true,
),
)
);
}