MTSubCategoryPath
最上位のトップレベルカテゴリから現在のカテゴリまでのディレクトリパスを表示します。パスは各カテゴリの『出力ファイル/フォルダ名』(ベースネーム)をもとに生成されます。例えば、foo というカテゴリに bar という子カテゴリがある場合は foo/bar と表示します。
- 使い方
<mt:IfArchiveTypeEnabled archive_type="Category">
<div class="widget-categories widget">
<h3 class="widget-header">カテゴリ</h3>
<div class="widget-content">
<mt:TopLevelCategories>
<mt:SubCatIsFirst><ul class="widget-list"></mt:SubCatIsFirst>
<mt:If tag="CategoryCount">
<li class="widget-list-item"><a href="<$mt:BlogURL$>smartphone/<$mt:SubCategoryPath$>/index.html" title="<$mt:CategoryDescription$>"><$mt:CategoryLabel$></a>
<mt:Else>
<li class="widget-list-item"><$mt:CategoryLabel$>
</mt:If>
<$mt:SubCatsRecurse$>
</li>
<mt:SubCatIsLast></ul></mt:SubCatIsLast>
</mt:TopLevelCategories>
</div>
</div>
</mt:IfArchiveTypeEnabled>