add_section( 'footer_options', array( 'title' => esc_html__( 'Footer Options', 'beetan' ), 'priority' => 32, ) ); $wp_customize->add_setting( 'copyright_text', array( 'sanitize_callback' => 'wp_kses_post', 'default' => sprintf( /* translators: %s: StorePress. */ wp_kses_post( __( 'Copyright © %1$s %2$s. All Rights Reserved.', 'beetan' ) ), date( 'Y' ), esc_html__( get_option( 'blogname' ) ) ), ) ); $wp_customize->add_control( new Beetan_Customize_TinyMCE_Control( $wp_customize, 'copyright_text', array( 'label' => esc_html__( 'Copyright Text', 'beetan' ), 'section' => 'footer_options' ) ) ); /* * End Footer Settings */