I’m trying to create a single layout template for my blog posts. In this layout, under the post title, I’m trying to create a dynamic text string that is formatted like: ‘[author name] / [date] / [list of categories the post belongs to]’
Each category would then be a link to that category archive.
I’ve managed to get close with this dynamic content string for the text:
{{dc:author:display_name}} / {{dc:post:publish_date}} / < a href="{{dc:term:url}}">{{dc:term:title}}
The problem is that only one of the post categories is showing up. How can I format the dynamic content string so that all categories the post belongs to are shown?