こんにちは。
magpieで他ブログのRSSを表示させているのですが、その際、表示させるカテゴリを指定したいので下記のように書きました。
{exp:magpie url="http://xxx.com/?xml" limit="5" refresh="720" parse="inward"}
{items}
{if subject=="カテゴリ名"}
<div class="news-list">
<h4>[ {subject} ]</h4>
<dl>
<dt><a href="{link}">{title}({current_time format="%m/%d"})</a></dt>
<dd>{exp:word_limit total="3"}{description}{/exp:word_limit}</dd>
</dl>
<div class="clear"> </div>
</div>
{/if}
{/items}
{/exp:magpie}
しかし、これだと何も表示されません。
もしかして、プラグインの中でGloval Variablesは使えないのでしょうか?
よろしくお願いいたします。