add_section( 'footer_section' , array( 'title' => esc_html__( 'Footer Settings', 'abcblog' ), 'priority' => 204, ) ); $wp_customize->add_setting('foot_layout', array( 'default' => 'four_column', 'sanitize_callback' => '__return_false_value', ) ); $wp_customize->add_control('foot_layout', array( 'type' => 'radio', 'priority' => 1, 'label' => esc_html__( 'Footer Layout', 'abcblog' ), 'section' => 'footer_section', 'choices' => array( 'three_column' => esc_html__( 'Three Column', 'abcblog' ), 'four_column' => esc_html__( 'Four Column', 'abcblog' ) ) ) ); $wp_customize->add_setting('copy_contents', array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'abcblog_sanitize_text' )); $wp_customize->add_control( 'copy_contents', array( 'settings' => 'copy_contents', 'label' => esc_html__( 'Enter Footer Copyright Text', 'abcblog' ), 'section' => 'footer_section', 'type' => 'textarea', 'priority' => 2, )); } add_action( 'customize_register', 'abcblog_footer_settings_register' );