<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>px*blog</title><description>Webで見つけた面白いツール、ブログ、タグなどを紹介していきます。</description><managingEditor>noemail@noemail.org (otogawa)</managingEditor><pubDate>Fri, 16 Oct 2020 07:32:51 GMT</pubDate><generator>Movable Type http://www.sixapart.com/movabletype/</generator><link>http://px.otogawa.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:summary>1pxのずれも許さないコーディングリーダーが、 1pxのずれ以外にも大切なことがあると感じ始めた、それから。</itunes:summary><itunes:subtitle>1pxのずれも許さないコーディングリーダーが、 1pxのずれ以外にも大切なことがあると感じ始めた、それから。</itunes:subtitle><itunes:owner><itunes:email>noemail@noemail.org</itunes:email></itunes:owner><item><title>SSHでの接続方法　WinSCPでの接続方法</title><link>http://px.otogawa.com/sshwinscp.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Fri, 16 Oct 2020 07:32:41 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2020://2.1240</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>▼WinSCPでの接続方法</div><div>＝＝＝＝＝</div><div>転送プロトコル：SFTP（デフォルト）</div><div>ホスト名：XXX.XXX.XXX.XXX</div><div>ポート番号：XXX</div><div>パスワード：空</div><div><br /></div><div>設定→SSH→認証にある「秘密鍵」に以下を指定</div><div>xxxxxxxxxx.ppk</div><div><br /></div><div>ドキュメントルート</div><div>/xxxxxx.jp/public</div><div><br /></div><div>＝＝＝＝＝</div> 
        
    ]]></content:encoded><description>▼WinSCPでの接続方法＝＝＝＝＝転送プロトコル：SFTP（デフォルト）ホスト...</description></item><item><title>フォームの入力フィールド関連一式の書体を指定するサンプル</title><link>http://px.otogawa.com/post_154.html</link><category>css</category><category>fontfamily</category><author>noemail@noemail.org (otogawa)</author><pubDate>Thu, 7 Feb 2019 07:22:38 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2019://2.1234</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>フォームの入力フィールド関連一式の書体を指定するサンプル</div><div><br /></div><div><br />input[type="text"],<br />input[type="mail"],<br />input[type="tel"],<br />input[type="password"],<br />textarea, select{<br />font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体", "Yu Gothic", YuGothic, "メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Arial,Osaka,Sans-Serif<br />}<br /></div>
        
    ]]></content:encoded><description>フォームの入力フィールド関連一式の書体を指定するサンプルinput[type="...</description></item><item><title>Wordpressで「設定」にTOPメッセージ欄を追加</title><link>http://px.otogawa.com/wordpresstop.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Thu, 12 Jul 2018 01:36:03 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2018://2.1227</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>■function.phpに</div><div><br /></div><div>//--------------------------------------------------------</div><div>//一般設定に項目を追加</div><div>//--------------------------------------------------------</div><div>function add_contact_info_field( $whitelist_options ) {</div><div>&nbsp; &nbsp; $whitelist_options['general'][] = 'blog_copyright';</div><div>&nbsp; &nbsp; $whitelist_options['general'][] = 'toppage_message';</div><div>&nbsp; &nbsp; return $whitelist_options;</div><div>}</div><div>add_filter( 'whitelist_options', 'add_contact_info_field' );</div><div><br /></div><div>function regist_contact_info_field() {</div><div>&nbsp; &nbsp; add_settings_field( 'blog_copyright', 'コピーライト', 'display_blog_copyright', 'general' );</div><div>&nbsp; &nbsp; add_settings_field( 'toppage_message', 'トップページのメッセージ', 'display_toppage_message', 'general' );</div><div>}</div><div>add_action( 'admin_init', 'regist_contact_info_field' );</div><div><br /></div><div>function display_blog_copyright() {</div><div>&nbsp; &nbsp; $blog_title = get_option( 'blog_copyright' );</div><div>?&gt;</div><div>&nbsp; &nbsp; &lt;input name="blog_copyright" type="text" id="blog_copyright" value="&lt;?php echo esc_html( $blog_title ); ?&gt;" class="regular-text"&gt;</div><div>&lt;?php</div><div>}</div><div><br /></div><div>function display_toppage_message() {</div><div>&nbsp; &nbsp; $toppage_message = get_option( 'toppage_message' );</div><div>?&gt;</div><div>&nbsp; &nbsp; &lt;input name="toppage_message" type="text" id="toppage_message" value="&lt;?php echo esc_html( $toppage_message ); ?&gt;" class="regular-text"&gt;</div><div>&lt;?php</div><div>}</div><div><br /></div><div><br /></div><div><br /></div><div><br /></div><div>TOPページにメッセージを入れる場合は入力している文字とボックスが表示。</div><div>空だとボックスごと非表示。</div><div>■TOPのテーマに</div><div><br /></div><div>&lt;?php if(get_option('toppage_message')): ?&gt;</div><div>&lt;div&gt;</div><div>&lt;p&gt;&lt;?php echo get_option( 'toppage_message' );?&gt;&lt;/p&gt;</div><div>&lt;/div&gt;</div><div>&lt;?php endif; ?&gt;</div><div><br /></div> 
        
    ]]></content:encoded><description>■function.phpに//------------------------...</description></item><item><title>管理画面　非表示メニューについて</title><link>http://px.otogawa.com/post_153.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Wed, 21 Feb 2018 08:22:21 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2018://2.1225</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>//------------------------------------</div><div>// 管理画面　非表示メニュー</div><div>//------------------------------------</div><div>function remove_menus () {</div><div>&nbsp; &nbsp; if (!current_user_can('administrator')) { //管理者ではない場合</div><div><span style="white-space:pre">	</span>remove_menu_page( 'tools.php' );&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // ツール</div><div><span style="white-space:pre">	</span>remove_menu_page( 'options-general.php' );&nbsp; &nbsp; &nbsp; &nbsp; // 設定</div><div>&nbsp; &nbsp; }</div><div>}</div><div>add_action('admin_menu', 'remove_menus');</div><div><br /></div><div>管理者以外の権限では、設定もツールも見せない。</div><div><br /></div><div>●利用シーン</div><div>特にUser Role Editorプラグインを利用してedit_optionにチェックを入れた場合でも、</div><div>プラグインのメニューだけ表示して、コアなツールや設定は表示したくない場合など。</div> 
        
    ]]></content:encoded><description>//------------------------------------//...</description></item><item><title>wordpress 下書きの場合、公開済みの場合</title><link>http://px.otogawa.com/wordpress_1.html</link><category>wordpress</category><author>noemail@noemail.org (otogawa)</author><pubDate>Thu, 20 Jul 2017 08:01:44 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2017://2.1224</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>&lt;?php if( get_post_status( $post-&gt;ID ) == 'draft') { ?&gt;</div><div>&lt;!-- 下書き記事です --&gt;</div><div>&lt;?php }else{ ?&gt;</div><div>&lt;!-- 公開済み記事です --&gt;</div><div>&lt;?php } ?&gt;</div> 
        
    ]]></content:encoded><description>&amp;lt;?php if( get_post_status( $post-&amp;gt;...</description></item><item><title>Excelでセルにシート名を表示する</title><link>http://px.otogawa.com/excel_1.html</link><category>excel</category><author>noemail@noemail.org (otogawa)</author><pubDate>Tue, 21 Mar 2017 00:02:36 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2017://2.1223</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <span style="color: rgb(66, 66, 66); font-family: &quot;ＭＳ ゴシック&quot;, Osaka－等幅;">=RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND("]",	CELL("filename",A1)))</span> <div><span style="color: rgb(66, 66, 66); font-family: &quot;ＭＳ ゴシック&quot;, Osaka－等幅;"><br /></span></div><div><span style="color: rgb(66, 66, 66); font-family: &quot;ＭＳ ゴシック&quot;, Osaka－等幅;"><br /></span></div><div><span style="color: rgb(66, 66, 66); font-family: &quot;ＭＳ ゴシック&quot;, Osaka－等幅;">▼参照元</span></div><div><font color="#424242" face="ＭＳ ゴシック, Osaka－等幅">https://www.moug.net/tech/exopr/0030051.html</font></div>
        
    ]]></content:encoded><description>=RIGHT(CELL("filename",A1),LEN(CELL("fil...</description></item><item><title>さくらインターネットでWordpressで特定のディレクトリ以下だけHTTPSにしててHTTPにアクセスしたらHTTPSに転送（リダイレクト）されるhtaccessの記述</title><link>http://px.otogawa.com/wordpresshttpshttphttpshtaccess.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Mon, 30 Jan 2017 06:09:01 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2017://2.1222</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>さくらインターネットでWordpressで特定のディレクトリ以下だけHTTPSにしててHTTPにアクセスしたらHTTPSに転送（リダイレクト）されるhtaccessの記述！！<br /><br />が、コレだ！</div><div><br /></div><div>/contact/以下はHTTPSプラグインを使って、https://ｘｘｘ/contact/で表示はされるんだけど、<br />http://ｘｘｘ/contact/でアクセスしても表示されちゃってたせいで、<br />フォームに入力しても確認画面へ進まないとか、一旦リセットされて入力画面に戻っちゃうとかいう不具合が出るので</div><div>https://ｘｘｘ/contact/に転送されるようになりました。</div><div><br /></div><div>RewriteEngine On</div><div>RewriteCond %{REQUEST_URI} ^/contact/</div><div>RewriteCond %{HTTP:X-SAKURA-FORWARDED-FOR} ^$</div><div>RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]</div><div><br /></div><div><br /></div><div><br /></div><div>記述する場所は・・・</div><div><br /></div><div><div>&lt;IfModule mod_rewrite.c&gt;</div><div>RewriteEngine On</div><div>RewriteCond %{HTTP:Authorization} ^(.*)</div><div>RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]</div><div><br /></div><div>▼私はこのあたりに書いたよ</div><div><br /></div><div>RewriteEngine On</div><div>RewriteCond %{REQUEST_URI} ^/contact/</div><div>RewriteCond %{HTTP:X-SAKURA-FORWARDED-FOR} ^$</div><div>RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]</div><div><br /></div><div>&lt;/IfModule&gt;</div></div><div><br /></div><div><br /></div><div>と、ところが、<br />リダイレクトはうまくいったのに、結局のところの入力画面が2回出る（進めない、リセットされて入力に戻る）は直らなかったーーー</div><div><br /></div><div><br /></div><div>ちなみに、こことここを考にしました。<br />http://qiita.com/kaneko_tomo/items/1e49c5459fd84614b4d4</div><div>https://murashun.jp/blog/20150918-01.html#chapter-4</div> 
        
    ]]></content:encoded><description>さくらインターネットでWordpressで特定のディレクトリ以下だけHTTPSに...</description></item><item><title>WordPressをhttps化する方法とさくらサーバーでの注意事項</title><link>http://px.otogawa.com/wordpresshttps.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Fri, 6 Jan 2017 05:48:32 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2017://2.1221</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
         <div>さくらサーバでWP構築したサイトをSSL化したい。</div><div><br /></div><div><a href="http://qiita.com/tabimoba/items/64ef60412abe7ad6f0ac">さくらのレンタルサーバでWordPressサイトを常時SSL化するとリダイレクトループが発生する場合の対処方法</a></div><div><br /></div><div>↑とても親切で、全頁SSL化したいときは一発でした！<br /><br /></div><div><a href="https://ri-c.co.jp/%E3%81%95%E3%81%8F%E3%82%89%E3%82%A4%E3%83%B3%E3%82%BF%E3%83%BC%E3%83%8D%E3%83%83%E3%83%88-%E3%83%A9%E3%83%94%E3%83%83%E3%83%89ssl%E3%83%BBwordpress%E3%81%A7%E5%9B%B0%E3%81%A3%E3%81%9F%E3%81%93/">さくらインターネット ラピッドSSL・WordPressで困ったこと</a></div><div><br /><br />↑全ページではなく、Wordpress HTTPSプラグインを利用して、部分的にSSL化したかったので、下のページのやり方をやったら、CSSやjsのみSSLで読みこめた～！</div><div><br /></div><div><img alt="ssl.jpg" src="http://px.otogawa.com/images/ssl.jpg" width="260" height="200" class="mt-image-none" /></div><div><br /></div><div>SSL Hostのドメインの「www.」をとったら、うまくいった。</div>
        
    ]]></content:encoded><description> さくらサーバでWP構築したサイトをSSL化したい。さくらのレンタルサーバでWo...</description></item><item><title>LINEで送る　のURLはこんなかんじ。</title><link>http://px.otogawa.com/lineurl.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Mon, 19 Dec 2016 07:18:12 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1220</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>&lt;a href="http://line.me/R/msg/text/?【テキストやURL】"&gt;</div><div>このページを友達にLINEで教える。</div><div>&lt;/a&gt;</div><div><br /></div><div><br /></div><div>UTF-8への変換ツールは<br /><a href="http://www.tagindex.com/tool/url.html">http://www.tagindex.com/tool/url.html</a></div> 
        
    ]]></content:encoded><description>&amp;lt;a href="http://line.me/R/msg/text/?【...</description></item><item><title>inputやselect textarea一括で格好よくcss設定したい</title><link>http://px.otogawa.com/inputselect_textareacss.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Mon, 19 Dec 2016 07:17:10 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1219</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <div>/* 入力フィールド共通 */</div><div>select,</div><div>textarea,</div><div>input.tel,</div><div>input[type="url"],</div><div>input[type="file"],</div><div>input[type="text"],</div><div>input[type="email"] {</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>font-size:120%;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>font-family:"メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>width: 96%;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>margin-bottom:1%;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>padding: 1.5%;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>border: 1px solid #000000;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>box-sizing: border-box;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>-moz-border-radius: 5px;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>-webkit-border-radius: 5px;</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>border-radius: 5px;</div><div>}</div><div>/* 電場番号の上下矢印非表示for Chrome */</div><div>input[type=number]::-webkit-inner-spin-button,</div><div>input[type=number]::-webkit-outer-spin-button {</div><div>&nbsp; -webkit-appearance: none;</div><div>&nbsp; margin: 0;</div><div>}</div><div><br /></div> 
        
    ]]></content:encoded><description>/* 入力フィールド共通 */select,textarea,input.tel...</description></item><item><title>スマホサイトをデザインするとき、どのくらいのサイズ（キャンパス）で作成すればいい？ファーストビューは？</title><link>http://px.otogawa.com/post_152.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Mon, 19 Dec 2016 04:48:55 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1218</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        <pre wrap="">iPhone4/4S: 640×960（ファーストビュー）
