/* This filter ignores ALL escaped HTML, and allows links to render */
function hack_esc_html( $safe, $unsafe ){
return wp_kses( $unsafe, ['a'=>['href'=>true,'target'=>true]], ['http','https'] );
}
add_filter('esc_html','hack_esc_html',999,2);dökümanda yer alan bu kodları functions.php dosyanıza ekleyin, sonra bir daha deneyin.