【发布时间】:2016-06-15 21:07:33
【问题描述】:
我想在我的主页模板中定义一个特色类别 ID 列表。是否可以在前端定义自定义变量?我似乎无法让它工作:
这是templates/pages/home.html 中的默认前端,最后是我的自定义变量featured_categories:
---
products:
new:
limit: {{theme_settings.homepage_new_products_count}}
featured:
limit: {{theme_settings.homepage_featured_products_count}}
top_sellers:
limit: {{theme_settings.homepage_top_products_count}}
carousel: {{theme_settings.homepage_show_carousel}}
blog:
recent_posts:
limit: {{theme_settings.homepage_blog_posts_count}}
featured_categories: 'testing'
---
然后,在模板中,这一行不会产生任何输出:
{{featured_categories}}
为什么不输出值testing?最终,我希望featured_categories 成为一个类别 ID 的数组。这可以使用前置物质吗?
【问题讨论】:
标签: handlebars.js bigcommerce yaml-front-matter