iPhone5/5S/5C: 640×1136（　〃　）
iPhone6 : 750ｘ1334（　〃　）

なので、
幅640ピクセルでデザイン作成していただけるとちょうど良い感じになります。</pre> 
        
    ]]></content:encoded><description>iPhone4/4S: 640×960（ファーストビュー） iPhone5/5S...</description></item><item><title>カスタム投稿でアイキャッチを使う</title><link>http://px.otogawa.com/post_151.html</link><category>wordpress</category><author>noemail@noemail.org (otogawa)</author><pubDate>Fri, 16 Dec 2016 00:24:28 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1216</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        何度か失敗したので、うまくいったときの記事を引用してメモ。<br /><br /><br /><div>カスタム投稿でアイキャッチを使う方法</div><div><br /></div><div>上の記述をしていても、カスタム投稿ではアイキャッチが利用できませんでした。</div><div><br /></div><div>どうやら、カスタム投稿の設定で、引数？「supports」に『アイキャッチ使えるように』って値を与えてあげないといけないらしい。</div><div><br /></div><div>▼</div><div>'supports' =&gt; array( 'title', 'editor', 'thumbnail')</div><div>これだと、タイトルと編集とアイキャッチ画像。という意味ですね。</div><div><br /></div><div>例えば、『blog』というカスタム投稿タイプでアイキャッチを使えるように設定する場合、</div><div>------------------------------------------------------</div><div>add_action( 'init', 'blog_init' );</div><div>&nbsp;</div><div>function blog_init() {</div><div>&nbsp; &nbsp; $args = array(</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'supports' =&gt; array( 'title', 'editor', 'thumbnail')</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; );</div><div>&nbsp; &nbsp; register_post_type( 'blog', $args );</div><div>}</div><div>------------------------------------------------------<br />これでカスタム投稿でアイキャッチが使えるようになりました。</div><div><br /></div><div>あと注意しないといけないのは、register_post_type()は'init'アクションから呼び出さないといけないということでしょうか。<br /><br /><br />私は「information」という名前のカスタム投稿を追加してて、出来上がりは<br />▼<br /><div>------------------------------------------------------<br />add_action( 'init', 'information_init' );</div><div><br /></div><div>function information_init() {</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>$args = array(</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>'supports' =&gt; array( 'title', 'editor', 'thumbnail')</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>);</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>register_post_type( 'information', $args );</div><div>}<br />------------------------------------------------------<br />supportsを変更したくなりがちだけど、違うみたいね。</div></div><div><br /><br /><br /><br />▼ついでに<br />表示するためのタグも<br /><div>&lt;?php if(get_the_post_thumbnail( $id )): //アイキャッチあれば ?&gt;</div><div>&nbsp; &lt;?php echo get_the_post_thumbnail( $id,'サイズ名' ); ?&gt;</div><div>&nbsp; &lt;?php else:&nbsp;//無い場合の処理&nbsp;?&gt;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &lt;?php endif; ?&gt;</div><br /></div>
        
    ]]></content:encoded><description>何度か失敗したので、うまくいったときの記事を引用してメモ。カスタム投稿でアイキャ...</description></item><item><title>レスポンシブに最適なフォントサイズ</title><link>http://px.otogawa.com/post_150.html</link><category>fontsize</category><author>noemail@noemail.org (otogawa)</author><pubDate>Wed, 14 Dec 2016 01:03:59 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1215</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        文字サイズの単位、迷いますよね～～<br /><br />font-size:2.7vw;<br /><br />↑　vwを使ってから、さらにその子孫に％やemを使えば、<br />相対的に、デバイスサイズに合わせて伸び縮みしてくれます。
        
    ]]></content:encoded><description>文字サイズの単位、迷いますよね～～font-size:2.7vw;↑　vwを使っ...</description></item><item><title>jquery で、inputのvalueが空の場合、要素を非表示</title><link>http://px.otogawa.com/jquery_inputvalue.html</link><author>noemail@noemail.org (otogawa)</author><pubDate>Thu, 24 Nov 2016 02:40:12 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1210</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        $("ul li:has(input[value==''])").addClass("disnon"); <br /><br />今日かけた、一押しコード！<br />
        
    ]]></content:encoded><description>$("ul li:has(input[value==''])").addClas...</description></item><item><title>PHP を使って現在開いているページの URL をウェブページ上に表示する方法を使って、OGタグに利用</title><link>http://px.otogawa.com/php_url_og.html</link><category>wordpress</category><author>noemail@noemail.org (otogawa)</author><pubDate>Wed, 23 Mar 2016 01:19:51 GMT</pubDate><guid isPermaLink="false">tag:px.otogawa.com,2016://2.1200</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[
        ■PHP を使って現在開いているページの URL をウェブページ上に表示する方法を使って、OGタグに利用
&lt;meta property=&quot;og:url&quot; content=&quot;&lt;?php echo(&quot;http://&quot; . $_SERVER[&quot;HTTP_HOST&quot;] . $_SERVER[&quot;REQUEST_URI&quot;]); ?&gt;&quot; /&gt;<br />


        
    ]]></content:encoded><description>■PHP を使って現在開いているページの URL をウェブページ上に表示する方法...</description></item></channel></rss>