フレッシュクリエイティブブログ

カテゴリごとに違う内容を表示させる方法 (MT)2010.11.05

<例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>

他にもプラグインを使う方法もあります。

カテゴリー: Movable Type, Movable Type (category) | タグ: | コメントをどうぞ

月別アーカイブの表示タグ2010.11.04

<MTArchiveList archive_type=”Monthly”>
<MTArchiveListHeader><ul></MTArchiveListHeader>
<li><a href=”<$MTArchiveLink$>”><$MTArchiveTitle></a></li>
<MTArchiveListFooter></ul></MTArchiveListFooter>
</MTArchiveList>

出力例

<ul>
<li>2008/12/05</li>
</ul>

カテゴリー: Movable Type, Movable Type (category) | コメントをどうぞ

カテゴリーを○○カテゴリー >> ○○サブカテゴリーで表示させる。2010.11.03

<h2>
<MTParentCategories exclude_current=”1″>
<MTIfNonZero tag=”MTCategoryCount”><a href=”<$MTCategoryArchiveLinkmce_markergt;”><MTCategoryLabel pmhc=””></a>
<MTElse>
<MTCategoryLabel>
</MTElse>
</MTIfNonZero>
</MTParentCategories>
<MTEntryCategories glue=”&gt;&gt; “><a href=”<$MTCategoryArchiveLinkmce_markergt;”><$MTCategoryLabel pmhc=””mce_markergt;
</a></MTEntryCategories>
</h2>

カテゴリー: Movable Type, Movable Type (category) | タグ: | コメントをどうぞ

他のブログのモジュール読み込み(かなり使います。)2010.11.02

<$MTInclude blog_id=”1″ module=”モジュール名”$>

<$MTInclude module=”モジュール名”>

モジュールとはナビゲーションなどのタグの集合体を作成した場合、
そのタグを上記のように名前をつけて読み込むことができる要素です。

システムテンプレートの共有用のモジュールをあらかじめ作っておくことで後からブログを追加しても修正時に一か所修正するだけで再構築する際に一度に変更できます。

カテゴリー: Movable Type | タグ: | コメントをどうぞ

次の記事へ 前の記事へのリンク設置方法2010.11.01

<MTEntryPrevious>
&laquo;<a href=”<$MTEntryLink$>”>前の記事へ</a>
</MTEntryPrevious>

<MTEntryNext>
<a href=”<$MTEntryLink$>”>次の記事へ</a>&raquo;
</MTEntryNext>

これで
前の記事へ|次の記事へ
のリンクが設置できます。(ブログ記事

wordpressとかだとデフォルトであるけどMT4まではありません。
5は不明

カテゴリー: Movable Type | タグ: | コメントをどうぞ