Is it possible to remove the links from the categories in the metadata? I want them to show but not be links.
Thanks!
Is it possible to remove the links from the categories in the metadata? I want them to show but not be links.
Thanks!
you can edit the meta function in theme-functions.php.
Replace:
the_category(', ');
with:
foreach((get_the_category()) as $category) { echo $comma.$category->cat_name; $comma = ", "; }
You must log in to post.