add_setting( 'sample_content_link', array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Blockchain_Lite_Customize_Static_Text_Control( $wp_customize, 'sample_content_link', array( 'section' => 'theme_other_sample_content', 'label' => esc_html__( 'Sample content bundle', 'blockchain-lite' ), 'description' => array( wp_kses( /* translators: %s is a URL */ sprintf( __( 'Download the theme\'s sample content files to get things moving.', 'blockchain-lite' ), esc_url( $sample_content_url ) ), blockchain_lite_get_allowed_tags( 'guide' ) ), ), ) ) ); }