Done !
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/footer/ |
Upload File : |
<?php // Show Bottom $wp_customize->add_setting ( 'show_bottom', array ( 'sanitize_callback' => 'themesflat_sanitize_checkbox' , 'default' => themesflat_customize_default('show_bottom'), ) ); $wp_customize->add_control( new themesflat_Checkbox( $wp_customize, 'show_bottom', array( 'type' => 'checkbox', 'label' => esc_html__('Bottom ( OFF | ON )', 'motorx'), 'section' => 'section_bottom', 'priority' => 1 )) ); // Footer Copyright $wp_customize->add_setting( 'footer_copyright', array( 'default' => themesflat_customize_default('footer_copyright'), 'sanitize_callback' => 'themesflat_sanitize_text', ) ); $wp_customize->add_control( 'footer_copyright', array( 'label' => esc_html__( 'Copyright', 'motorx' ), 'section' => 'section_bottom', 'type' => 'textarea', 'priority' => 2 ) ); //Socials $wp_customize->add_setting( 'social_bottom', array( 'sanitize_callback' => 'themesflat_sanitize_checkbox', 'default' => themesflat_customize_default('social_bottom'), ) ); $wp_customize->add_control( new themesflat_Checkbox( $wp_customize, 'social_bottom', array( 'type' => 'checkbox', 'label' => esc_html__('Social ( OFF | ON )', 'motorx'), 'section' => 'section_bottom', 'priority' => 3, )) );