How to enable custom Shortcodes in Post Category Description? [duplicate]

I found the answer to my own question.

add_filter( 'term_description', 'shortcode_unautop' );
add_filter( 'term_description', 'do_shortcode' );
remove_filter( 'pre_term_description', 'wp_filter_kses' );

I just added those line of codes into the Child theme’s function.php.

Thanks to this post: How to get a shortcode working in category description