0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

プライマリーカテゴリーが同じ記事の一覧を作成する

Posted at

最近の記事一覧があり、さらに任意のプライマリーカテゴリーに属する記事のリンク10件を一覧を表示させる。
ただし、任意のプライマリーカテゴリーのリンクには、すでに最近の記事一覧に既出の記事は含めない。
下記の例は任意のプライマリーカテゴリーを「MovableType Tips」とする場合。

<ul>

//任意のプライマリーカテゴリーに属する記事10件をカウントするためのカウンター
<mt:SetVar name="counter" value="1">

//モディファイアunique="1"を設定してページ内でリンクが重複しないようにする
<mt:Entries include_blogs="3" lastn="0" unique="1">

//カウンターが10以内の場合に処理をする条件分岐
<mt:If name="counter" le="10">

//対象のカテゴリーを「MovableType Tips」、対象の範囲をプライマリーカテゴリーにする
<mt:IfCategory name="MovableType Tips" type="primary">

    <li class="menu_item"><mt:EntryTitle></li>

//処理が1件終わるごとにカウンターに1を足す
    <mt:SetVar name="counter" op="+" value="1">
</mt:IfCategory>
</mt:If>
</mt:Entries>
</ul>

※こちらは下記の記事を再編集したものです。
「プライマリーカテゴリーが同じ記事の一覧を作成する」
https://www.drivemenuts.com/blog/archives/2020/03/post-533.html

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?