I have a site in WordPress . I want to display the categories in the post , that is, in my theme. I tried the code below, but only the name of the categories of the post appears, but only text, you can not click and go in the category .. Can you help me?
My Code:
<div>
<?php
foreach((get_the_category()) as $category){
echo $category->name."<br>";
echo category_description($category);
}
?>
</div>