<例1>
カテゴリAだけにモジュールAを表示。カテゴリBだけにモジュールBを表示。そのどちらでもなければモジュールCを表示。
<MTIfIsDescendant parent=”A “>
<$MTInclude module=”モジュールA”$>
<MTElse>
<MTIfIsDescendant parent=”B”>
<$MTInclude module=”モジュールB”$>
<MTElse>
<$MTInclude module=”モジュールC”$>
</MTElse>
</MTIfIsDescendant>
</MTElse>
</MTIfIsDescendant>
<例2>カテゴリAだけにモジュールAを表示。カテゴリBだけにモジュールBを表示。
そのほかのカテゴリは何も表示しない。
<MTIfIsDescendant parent=”カテゴリA “>
<$MTInclude module=”モジュールA”$>
</MTIfIsDescendant>
<MTIfIsDescendant parent=”カテゴリB”>
<$MTInclude module=”モジュールB”$>
</MTIfIsDescendant>
他にもプラグインを使う方法もあります。