Tag description doesn’t show hyperlink

I have added HTML code into my TAG description box, but for some reason the output doesn’t display the required results.

I have even tried to add HREF tag manually into this box, but no hyperlinks are visible. The code contains tag_description();

Related posts

Leave a Reply

2 comments

  1. You can simply remove the filters – ( functions.php )

    // Before saving into database
    remove_filter( 'pre_term_description', 'wp_filter_kses' );
    
    // Before displaying data 
    remove_filter( 'term_description', 'wp_kses_data'     );