<?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/"
	>

<channel>
	<title>page&#039;s blog &#187; pagemod.cn</title>
	<atom:link href="http://pageblogging.net/category/pagemodcn/feed" rel="self" type="application/rss+xml" />
	<link>http://pageblogging.net</link>
	<description>设计自己的生活````</description>
	<lastBuildDate>Mon, 19 Apr 2010 04:34:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>域名已经更换</title>
		<link>http://pageblogging.net/2009/09/domain-name-has-been-changed.html</link>
		<comments>http://pageblogging.net/2009/09/domain-name-has-been-changed.html#comments</comments>
		<pubDate>Tue, 29 Sep 2009 04:59:45 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[Domain Name]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=371</guid>
		<description><![CDATA[www.pagemod.cn&#8212;&#62;pageblogging.net 帮我 检查 Related Posts更改域名 Copyright © page for page&#039;s blog, 2009. &#124; Permalink &#124; 15 comments Post tags: Domain Name Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>www.pagemod.cn&#8212;&gt;pageblogging.net</p>
<p>帮我 检查</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/09/change-the-domain-name.html" title="更改域名">更改域名</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2009. |
<a href="http://pageblogging.net/2009/09/domain-name-has-been-changed.html">Permalink</a> |
<a href="http://pageblogging.net/2009/09/domain-name-has-been-changed.html#comments">15 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/domain-name" rel="tag">Domain Name</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2009/09/domain-name-has-been-changed.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>PHP判断浏览器种类</title>
		<link>http://pageblogging.net/2009/09/determine-the-browser-type.html</link>
		<comments>http://pageblogging.net/2009/09/determine-the-browser-type.html#comments</comments>
		<pubDate>Fri, 18 Sep 2009 07:42:13 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=358</guid>
		<description><![CDATA[众所周知IE6 在国内占有率奇高，使用者大多数是普通浏览者，即随机看客，是广告点击的有力军。 所以，对自己的站点添加了一个判断，如是IE6 即显示广告。 早先是以 1 &#60;!--[if lte IE 6]&#62;&#60;![endif]--&#62; 的形式来进行的，这种方法一般是模板作者用于调整网页布局而做出的妥协。 如今 这显示广告，涉及到js代码，使得网页结构混乱，不符合xhtml规则，这令本来就喜欢整齐的俺容忍不了。 所以找来google，选择了一个PHP判断语句，先新建了一个ggads.php的文件，里面添加广告代码，接着在网页上添加 1 2 3 4 &#60;?php if&#40;strpos&#40;$_SERVER&#91;'HTTP_USER_AGENT'&#93;, 'MSIE 6'&#41; !== false&#41; include &#40;TEMPLATEPATH . &#34;/ggads.php&#34;&#41;; ?&#62; 这样，就成了。 Related Posts再次解决IE6的问题IE的相关bugphp标签迷惑了IEIE果然很神奇可恶的IE Copyright © page for page&#039;s blog, 2009. &#124; Permalink &#124; 7 comments Post tags: IE, PHP Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>众所周知IE6 在国内占有率奇高，使用者大多数是普通浏览者，即随机看客，是广告点击的有力军。<br />
所以，对自己的站点添加了一个判断，如是IE6 即显示广告。</p>
<p>早先是以</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;&lt;![endif]--&gt;</span></pre></td></tr></table></div>

<p>的形式来进行的，这种方法一般是模板作者用于调整网页布局而做出的妥协。</p>
<p>如今 这显示广告，涉及到js代码，使得网页结构混乱，不符合xhtml规则，这令本来就喜欢整齐的俺容忍不了。<br />
所以找来google，选择了一个PHP判断语句，先新建了一个ggads.php的文件，里面添加广告代码，接着在网页上添加</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>   
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'MSIE 6'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>
<span style="color: #b1b100;">include</span> <span style="color: #009900;">&#40;</span>TEMPLATEPATH <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;/ggads.php&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>这样，就成了。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/01/bug-ie6.html" title="再次解决IE6的问题">再次解决IE6的问题</a></li><li><a href="http://pageblogging.net/2008/10/ie6-bugs.html" title="IE的相关bug">IE的相关bug</a></li><li><a href="http://pageblogging.net/2008/08/ie-ff-opera.html" title="php标签迷惑了IE">php标签迷惑了IE</a></li><li><a href="http://pageblogging.net/2008/06/ie-css-hacks.html" title="IE果然很神奇">IE果然很神奇</a></li><li><a href="http://pageblogging.net/2008/05/kewudeie.html" title="可恶的IE">可恶的IE</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2009. |
<a href="http://pageblogging.net/2009/09/determine-the-browser-type.html">Permalink</a> |
<a href="http://pageblogging.net/2009/09/determine-the-browser-type.html#comments">7 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/ie" rel="tag">IE</a>, <a href="http://pageblogging.net/tag/php" rel="tag">PHP</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2009/09/determine-the-browser-type.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>换theme</title>
		<link>http://pageblogging.net/2009/09/change-the-theme.html</link>
		<comments>http://pageblogging.net/2009/09/change-the-theme.html#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:23:38 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[page-shippou]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=357</guid>
		<description><![CDATA[page-balloon发布大半年啦，现在再换一个自己做的theme，名字叫page-shippou，这个来源于犬夜叉中一个小家伙“七宝”的名字，是它的罗马字拼音。 Related PostsFree WordPress theme page-shippou released Copyright © page for page&#039;s blog, 2009. &#124; Permalink &#124; 21 comments Post tags: page-shippou Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p><a href="http://pageblogging.net/2008/11/page-ballon-released.html" target="_self">page-balloon</a>发布大半年啦，现在再换一个自己做的theme，名字叫page-shippou，这个来源于犬夜叉中一个小家伙“七宝”的名字，是它的罗马字拼音。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/09/page-shippou-released.html" title="Free WordPress theme page-shippou released">Free WordPress theme page-shippou released</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2009. |
<a href="http://pageblogging.net/2009/09/change-the-theme.html">Permalink</a> |
<a href="http://pageblogging.net/2009/09/change-the-theme.html#comments">21 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/page-shippou" rel="tag">page-shippou</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2009/09/change-the-theme.html/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>再次解决IE6的问题</title>
		<link>http://pageblogging.net/2009/01/bug-ie6.html</link>
		<comments>http://pageblogging.net/2009/01/bug-ie6.html#comments</comments>
		<pubDate>Fri, 16 Jan 2009 12:25:09 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=303</guid>
		<description><![CDATA[今天天涯同学告知，单篇文章在IE6下错位，是因为我添加了一段google friend connect代码导致。所以只有再hack一下IE6喽。 添加了一个_display:none 呵呵，IE6的同学大体上不用Google的多。 Related PostsPHP判断浏览器种类IE的相关bugphp标签迷惑了IEIE果然很神奇可恶的IE Copyright © page for page&#039;s blog, 2009. &#124; Permalink &#124; 3 comments Post tags: IE Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>今天<a href="http://www.blogeing.com/" target="_blank">天涯同学</a>告知，单篇文章在IE6下错位，是因为我添加了一段google friend connect代码导致。所以只有再hack一下IE6喽。<br />
添加了一个_display:none<br />
呵呵，IE6的同学大体上不用Google的多。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/09/determine-the-browser-type.html" title="PHP判断浏览器种类">PHP判断浏览器种类</a></li><li><a href="http://pageblogging.net/2008/10/ie6-bugs.html" title="IE的相关bug">IE的相关bug</a></li><li><a href="http://pageblogging.net/2008/08/ie-ff-opera.html" title="php标签迷惑了IE">php标签迷惑了IE</a></li><li><a href="http://pageblogging.net/2008/06/ie-css-hacks.html" title="IE果然很神奇">IE果然很神奇</a></li><li><a href="http://pageblogging.net/2008/05/kewudeie.html" title="可恶的IE">可恶的IE</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2009. |
<a href="http://pageblogging.net/2009/01/bug-ie6.html">Permalink</a> |
<a href="http://pageblogging.net/2009/01/bug-ie6.html#comments">3 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/ie" rel="tag">IE</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2009/01/bug-ie6.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>友链的位置变更</title>
		<link>http://pageblogging.net/2009/01/about-links-2.html</link>
		<comments>http://pageblogging.net/2009/01/about-links-2.html#comments</comments>
		<pubDate>Sat, 10 Jan 2009 03:23:01 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=298</guid>
		<description><![CDATA[各位友链同学，现友链位置变更到内页，请需要在首页展示的同学来招呼一声。 Related Posts关于友链 Copyright © page for page&#039;s blog, 2009. &#124; Permalink &#124; 12 comments Post tags: Links Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>各位友链同学，现友链位置变更到内页，请需要在首页展示的同学来招呼一声。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2008/12/about-links.html" title="关于友链">关于友链</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2009. |
<a href="http://pageblogging.net/2009/01/about-links-2.html">Permalink</a> |
<a href="http://pageblogging.net/2009/01/about-links-2.html#comments">12 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/friendlink" rel="tag">Links</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2009/01/about-links-2.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>关于友链</title>
		<link>http://pageblogging.net/2008/12/about-links.html</link>
		<comments>http://pageblogging.net/2008/12/about-links.html#comments</comments>
		<pubDate>Thu, 25 Dec 2008 10:51:55 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=288</guid>
		<description><![CDATA[各位友链同学， 本blog现在首页友链属于随机输出，等俺解决了部分问题再全部展示。 ^_^ Related Posts友链的位置变更 Copyright © page for page&#039;s blog, 2008. &#124; Permalink &#124; 9 comments Post tags: Links Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>各位友链同学，</p>
<p>本blog现在首页友链属于随机输出，等俺解决了部分问题再全部展示。</p>
<p>^_^</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/01/about-links-2.html" title="友链的位置变更">友链的位置变更</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2008. |
<a href="http://pageblogging.net/2008/12/about-links.html">Permalink</a> |
<a href="http://pageblogging.net/2008/12/about-links.html#comments">9 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/friendlink" rel="tag">Links</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2008/12/about-links.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>添加了Google AdSense</title>
		<link>http://pageblogging.net/2008/12/add-google-adsense.html</link>
		<comments>http://pageblogging.net/2008/12/add-google-adsense.html#comments</comments>
		<pubDate>Tue, 23 Dec 2008 03:24:44 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[google adsense]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=281</guid>
		<description><![CDATA[邪恶地添加了google的ADs，只是为了告诉各位同学，俺这模板也可以随便放置滴。 可是这猪头的不匹配，讓人讨厌，恶心的骗人广告也很多。 单篇文章是文章底部 和 侧栏位置 首页是第一篇文章底部位置，这个添加方法是按照 Kyle Eslick写的《How To: Insert Ads Only After the First Post》，是我看到的方法中最简单的，呵呵^_^ 修改了index.php文件，在 &#60;?php endwhile; ?&#62; 前添加了 &#60;?php if&#40;!$show_ads&#41;&#123; ?&#62; Insert Code Here &#60;?php $show_ads = 1; &#125; ?&#62; Related Posts重新布局了，唉GoogleADs终于取消推介广告 Copyright © page for page&#039;s blog, 2008. &#124; Permalink &#124; 8 comments Post tags: google adsense Domain Name changed to [...]]]></description>
			<content:encoded><![CDATA[<p>邪恶地添加了google的ADs，只是为了告诉各位同学，俺这模板也可以随便放置滴。<br />
可是这猪头的不匹配，讓人讨厌，恶心的骗人广告也很多。</p>
<p>单篇文章是文章底部 和 侧栏位置</p>
<p>首页是第一篇文章底部位置，这个添加方法是按照 <a href="http://kyleeslick.com/" target="_blank">Kyle Eslick</a>写的<a href="http://wphacks.com/how-to-insert-ads-only-after-the-first-post/" target="_blank">《How To: Insert Ads Only After the First Post》</a>，是我看到的方法中最简单的，呵呵^_^</p>
<p>修改了index.php文件，在</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>前添加了</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #000088;">$show_ads</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
Insert Code Here
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$show_ads</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2008/08/reconstruction.html" title="重新布局了，唉">重新布局了，唉</a></li><li><a href="http://pageblogging.net/2008/07/googleads.html" title="GoogleADs终于取消推介广告">GoogleADs终于取消推介广告</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2008. |
<a href="http://pageblogging.net/2008/12/add-google-adsense.html">Permalink</a> |
<a href="http://pageblogging.net/2008/12/add-google-adsense.html#comments">8 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/google-adsense" rel="tag">google adsense</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2008/12/add-google-adsense.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>升级</title>
		<link>http://pageblogging.net/2008/12/update.html</link>
		<comments>http://pageblogging.net/2008/12/update.html#comments</comments>
		<pubDate>Fri, 12 Dec 2008 10:41:16 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[Team Fortress 2]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=272</guid>
		<description><![CDATA[这两天 升级的东东很多嘛，年末了，都赶紧把本年的作业給补完。 Team Fortress2 升级了30多M，这wordpress也要升级到2.7版本，不过，俺还是要再等待更多的白鼠测试，呵呵。 Related Posts加入WordPress官方文档组wordpress主题技巧-添加特有导航栏Team Fortress 2 Sentry Mod作品Skins-TF2好难学习啊Team Fortress 2 Copyright © page for page&#039;s blog, 2008. &#124; Permalink &#124; 13 comments Post tags: Team Fortress 2, update, wordpress Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>这两天 升级的东东很多嘛，年末了，都赶紧把本年的作业給补完。</p>
<p>Team Fortress2 升级了30多M，这wordpress也要升级到2.7版本，不过，俺还是要再等待更多的白鼠测试，呵呵。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/09/join-the-wordpress-documentation-team.html" title="加入WordPress官方文档组">加入WordPress官方文档组</a></li><li><a href="http://pageblogging.net/2009/02/wordpress-design-skill-1.html" title="wordpress主题技巧-添加特有导航栏">wordpress主题技巧-添加特有导航栏</a></li><li><a href="http://pageblogging.net/2008/12/team-fortress-2-sentry-mod.html" title="Team Fortress 2 Sentry Mod作品">Team Fortress 2 Sentry Mod作品</a></li><li><a href="http://pageblogging.net/2008/12/skins-tf2.html" title="Skins-TF2">Skins-TF2</a></li><li><a href="http://pageblogging.net/2008/11/difficult-to-learn.html" title="好难学习啊">好难学习啊</a></li><li><a href="http://pageblogging.net/2008/10/team-fortress-2.html" title="Team Fortress 2">Team Fortress 2</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2008. |
<a href="http://pageblogging.net/2008/12/update.html">Permalink</a> |
<a href="http://pageblogging.net/2008/12/update.html#comments">13 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/team-fortress-2" rel="tag">Team Fortress 2</a>, <a href="http://pageblogging.net/tag/update" rel="tag">update</a>, <a href="http://pageblogging.net/tag/wordpress" rel="tag">wordpress</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2008/12/update.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>更换模板</title>
		<link>http://pageblogging.net/2008/11/change-the-template.html</link>
		<comments>http://pageblogging.net/2008/11/change-the-template.html#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:43:18 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=258</guid>
		<description><![CDATA[换换服装 自己做的，要自己多捧场^_^ 关键词： wordpress &#8220;designed by page&#8221; 按照概率来讲，应该有超过10人使用我的作品了^_^ Related PostsFree WordPress theme diary-k releasedFree WordPress theme page-shippou releasedFree WordPress theme page-tiny released兼容于yo2的page-balloon主题制作也要与时俱进Free WordPress theme page-photo released Copyright © page for page&#039;s blog, 2008. &#124; Permalink &#124; 28 comments Post tags: template, theme Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>换换服装</p>
<p>自己做的，要自己多捧场^_^</p>
<p>关键词：</p>
<p>wordpress &#8220;designed by page&#8221;</p>
<div id="attachment_259" class="wp-caption alignnone" style="width: 459px"><img class="size-medium wp-image-259" title="Google搜索" src="http://pageblogging.net/wp-content/uploads/2008/11/myworks-499x92.jpg" alt="Google搜索" width="449" height="83" /><p class="wp-caption-text">Google搜索</p></div>
<p>按照概率来讲，应该有超过10人使用我的作品了^_^</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2009/10/free-wordpress-theme-diary-k-released.html" title="Free WordPress theme diary-k released">Free WordPress theme diary-k released</a></li><li><a href="http://pageblogging.net/2009/09/page-shippou-released.html" title="Free WordPress theme page-shippou released">Free WordPress theme page-shippou released</a></li><li><a href="http://pageblogging.net/2009/09/page-tiny-released.html" title="Free WordPress theme page-tiny released">Free WordPress theme page-tiny released</a></li><li><a href="http://pageblogging.net/2009/09/compatible-with-yo2.html" title="兼容于yo2的page-balloon">兼容于yo2的page-balloon</a></li><li><a href="http://pageblogging.net/2009/09/theme-design-should-also-with-thetime.html" title="主题制作也要与时俱进">主题制作也要与时俱进</a></li><li><a href="http://pageblogging.net/2009/08/page-photo-released.html" title="Free WordPress theme page-photo released">Free WordPress theme page-photo released</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2008. |
<a href="http://pageblogging.net/2008/11/change-the-template.html">Permalink</a> |
<a href="http://pageblogging.net/2008/11/change-the-template.html#comments">28 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/template" rel="tag">template</a>, <a href="http://pageblogging.net/tag/theme" rel="tag">theme</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2008/11/change-the-template.html/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>备案通过</title>
		<link>http://pageblogging.net/2008/10/icp.html</link>
		<comments>http://pageblogging.net/2008/10/icp.html#comments</comments>
		<pubDate>Fri, 24 Oct 2008 15:34:16 +0000</pubDate>
		<dc:creator>page</dc:creator>
				<category><![CDATA[pagemod.cn]]></category>
		<category><![CDATA[icp]]></category>

		<guid isPermaLink="false">http://pageblogging.net/?p=223</guid>
		<description><![CDATA[恭喜网站备案通过，网站被人偷看两次，才通过。唉。 Random Posts现在还有的问题所谓古迹发现实为谣言关于diary-cute和某些插件的冲突Team Fortress 2摄影作品鲜果认领代码 Copyright © page for page&#039;s blog, 2008. &#124; Permalink &#124; 8 comments Post tags: icp Domain Name changed to http://pageblogging.net]]></description>
			<content:encoded><![CDATA[<p>恭喜网站备案通过，网站被人偷看两次，才通过。唉。</p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://pageblogging.net/2008/05/guale.html" title="挂了">挂了</a></li><li><a href="http://pageblogging.net/2008/08/firefox-icc.html" title="开启firefox的颜色管理功能">开启firefox的颜色管理功能</a></li><li><a href="http://pageblogging.net/2008/08/google-adsense-for-feeds.html" title="Google现在提供feed广告">Google现在提供feed广告</a></li><li><a href="http://pageblogging.net/2008/10/warm-celebration-again.html" title="再次庆祝">再次庆祝</a></li><li><a href="http://pageblogging.net/2008/09/htaccess.html" title="修改了.htaccess文件防盗链">修改了.htaccess文件防盗链</a></li><li><a href="http://pageblogging.net/2008/09/web-color-palette.html" title="网页配色板">网页配色板</a></li></ul><hr />
<p>Copyright © page for <a href="http://pageblogging.net">page&#039;s blog</a>, 2008. |
<a href="http://pageblogging.net/2008/10/icp.html">Permalink</a> |
<a href="http://pageblogging.net/2008/10/icp.html#comments">8 comments</a> 

<br/>
Post tags: <a href="http://pageblogging.net/tag/icp" rel="tag">icp</a><br/>
Domain Name changed to http://pageblogging.net
</p>]]></content:encoded>
			<wfw:commentRss>http://pageblogging.net/2008/10/icp.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
