<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>tips | Web活メモ帳</title>
	<atom:link href="https://blog.verygoodtown.com/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.verygoodtown.com</link>
	<description>WEB開発者が使える世界の情報を発信します</description>
	<lastBuildDate>Wed, 03 Mar 2010 15:34:29 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.10</generator>
<site xmlns="com-wordpress:feed-additions:1">122803348</site>	<item>
		<title>iPhoneフレンドリーなサイトにするための10の方法</title>
		<link>https://blog.verygoodtown.com/2010/03/iphone-friendly-website-iphone-10-userful-code/</link>
					<comments>https://blog.verygoodtown.com/2010/03/iphone-friendly-website-iphone-10-userful-code/#respond</comments>
		
		<dc:creator><![CDATA[linja]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 02:34:04 +0000</pubDate>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[iPod Touch/iPhone]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[tips]]></category>
		<guid isPermaLink="false">http://blog.verygoodtown.com/?p=2934</guid>

					<description><![CDATA[<p>「10+ useful code snippets to develop iPhone friendly websites」というエントリーよりiPhone/iPod touch用サイトを作成する際の10のTipsのご紹 [&#8230;]</p>
The post <a href="https://blog.verygoodtown.com/2010/03/iphone-friendly-website-iphone-10-userful-code/">iPhoneフレンドリーなサイトにするための10の方法</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" src="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100304-03.jpg" alt="20100304-03" title="20100304-03" width="600" height="360" class="alignnone size-full wp-image-2941" srcset="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100304-03.jpg 600w, https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/03/20100304-03-300x180.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>「<a href="http://www.catswhocode.com/blog/10-useful-code-snippets-to-develop-iphone-friendly-websites" target="_blank">10+ useful code snippets to develop iPhone friendly websites</a>」というエントリーより<strong>iPhone/iPod touch用サイトを作成する際の10のTips</strong>のご紹介。</p>
<p>サーバーサイドでの振り分け処理や、画面の向きの取得方法などなど、いつか使うかもしれないのでメモ的にエントリーです。</p>
<p>詳しくは以下<br />
<span id="more-2934"></span></p>
<h3>JavaScriptでリダイレクト</h3>
<p>iPhone/iPod touchの場合に専用のページにリダイレクトさせます。サーバーサイドのスクリプトを使用できない場合に。</p>
<pre class="brush:js;">
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
    if (document.cookie.indexOf("iphone_redirect=false") == -1) {
        window.location = "http://m.espn.go.com/wireless/?iphone&i=COMR";
    }
}
</pre>
<h3>PHPでリダイレクト</h3>
<p>リダイレクトさせるのは上記と同じですが、こちらはPHPを使用しています。</p>
<pre class="brush:js;">
if(strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'],'iPod')) {
    header('Location: http://yoursite.com/iphone');
    exit();
}
</pre>
<h3>viewportで画面サイズを指定する</h3>
<p>head 要素にタグを入れるだけで、横幅を最適化する事ができます。<br />
viewportについての説明は<a href="http://www.atmarkit.co.jp/fwcr/special/iphone/03.html" target="_blank">@IT</a>に詳しく載っています。</p>
<pre class="brush:xml;">
&lt;meta&nbsp;name=&quot;viewport&quot;&nbsp;content=&quot;width=device-width;&nbsp;initial-scale=1.0;&nbsp;maximum-scale=1.0;&quot;&gt;
</pre>
<h3>独自アイコンの指定</h3>
<p>以下のコードをヘッドに入れる事で、ブックマークされた際にホーム画面にアイコンを表示させる事ができます。<br />
サイズは 57x 57pxでpng形式で保存する必要があります。</p>
<pre class="brush:xml;">
&lt;rel=&quot;apple-touch-icon&quot;&nbsp;href=&quot;images/template/engage.png&quot;/&gt;
</pre>
<h3>自動でフォントサイズが調整されるのを防ぐ</h3>
<p>画面の向きを変えた際に勝手にフォントサイズが調整されます。結構小さくなりすぎる場合などがあるため、変更されないようCSSで指定します。</p>
<pre class="brush:css;">
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
    -webkit-text-size-adjust:none;
}
</pre>
<h3>iPhoneの向きを取得</h3>
<p>iPhoneの画面の向きを取得します。<br />
このサンプルでは、画面の向きによってCSSを切り替えます。</p>
<pre class="brush:js;">
window.onload = function initialLoad() {
    updateOrientation();
}

function updateOrientation(){
    var contentType = "show_";
    switch(window.orientation){
        case 0:
	contentType += "normal";
	break;

	case -90:
	contentType += "right";
	break;

	case 90:
	contentType += "left";
	break;

	case 180:
	contentType += "flipped";
	break;
    }
    document.getElementById("page_wrapper").setAttribute("class", contentType);
}
</pre>
<h3>iPhone/iPod touchにだけ適用するCSS</h3>
<p>メディアタイプを指定する事でiPhone/iPod touchにだけCSSを適用させる事ができます。</p>
<pre class="brush:css;">
@media screen and (max-device-width: 480px){
    /* All iPhone only CSS goes here */
}
</pre>
<h3>画像をiPhone用に最適化する</h3>
<p>iPhone/iPod touchの画面は最大で480pxまで表示する事が可能です。480pxより大きい画像の場合、それ以上大きくならないようにします。</p>
<pre class="brush:css;">
@media screen and (max-device-width: 480px){
    img{
        max-width:100%;
        height:auto;
    }
}</pre>
<h3>デフォルトでツールバーを隠す</h3>
<p>少しでも画面を大きく使えるよう、初期状態でツールバーを非表示にします。</p>
<pre class="brush:js;">
window.addEventListener('load', function() {
    setTimeout(scrollTo, 0, 0, 1);
}, false);
</pre>
<h3>特殊なリンクの指定方法</h3>
<p>電話やSMSを起動させる事ができます。</p>
<pre class="brush:xml;">
&lt;a&nbsp;href=&quot;tel:12345678900&quot;&gt;Call&nbsp;me&lt;/a&gt;
&lt;a&nbsp;href=&quot;sms:12345678900&quot;&gt;Send&nbsp;me&nbsp;a&nbsp;text&lt;/a&gt;
</pre>
<h3>hoverを適用させる</h3>
<p>マウスオーバーという概念が無いので、JavaScriptで指の位置を取得します。</p>
<pre class="brush:js;">
var myLinks = document.getElementsByTagName('a');
for(var i = 0; i < myLinks.length; i++){
   myLinks[i].addEventListener('touchstart', function(){this.className = "hover";}, false);
   myLinks[i].addEventListener('touchend', function(){this.className = "";}, false);
}
</pre>
<p>上記のコードを追加する事で、CSSのhover属性が使用できます。</p>
<pre class="brush:css;">
a:hover, a.hover {
    /* whatever your hover effect is */
}
</pre>The post <a href="https://blog.verygoodtown.com/2010/03/iphone-friendly-website-iphone-10-userful-code/">iPhoneフレンドリーなサイトにするための10の方法</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.verygoodtown.com/2010/03/iphone-friendly-website-iphone-10-userful-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2934</post-id>	</item>
		<item>
		<title>プラグインを使わずjQueryに23の機能をつける方法</title>
		<link>https://blog.verygoodtown.com/2010/02/no-plugin-jquery-tips-24/</link>
					<comments>https://blog.verygoodtown.com/2010/02/no-plugin-jquery-tips-24/#respond</comments>
		
		<dc:creator><![CDATA[linja]]></dc:creator>
		<pubDate>Sun, 28 Feb 2010 12:27:31 +0000</pubDate>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tips]]></category>
		<guid isPermaLink="false">http://blog.verygoodtown.com/?p=2839</guid>

					<description><![CDATA[<p>jQueryにはたくさんのプラグインがあるので、気づけばjsフォルダがものすごいファイル数になっていたりします。今回はプラグインを使わなくても簡単に実装できる機能を「26 cool and useful jQuery t [&#8230;]</p>
The post <a href="https://blog.verygoodtown.com/2010/02/no-plugin-jquery-tips-24/">プラグインを使わずjQueryに23の機能をつける方法</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" src="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/02/20100301-01.jpg" alt="20100301-01" title="20100301-01" width="600" height="89" class="alignnone size-full wp-image-2854" srcset="https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/02/20100301-01.jpg 600w, https://blog.verygoodtown.com/wordpress/wp-content/uploads/2010/02/20100301-01-300x44.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><br />
jQueryにはたくさんのプラグインがあるので、気づけばjsフォルダがものすごいファイル数になっていたりします。今回はプラグインを使わなくても簡単に実装できる機能を「<a href="http://www.opensourcehunter.com/2010/02/27/26-cool-and-usefull-jquery-tips-tricks-solutions/" target="_blank">26 cool and useful jQuery tips, tricks &#038; solutions</a>」というエントリーから紹介します。</p>
<p>詳しくは以下<br />
<span id="more-2839"></span></p>
<h3>1.右クリックを無効にする方法</h3>
<p>右クリックを禁止したい場合などに。コンテキストメニューが非表示になります。 </p>
<pre class="brush:js;">$(document).ready(function(){
    $(document).bind(&quot;contextmenu&quot;,function(e){
        return false;
    });
});</pre>
<h3>2.フォームの初期値を消す方法</h3>
<p>検索フィールドなどに。 </p>
<pre class="brush:js;">$(document).ready(function() {
$(&quot;input.text1&quot;).val(&quot;Enter your search text here&quot;);
   textFill($('input.text1'));
});

function textFill(input){ //input focus text function
 	var originalvalue = input.val();
 	input.focus( function(){
  		if( $.trim(input.val()) == originalvalue ){ input.val(''); }
 	});
 	input.blur( function(){
  		if( $.trim(input.val()) == '' ){ input.val(originalvalue); }
 	});
}</pre>
<h3>3.リンクを新しいウィンドウで開く</h3>
<p>XHTMLでVALIDなページを作る場合「target=”_blank”」は使用できないためjQuery側で_blank属性を追加します。 </p>
<pre class="brush:js;">$(document).ready(function() {

   //外部リンクは全て別ウインドウにする場合
   $('a[href^=&quot;http://&quot;]').attr(&quot;target&quot;, &quot;_blank&quot;);  

   //rel=&quot;external&quot; 属性を追加した場合のみ別ウインドウにする場合
   $(&quot;a[rel='external']&quot;).click(function(){
      this.target = &quot;_blank&quot;;
   });
});

//　使い方　以下のようなリンクを追加します。
&lt;a href=&quot;https://blog.verygoodtown.com&quot; rel=&quot;external&quot;&gt;リンク&lt;/a&gt;</pre>
<h3>4.ブラウザを調べる</h3>
<p>特定のブラウザの場合にだけ処理を指定したい場合に。 </p>
<pre class="brush:js;">$(document).ready(function() {
// Firefox 2以上
if ($.browser.mozilla &amp;&amp; $.browser.version &gt;= &quot;2&quot; ){
	alert(&quot;mozila&quot;);
}

// Safari
if( $.browser.safari ){
	alert(&quot;safari&quot;);
}

// Chrome
if( $.browser.chrome){
	alert(&quot;chrome&quot;);
}

// Camino
if( $.browser.camino){
	alert(&quot;camino&quot;);
}

// Opera
if( $.browser.opera){
	alert(&quot;opera&quot;);
}

// IE6以下
if ($.browser.msie &amp;&amp; $.browser.version &lt;= 6 ){
	alert(&quot;IE6以下&quot;);
}

// IE7以上
if ($.browser.msie &amp;&amp; $.browser.version &gt; 6){
	alert(&quot;IE7以上&quot;);
}
});</pre>
<h3>5.CSSの切り替え</h3>
<p>使用しているCSSを変更します。 </p>
<pre class="brush:js;">$(document).ready(function() {
	$(&quot;a.Styleswitcher&quot;).click(function() {
		//CSSのパスを書き換えます
		$('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));
	});
});


//使い方
//ヘッダーでデフォルトのCSSを読み込みます
&lt;link rel=&quot;stylesheet&quot; href=&quot;default.css&quot; type=&quot;text/css&quot;&gt;


//　以下のようなCSS切り替えのリンクを設置します。
&lt;a href=&quot;#&quot; class=&quot;Styleswitcher&quot; rel=&quot;default.css&quot;&gt;Default Theme&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;Styleswitcher&quot; rel=&quot;red.css&quot;&gt;Red Theme&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;Styleswitcher&quot; rel=&quot;blue.css&quot;&gt;Blue Theme&lt;/a&gt;</pre>
<h3>6.フォントサイズを変更する</h3>
<p>ユーザーがフォントサイズを変更できるようリンクを設定します。 </p>
<pre class="brush:js;">$(document).ready(function() {
  // Reset the font size(back to default)
  var originalFontSize = $('html').css('font-size');
    $(&quot;.resetFont&quot;).click(function(){
    $('html').css('font-size', originalFontSize);
  });
  // Increase the font size(bigger font0
  $(&quot;.increaseFont&quot;).click(function(){
    var currentFontSize = $('html').css('font-size');
    var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*1.2;
    $('html').css('font-size', newFontSize);
    return false;
  });
  // Decrease the font size(smaller font)
  $(&quot;.decreaseFont&quot;).click(function(){
    var currentFontSize = $('html').css('font-size');
    var currentFontSizeNum = parseFloat(currentFontSize, 10);
    var newFontSize = currentFontSizeNum*0.8;
    $('html').css('font-size', newFontSize);
    return false;
  });
});

// 使い方
// 以下のようなリンクを追加します。
&lt;a href=&quot;#&quot; class=&quot;resetFont&quot;&gt;元に戻す&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;increaseFont&quot;&gt;+&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;decreaseFont&quot;&gt;-&lt;/a&gt;</pre>
<h3>7.スムーズリンクを設置する</h3>
<p>ページ内リンクをスムーズに移動させます。 </p>
<pre class="brush:js;">
$(document).ready(function() {
$('a[href*=#]').click(function() {
 if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
 && location.hostname == this.hostname) {
   var $target = $(this.hash);
   $target = $target.length && $target
   || $('[name=' + this.hash.slice(1) +']');
   if ($target.length) {
  var targetOffset = $target.offset().top;
  $('html,body')
  .animate({scrollTop: targetOffset}, 900);
    return false;
   }
  }
  });
});

// 使い方 
// スクロール先を指定します。 
&lt;a&nbsp;id=&quot;top&quot;&nbsp;name=&quot;top&quot;&gt;&lt;/a&gt;&nbsp;
// リンクを設置します。 
&lt;a&nbsp;href=&quot;#top&quot;&gt;go&nbsp;to&nbsp;top&lt;/a&gt;&nbsp;
</pre>
<h3>8.マウス座標を取得する</h3>
<p>マウスカーソルの現在地を取得します。</p>
<pre class="brush:js;">
$(document).ready(function() {
   $("html").mousemove(function(e){
     //X座標とY座標を#XYに書き出します。
    $('#XY').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
  });
});
// 使い方
&lt;div&nbsp;id=&quot;XY&quot;&gt;&lt;/div&gt;
</pre>
<h3>9.要素が空かチェックする</h3>
<p>空の場合の処理を作成する事ができます。</p>
<pre class="brush:js;">
$(document).ready(function() {  
  if (!$('#id').html()) {  
    alert('empty');
  }
});  
</pre>
<h3>10.置換</h3>
<p>要素の中身を書き換えます </p>
<pre class="brush:js;">
$(document).ready(function() { 
   $('#my-id').replaceWith('<div>置換後の文字列</div>');
}); 
</pre>
<h3>11.タイマーのコールバック関数</h3>
<p>時間がたってから何かを動作させたい場合に。</p>
<pre class="brush:js;">
$(document).ready(function() { 
   window.setTimeout(function() { 
      alert('1秒経過');
    }, 1000);
 }); 
</pre>
<h3>12.単語を削除</h3>
<p>特定の単語を削除します。</p>
<pre class="brush:js;">
$(document).ready(function() { 
   var el = $('#my-id'); 
   el.html(el.html().replace(/削除したい単語/ig, &quot;&quot;));
 }); 
</pre>
<h3>13.要素の存在確認</h3>
<p>lengthプロパティで存在確認が取れます。</p>
<pre class="brush:js;">
$(document).ready(function() { 
    if ($('#my-id').length) { 
      alert('存在します。');
    }
 }); 
</pre>
<h3>14.DIVをクリック可能にする</h3>
<p>クリック要素を大きくしたい場合に。</p>
<pre class="brush:js;">
$(document).ready(function() { 
   $(&quot;div&quot;).click(function(){ 
      //aタグから遷移先を自動取得します。 
      window.location=$(this).find(&quot;a&quot;).attr(&quot;href&quot;);
       return false;
    });
}); 
</pre>
<h3>15.画面サイズに合わせてCSSを切り替え</h3>
<p>画面の大きさに合わせて適用するスタイルを切り替えたい場合に。 </p>
<pre class="brush:js;">
$(document).ready(function() {
   function checkWindowSize() {
	if ( $(window).width() > 1200 ) {
		$('body').addClass('large');
	}
	else {
		$('body').removeClass('large');
	}
   }
$(window).resize(checkWindowSize);
});
</pre>
<h3>16.クローンオブジェクト</h3>
<p>オブジェクトのクローンを返します。 </p>
<pre class="brush:js;">
$(document).ready(function() { 
   var cloned = $('#id').clone();
}); 
</pre>
<h3>17.画面の中心</h3>
<p>画面の中心に要素を配置します。</p>
<pre class="brush:js;" name="code">
$(document).ready(function() {
  jQuery.fn.center = function () {
	  this.css("position","absolute");
	  this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
	  this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
	  return this;
  }
  $("#my-id").center();
});
</pre>
<h3>18.独自のセレクタを使用する</h3>
<p>独自のセレクタ拡張で柔軟に対応できる場合があります。<br />
サンプルでは1000px以上のboxクラスはクリックするとアラートが出るようになります。 </p>
<pre class="brush:js;">
$(document).ready(function() { 
   $.extend($.expr[':'], { 
      moreThen1000px: function(a) {
         return $(a).width() &gt; 1000;
       }
    });

   $('.box:moreThen1000px').click(function() { 

      alert('The element that you have clicked is over 1000 pixels wide');
    });
});

//以下の要素をhtmlに追加してクリックしてみてください。 
&lt;div&nbsp;style=&quot;background-color:&nbsp;#ff0000;&nbsp;width:&nbsp;1200px&quot;&nbsp;class=&quot;box&quot;&gt;1200px&lt;/div&gt;
</pre>
<h3>19.要素の数を数える</h3>
<pre class="brush:js;">
$(document).ready(function() { 
   $(&quot;p&quot;).size();
}); 
</pre>
<h3>20.箇条書きの行頭文字を独自文字に</h3>
<p>行頭の文字を画像や独自文字へ変更する事ができます。サンプルは「‒ 」を追加しています。</p>
<pre class="brush:js;">
$(document).ready(function() { 
   $(&quot;ul&quot;).addClass(&quot;Replaced&quot;); 
   $(&quot;ul &gt; li&quot;).prepend(&quot;‒ &quot;);
});

//使い方 
//cssでリストスタイルを無効にするだけです。 
&lt;style&gt;&#160; 
ul.Replaced { list-style : none; } 
&lt;/style&gt; 
</pre>
<h3>21.GoogleでホスティングされているjQueryを使う</h3>
<p>ローカルファイルやサーバー内に設置しなくてもjQueryが使えるようになります。設置方法は2通りあります。</p>
<pre class="brush:js;">
&nbsp;//Example&nbsp;1&nbsp;
&lt;script&nbsp;src=&quot;http://www.google.com/jsapi&quot;&gt;&lt;/script&gt;&lt;script&nbsp;type=&quot;text/javascript&quot;&gt;
google.load(&quot;jquery&quot;,&nbsp;&quot;1.4&quot;);
google.setOnLoadCallback(function()&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;alert('読み込み完了');
});
&lt;/script&gt;
//&nbsp;Example&nbsp;2&nbsp;
&lt;script&nbsp;type=&quot;text/javascript&quot;&nbsp;src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot;&gt;&lt;/script&gt;
</pre>
<h3>22.アニメーションを無効にする</h3>
<p>jQueryのアニメーションを全て無効にします。</p>
<pre class="brush:js;">
$(document).ready(function() { 
   jQuery.fx.off = true;
}); 
</pre>
<h3>23.他のライブラリとの共存</h3>
<p>他のライブラリと同時に使うには別の変数にjQueryを割り当てる事で動作させる事ができます。</p>
<pre class="brush:js;">
$(document).ready(function() { 
   var $jq = jQuery.noConflict();
   $jq('#id').show();
}); 
</pre>
<p>参考になれば幸いです。 </p>The post <a href="https://blog.verygoodtown.com/2010/02/no-plugin-jquery-tips-24/">プラグインを使わずjQueryに23の機能をつける方法</a> first appeared on <a href="https://blog.verygoodtown.com">Web活メモ帳</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.verygoodtown.com/2010/02/no-plugin-jquery-tips-24/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2839</post-id>	</item>
	</channel>
</rss>
