How to add a link to an external website in the description of a customizer control (with Kirki)?
esc_html__ is a translation API, specifically it’s equivalent to this: $var = esc_html( __( … ) ); Note that __( is not a language construct, it’s a WordPress function. Your problem is that esc_html escapes your HTML so that its safe to render as text. Swap it for wp_kses_post, and remove the __ function, you … Read more