Page 1 of 1

[Resolved] How to get the permalink of a category

Posted: Fri Apr 20, 2018 4:09 pm
by kriztho
Hello,
How can I get the permalink of the category of a content ?
When a page is displayed, I want to have a link with the category to display all the content of this category.
Again, sorry for my bad english !
Thank's for your help.

Re: How to get the permalink of a category

Posted: Fri Apr 20, 2018 4:40 pm
by bayerberg
i use something like this :

Code: Select all

      <?php
        if ($page->category()) {
        echo '<a href="'.DOMAIN_CATEGORIES.$page->categoryKey().'">'.$page->category().'</a>';
        };
      ?>
add it to page.php

Re: How to get the permalink of a category

Posted: Fri Apr 20, 2018 4:58 pm
by kriztho
Great !
It was exactly what I wanted
Thank's a lot !

Re: [Resolved] How to get the permalink of a category

Posted: Sat Apr 21, 2018 3:30 pm
by diego
Hi,
I going to add to the documentation this snippet code https://docs.bludit.com/en/developers/categories

Also, I going to add the method $page->categoryPermalink() on the next version.