Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/tu-international.com/wp-content/themes/motorx/inc/customizer/typography/ |
Upload File : |
<?php // Bottom Copyright Fonts $wp_customize->add_setting('themesflat_options[info]', array( 'type' => 'info_control', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_attr', ) ); $wp_customize->add_control( new themesflat_Info( $wp_customize, 'typography-bottom-copyright', array( 'label' => esc_html__('Copyright', 'motorx'), 'section' => 'section_typo_bottom', 'settings' => 'themesflat_options[info]', 'priority' => 1 ) ) ); $wp_customize->add_setting( 'typography_bottom_copyright', array( 'default' => themesflat_customize_default('typography_bottom_copyright'), 'sanitize_callback' => 'esc_html', ) ); $wp_customize->add_control( new themesflat_Typography($wp_customize, 'typography_bottom_copyright', array( 'label' => esc_html__( 'Font name/style/sets', 'motorx' ), 'section' => 'section_typo_bottom', 'type' => 'typography', 'fields' => array('family','style','line_height','size','letter_spacing'), 'priority' => 2 )) ); // Bottom text color $wp_customize->add_setting( 'bottom_text_color', array( 'default' => themesflat_customize_default('bottom_text_color'), 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'bottom_text_color', array( 'label' => esc_html__('Color', 'motorx'), 'section' => 'section_typo_bottom', 'settings' => 'bottom_text_color', 'priority' => 3 ) ) ); // Bottom link color $wp_customize->add_setting( 'bottom_link_color', array( 'default' => themesflat_customize_default('bottom_link_color'), 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'bottom_link_color', array( 'label' => esc_html__('Link Color', 'motorx'), 'section' => 'section_typo_bottom', 'settings' => 'bottom_link_color', 'priority' => 4 ) ) ); // Bottom Text Color Hover $wp_customize->add_setting( 'bottom_text_color_hover', array( 'default' => themesflat_customize_default('bottom_text_color_hover'), 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'bottom_text_color_hover', array( 'label' => esc_html__('Link Color Hover', 'motorx'), 'section' => 'section_typo_bottom', 'settings' => 'bottom_text_color_hover', 'priority' => 5 ) ) ); // Bottom Menu Fonts $wp_customize->add_setting('themesflat_options[info]', array( 'type' => 'info_control', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_attr', ) ); $wp_customize->add_control( new themesflat_Info( $wp_customize, 'typography-bottom-menu', array( 'label' => esc_html__('Menu', 'motorx'), 'section' => 'section_typo_bottom', 'settings' => 'themesflat_options[info]', 'priority' => 20 ) ) ); $wp_customize->add_setting( 'typography_bottom_menu', array( 'default' => themesflat_customize_default('typography_bottom_menu'), 'sanitize_callback' => 'esc_html', ) ); $wp_customize->add_control( new themesflat_Typography($wp_customize, 'typography_bottom_menu', array( 'label' => esc_html__( 'Font name/style/sets', 'motorx' ), 'section' => 'section_typo_bottom', 'type' => 'typography', 'fields' => array('family','style','line_height','size','letter_spacing'), 'priority' => 21 )) );