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 don’t want html inside translation strings


A sidenote: Frameworks are useful, but they have disadvantages, in order to get help you now need to have the luck of coming across somebody else already familiar with the kirki customizer framework, which I’ve never heard of. General customizer knowledge is of little to no help, severely limiting your ability to research solutions and get the help of others.

In this case, your question was answerable without knowing anything about the customizer