selective_refresh ) ? 'postMessage' : 'refresh'; $wp_customize->add_setting('cryptomining_footer_copyright_text',array( 'sanitize_callback' => 'crypto_mining_sanitize_text', 'default' => __('Copyright © 2021 | Powered by WordPress | Crypto mining theme by WP Frank', 'crypto-mining'), 'transport' => $selective_refresh, )); $wp_customize->add_control('cryptomining_footer_copyright_text', array( 'label' => esc_html__('Footer Copyright','crypto-mining'), 'section' => 'cryptoairdrop_footer_copyright', 'priority' => 10, 'type' => 'textarea' )); } add_action( 'customize_register', 'crypto_mining_customizer_theme_settings' ); function crypto_mining_sanitize_text( $input ) { return wp_kses_post( force_balance_tags( $input ) ); }