Remove hyperlink from
[Solved] - Remove hyperlink from |
---|
Try following codes |
Hello,
I have figured out how to remove hyperlinks from the_category, but I have no clue how to remove hyperlinks from the_terms.
Here is code that I am using:
'Editors' is a custom taxonomy that I have created. By using this code, it automatically adds a hyperlink. I don't want to have this taxonomy hyperlinked when it is displayed, but I don't know how to do that with a custom taxonomy. If you know how to remove the hyperlink while still using the_terms, great. If not, I just need to be sure that I can tell WordPress how they need to be separated (they have commas now). Thanks in advance for your help! Thomas Solution - 1add_filter('the_terms', 'the_terms_function_filter',10,5); function the_terms_function_filter($term_list, $taxonomy, $before, $sep, $after){ return strip_tags($them_list,' '); } Solution - 2this will allow you to do it on a case-by-case basis, instead of doing it every time.
|
Date: 2022-10-21 05:16:23 |
Category: Wordpress |