Hi, thanks for your reply.
In my custom post type I’ve some custom fields that I use to describe an object; for example, if I would review a supplement, I could have
Introduction custom field
Posology custom field
Ingredients custom field
Price custom field
Warning custom field
…
It could be a good idea expose a function to apply substitutions on the fly in the theme, for example I use
$Ingredients = get_the_terms( $post->ID, ‘ingredients’ );
echo wpautop($Ingredients);
and I’d like to have
echo wpautop(autolink($Ingredients));
Thank you so much for your reply and, please, forgive my English.