There’s no need for wp_kses here. The rejection might be due to not escaping translated strings, e.g.
__( 'My content..', 'text-domain' );
should be
esc_html__( 'My content..', 'text-domain' );
There’s no need for wp_kses here. The rejection might be due to not escaping translated strings, e.g.
__( 'My content..', 'text-domain' );
should be
esc_html__( 'My content..', 'text-domain' );