0
I have a website on Wordpress. I want to display the categories on post, I mean, my theme. I tried the code below, but only the name of the categories of the post appears, but only text, there is no way to click and go in the category.. Can help me ?
My Code:
<div>
<?php
foreach((get_the_category()) as $category){
echo $category->name."<br>";
echo category_description($category);
}
?>
</div>
Great, you helped me a lot!
– Matheus Vitor