ホームページ テンプレート内で注目のカテゴリ 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 の配列になりたいと考えています。これはフロントマターを使用して行うことは可能ですか?