Hi,
I want to show the category/categories of an article at the bottom of the article.
I want to link to the category/categories of an article at the bottom of the article.
How can I do this?
Hi,
I want to show the category/categories of an article at the bottom of the article.
I want to link to the category/categories of an article at the bottom of the article.
How can I do this?
Add something like this to relevant place in your layout
{{ with .GetTerms "categories" }}
<div class="article-category">
{{ range . }}
<a class="category-link" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
{{ end }}
</div>
{{ end }}
Thank you.
It works.
It will be something like that
{{ with .GetTerms "categories" }}
<div class="article-category">
{{ range $i, $_ := . }}{{ if $i }}, {{ end }}<a class="category-link" href="{{ .Permalink }}">{{ .LinkTitle }}</a>{{ end }}
</div>
{{ end }}