post_categories_breadcrumb.liquid
post_categories_breadcrumb.liquid
用於部落格文章分類頁面麵包屑
範本變數
以下是一些重要的範本變數和用法說明:
變名稱 | 類型 | 描述 |
---|---|---|
數post_category | Object | 部落格文章所屬分類 |
post_category[].name | String | 部落格文章所屬分類名稱 |
post_category[].url | String | 部落格文章所屬分類 URL |
範例
以下是一個範例,展示完整部落格的麵包屑內容
<div class='blog-breadcrumb'>
<div class='block-inner'>
<a class="Label" href="{{ root_url }}">{{ 'shopline_translations.themes.blog.home' | translate }}</a>
/ <a class='Label' href='/blog/posts'>{{ 'shopline_translations.themes.blog.blog_list_page' | translate }}</a>
/ <a class='Label' href='{{ post_category.url }}'>{{ post_category.name }}</a>
</div>
</div>
Updated about 2 months ago