TypePad マニュアル

テンプレート・モジュール : category_cloud

これまでに利用したカテゴリーの一覧を、タグクラウド形式で表示します。よく使うカテゴリー程、大きく表示されます。

自分でテンプレート・モジュールを作成する場合は、この標準モジュールをベースに、カスタマイズをするのが楽です。モジュールを作成したら、『新しくテンプレート・モジュールを作成』をクリックして、名前( category_cloud )をつけて保存します。作成したモジュールは、以下のように記述することで、他のテンプレートで読み込むことができます。

関連モジュール・テンプレート

テンプレートの内容

<div class="module-category-cloud module">
	<h2 class="module-header"><$MTTrans phrase="Categories"$></h2>
	<div class="module-content">
		<ul class="module-list">
			<MTCategoryCloud>
				<MTBlogIfArchives archive_type="Category">
					<li class="module-list-item cloud-weight-<$MTCategoryCloudWeight$>"><a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a></li>
				<MTElse>
					<li class="module-list-item cloud-weight-<$MTCategoryCloudWeight$>"><$MTCategoryLabel$></li>
				</MTElse>
				</MTBlogIfArchives>
			</MTCategoryCloud>
		</ul>
	</div>
</div>

      

[ テンプレート一覧に戻る ] [ モジュール一覧に戻る ]