Server IP : 192.64.118.117 / Your IP : 3.16.30.154 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/www/wp-content/themes/TESSERACT/inc/sections/ |
Upload File : |
<?php /* * section FOOTER COLORS */ $wp_customize->add_section( 'tesseract_footer_colors' , array( 'title' => __('Footer Colors', 'tesseract'), 'priority' => 1, 'panel' => 'tesseract_footer_options' ) ); $wp_customize->add_setting( 'tesseract_footer_colors_bck_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#1e73be' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tesseract_footer_colors_bck_color_control', array( 'label' => __( 'Footer Background Color', 'tesseract' ), 'section' => 'tesseract_footer_colors', 'settings' => 'tesseract_footer_colors_bck_color', 'priority' => 1 ) ) ); $wp_customize->add_setting( 'tesseract_footer_colors_text_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#ffffff' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tesseract_footer_colors_text_color_control', array( 'label' => __( 'Footer Text Color', 'tesseract' ), 'section' => 'tesseract_footer_colors', 'settings' => 'tesseract_footer_colors_text_color', 'priority' => 2 ) ) ); $wp_customize->add_setting( 'tesseract_footer_colors_heading_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#ffffff' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tesseract_footer_colors_heading_color_control', array( 'label' => __( 'Footer Heading Color', 'tesseract' ), 'section' => 'tesseract_footer_colors', 'settings' => 'tesseract_footer_colors_heading_color', 'priority' => 3 ) ) ); $wp_customize->add_setting( 'tesseract_footer_colors_link_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#ffffff' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tesseract_footer_colors_link_color_control', array( 'label' => __( 'Footer Link Color', 'tesseract' ), 'section' => 'tesseract_footer_colors', 'settings' => 'tesseract_footer_colors_link_color', 'priority' => 4 ) ) ); $wp_customize->add_setting( 'tesseract_footer_colors_link_hover_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'sanitize_hex_color', 'default' => '#d1ecff' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tesseract_footer_colors_link_hover_color_control', array( 'label' => __( 'Footer Hovered Link Color', 'tesseract' ), 'section' => 'tesseract_footer_colors', 'settings' => 'tesseract_footer_colors_link_hover_color', 'priority' => 5 ) ) );