フォーラムでたくさんの投稿を読みましたが、まだ使い方を知らない人がいることがわかりました。説明書はそれを可能にするほど詳細ではないと考えてください。もう一度言わせてください。 まず、新しい rss.php ファイルを作成し、次のコードをそこにコピーします:
コードは次のとおりです:
<?php require_once (dirname(__FILE__) . "/include/common.inc.php"); require_once DEDEINC."/arc.partview.class.php"; $pv = new PartView(); $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/default/rss.htm"); header("Content-type:application/xml"); $pv->Display(); ?>
ファイルをサイトのルート ディレクトリに保存します。
次に、rss.htm テンプレート出力ファイルを作成し、次のコードをその中にコピーします:
コードは次のとおりです:
<?xml version="1.0" encoding="gb2312" ?> <rss version="2.0"> <channel> <title>{dede:global.cfg_webname/}</title> <link>{dede:global.cfg_basehost/}</link> <description>{dede:global.cfg_description/}</description> copyright dedecms <language>zh-cn</language> <generator>{dede:global.cfg_webname/}</generator> <webmaster>{dede:global.cfg_adminemail/}</webmaster> {dede:arclist row='60' col='1' titlelen='100' orderby='pubdate'} <item> <link>http://www.jb51.net[field:arcurl/]</link> <title><![CDATA[[field:title function='html2text(@me)'/]]]></title> <author>[field:writer/]</author> <category>[field:typename/]</category> <pubDate>[field:pubdate function='strftime("%a, %d %b %Y %H:%M:%S +0800",@me)'/]</pubDate> <guid>http://www.jb51.net[field:arcurl/]</guid> <description><![CDATA[[field:description function='html2text(@me)'/] ... <b>文章分类</b>:[field:typename/]<a href="http://www.jb51.net[field:arcurl/]" target="_blank">阅读全文</a> | <a href="http://www.jb51.net/plus/recommend.php?aid=[field:id/]" target="_blank">邮件推荐</a> | <a href="http://www.jb51.net[field:arcurl/]" target="_blank">评论回复</a>]]></description> 织梦好,好织梦 </item> {/dede:arclist} </channel> </rss>
自分のサイトで使用する場合は、URL を自分のものに置き換えてください。このファイルを、index.htm ホームページ テンプレートと同じディレクトリに保存し、管理バックエンドにログインし、キャッシュをクリアして、HTML を更新します。
----------------- ---- ------------------------
上記は動的入力です。静的出力に変更したい場合は、次のようにする必要があります。以下の通り
----- ----------------------------------
ステップ 1: 単一ページを開くチャネル モデルでのドキュメント管理
[ページの追加] をクリックします
上の図に従ってこのような単一ページのファイルを作成しますが、名前を「フルサイト RSS 静的出力」にすることはできません。英語名です。クリックして保存し、その他は無視してください。
最後にキャッシュを更新するのがベストです。rss 購読については、dede の元のファイル rssmap.html を書き直しました。元のファイルはデータ フォルダーに上書きされます
参考までに、人気のある RSS サブスクリプション コードをいくつか紹介します
<p class="indexContent"> <p><a href="http://www.google.com/reader/view/feed/http://www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/rss/o_sub_google.gif" style="border:0px;" alt="通过Google订阅本站" /></a></p> <p><a href="http://www.zhuaxia.com/add_channel.php?url=www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/o_sub_zhuaxia.gif" style="border:0px;" alt="通过抓虾订阅本站" /></a></p>DreamWeaver コンテンツ管理システム
<p><a href="http://www.xianguo.com/subscribe.php?url=www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/rss/o_sub_xianguo.gif" style="border:0px;" alt="通过鲜果订阅本站" /></a></p> <p><a href="http://www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/rss/o_sub_hexun.gif" style="border:0px;" alt="通过和讯博揽订阅本站" /></a></p>
<p><a href="http://add.my.yahoo.com/rss?url=www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/rss/o_sub_myyahoo.gif" style="border:0px;" alt="通过雅虎订阅本站" /></a></p>この記事は DreamWeaver
<p><a href="http://reader.yodao.com/#url=http://www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/rss/o_yodaoresbutton.gif" style="border:0px;" alt="通过有道订阅本站" /></a></p> <p><a href="http://www.bloglines.com/sub/http://www.shsui.cn/rss.xml" target="_blank" rel="nofollow"><img src="images/rss/o_sub_bloglines.gif" style="border:0px;" alt="通过BlogLines订阅本站" /></a></p> </p>からのものです。
以上がRSS フルサイト静的出力と RSS サブスクリプション (dedecms) の手順の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。