How can I avoid removing the html tag from the blog

Good day,
I bougth the them UNICON Pro and I need to change a small thing of the blog

I am using the blog to display the sponsors.
See at this web site, at the middle of the page this is a section “Sponsor, Merci pour leur soutien”
When WordPress (WP) get the data from the database, WP remove the a tag

From that file

wp-content⁩ ▸ ⁨themes⁩ ▸ ⁨unicon-pro⁩ ▸ ⁨unicon⁩ ▸ function.php

the following function does that

echo unicon_word_count(get_the_excerpt(), 25); ?>

My question is which other function display the text without removing the a tag (at least) or all other.

Also, I do not want to have a limitation of 25 words. But for now I really need to keep the a tag for one link

Thank for your help

Hi

Use:
echo get_the_excerpt(); ?>

Instead of:
echo unicon_word_count(get_the_excerpt(), 25); ?>

If you have still issue with the theme then the best way to get the support is Contact your purchased Theme Author. Contact Author and let them know.

Thanks