エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
テーマのindex.phpに <?php // /?xml=onでアクセスすると以下の処理。 if ( isset( $_GET["xml"]) == "o... テーマのindex.phpに <?php // /?xml=onでアクセスすると以下の処理。 if ( isset( $_GET["xml"]) == "on" ) { header('Content-Type: text/xml; charset='.get_option('blog_charset'), true); echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; //query_postsで指定があればなんか指定。 query_posts('〜'); if (have_posts()) : while (have_posts()) : the_post(); ?> 〜書き出したいxmlの内容を書く〜 <? endwhile; else: endif; } else { ?> 〜 いつものindex 〜 <?php } ?> と