法則42 RSSを利用して外部ブログの記事をまとめて表示する
外部のブログ記事一覧を表示するテンプレートソース【1】
<MTFeed uri="http://example.com/rss/index.xml">
<$MTFeedInclude lastn="3"$>
</MTFeed>
出力される(X)HTMLソース【2】
<h2> ブログのタイトル</h2>
<ul>
<li><a href="http://example.com/0003.html"> ブログ記事のタイトル3</a></li>
<li><a href="http://example.com/0002.html"> ブログ記事のタイトル2</a></li>
<li><a href="http://example.com/0001.html"> ブログ記事のタイトル1</a></li>
</ul>
外部のブログ記事一覧を表示するテンプレートソース【3】
<MTFeed uri="http://example.com/rss/index.xml">
<dl>
<dt><a href="" title="<$MTFeedTitle$>"><$MTFeedTitle$> の最新記事</a></dt>
<dd>
<ul>
<MTFeedEntries lastn="3">
<li><a href="<$MTFeedEntryLink encode_html="1"$>"><$MTFeedEntryTitle encode_html="1"$></a></li>
</MTFeedEntries>
</ul>
</dd>
</MTFeed>
出力される(X)HTMLソース【4】
<dl>
<dt><a href="http://example.com/" title=" サンプルブログ"> サンプルブログの最新記事</a></dt>
<dd>
<ul>
<li><a href="http://example.com/0003.html"> ブログ記事のタイトル3</a></li>
<li><a href="http://example.com/0002.html"> ブログ記事のタイトル2</a></li>
<li><a href="http://example.com/0001.html"> ブログ記事のタイトル1</a></li>
</ul>
</dd>
リンク
Feeds.Appプラグイン : Appnel Solutions