How to link categories of a post in a WordPress site

0

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>
    
asked by anonymous 06.03.2018 / 03:57

1 answer

3

It turns out that you are not creating the anchor element (or <a> ).

The correct one is:

<div>
<?php 
    foreach(get_the_category() as $category){
        echo "<a href=\"".get_category_link($category->term_id)."\">{$category->name}</a><br>";
        echo category_description($category);
    }
?>
</div>
    
06.03.2018 / 04:04