ページ別にタグや写真を表示させたい場合のスクリプト

メインページに
<MTSetVar name="page" value="home">

アーカイブテンプレートのウェブページに
<MTSetVar name="page" value="other">

仕込んで、各Webページに対応したタグを入れれば、そのページだけ特定のタグを表示させることができます。グループ化したい場合は、グループ化したいWebページに同じタグを付けてください。

まぁフォルダに分別して、そのフォルダー別にルールを縛るって言う方法もあるけどね

 

<MTIf name="page" eq="home">
<p id="visual01"><a name="top" id="top"><img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02"><img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
<MTElseIf name="page" eq="other">

<MTPageTags>
<MTPageIfTagged tag="carrecycle">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="carrecycleschool">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="iso14001">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="usedparts">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="kaitori">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="company">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="press">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="faq">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="map">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="otoiawase">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

<MTPageIfTagged tag="nagare">
<p id="visual01"><a name="top" id="top">
<img src="<mt:BlogUrl />img/top01.gif" alt="" width="900" height="12" /></a></p>
<div id="containerInner">
<p id="visual02">
<img src="<mt:BlogUrl />img/top02.jpg" alt="" width="900" height="268" /></p>
</MTPageIfTagged>

</MTPageTags>
</MTIf>