add_section( 'bani_footer_section', array(
'title' => esc_html__( 'Footer Settings', 'bani' ),
'priority' => 40,
) );
/**
* Hide Social Media Icons
*/
$wp_customize->add_setting( 'bani_hide_social_icons_footer', array(
'default' => false,
'sanitize_callback' => 'bani_sanitize_checkbox',
) );
// Add control
$wp_customize->add_control( 'bani_hide_social_icons_footer', array(
'type' => 'checkbox',
'label' => esc_html__( 'Hide Social Icons in Footer', 'bani' ),
'section' => 'bani_footer_section',
'priority' => 0,
) );
/**
* Footer Left Text
*/
$wp_customize->add_setting( 'bani_footer_text_left', array(
'default' => esc_html__( '(c) Copyright 2017 - All Rights Reserved', 'bani' ),
'sanitize_callback' => 'wp_kses_post',
) );
$wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'bani_footer_text_left', array(
'label' => esc_html__( 'Footer Text Left', 'bani' ),
'section' => 'bani_footer_section',
'settings' => 'bani_footer_text_left',
'type' => 'text',
) ) );
if ( bani_fs()->is_not_paying() ) {
/**
* Footer Right Text For Free Version */
$wp_customize->add_setting( 'bani_footer_text_right_free', array(
'default' => esc_html__( 'WordPress Blog Themes by SALT TECHNO', 'bani' ),
'sanitize_callback' => 'wp_kses_post',
) );
$wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'bani_footer_text_right_free', array(
'label' => esc_html__( 'Footer Text Right', 'bani' ),
'section' => 'bani_footer_section',
'settings' => 'bani_footer_text_right_free',
'type' => 'text',
'description' => 'You can edit this text only in a Pro Version.',
'input_attrs' => array(
'class' => 'readonly disabled',
),
) ) );
}
/**
* Hide Goto Top Button
*/
$wp_customize->add_setting( 'bani_hide_to_top', array(
'default' => false,
'sanitize_callback' => 'bani_sanitize_checkbox',
) );
// Add control
$wp_customize->add_control( 'bani_hide_to_top', array(
'type' => 'checkbox',
'label' => esc_html__( 'Hide Goto Top Button', 'bani' ),
'section' => 'bani_footer_section',
) );