<?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>SUNS &#187; wordpress</title>
	<atom:link href="http://www.vincent2008.org/category/%e7%bd%91%e9%a1%b5%e8%ae%be%e8%ae%a1/wordpress-%e7%bd%91%e9%a1%b5%e8%ae%be%e8%ae%a1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vincent2008.org</link>
	<description>Light My Life</description>
	<lastBuildDate>Tue, 17 Aug 2010 08:45:55 +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>INOVE模板问题</title>
		<link>http://www.vincent2008.org/2009/03/08/inove-bug/</link>
		<comments>http://www.vincent2008.org/2009/03/08/inove-bug/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 04:47:53 +0000</pubDate>
		<dc:creator>vincent</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[inove]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.vincent2008.org/?p=429</guid>
		<description><![CDATA[今天换了个INOVE模板,发现其内置的mate keywords 和 meta description不起作用 解决方法: 把网站目录/wp-content/themes/inove/templates/star.php里的 &#60;?php if (is_home()) { $description = $options['description']; $keywords = $options['keywords']; } else if (is_single()) { $description =  $post-&#62;post_title; $keywords = &#8220;&#8221;; $tags = wp_get_post_tags($post-&#62;ID); foreach ($tags as $tag ) { $keywords = $keywords . $tag-&#62;name . &#8220;, &#8220;; } } else if (is_category()) { $description = category_description(); } [...]]]></description>
		<wfw:commentRss>http://www.vincent2008.org/2009/03/08/inove-bug/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>wordpress可视化编辑器恢复正常</title>
		<link>http://www.vincent2008.org/2008/12/18/wordpress-editer/</link>
		<comments>http://www.vincent2008.org/2008/12/18/wordpress-editer/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 16:01:41 +0000</pubDate>
		<dc:creator>vincent</dc:creator>
				<category><![CDATA[95搭8]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress可视化编辑器]]></category>

		<guid isPermaLink="false">http://www.vincent2008.org/?p=381</guid>
		<description><![CDATA[这个问题之所以不工作，仍然是服务器不支持gzip，或者php没有正确配置。你只需要修改禁用gzip即可。办法是，找到 &#60;WordPress安装目录&#62;/wp-includes/js/tinymce/tiny_mce_config.php 文件，其中第167行： &#8216;compress&#8217; =&#62; true, 修改为&#8217;compress&#8217; =&#62; false, 保存。然后重新打开，可视化编辑器可能重新工作了。]]></description>
		<wfw:commentRss>http://www.vincent2008.org/2008/12/18/wordpress-editer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>成功把WP升级至2.7</title>
		<link>http://www.vincent2008.org/2008/12/13/success-updated-wp-to-27/</link>
		<comments>http://www.vincent2008.org/2008/12/13/success-updated-wp-to-27/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 10:53:34 +0000</pubDate>
		<dc:creator>vincent</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[php免费开源软件]]></category>
		<category><![CDATA[update wp]]></category>
		<category><![CDATA[wp2.7]]></category>
		<category><![CDATA[升级wordpress]]></category>

		<guid isPermaLink="false">http://www.vincent2008.org/?p=360</guid>
		<description><![CDATA[忙了一整天,终于把WP升级至2.7了,在这过程中发现了不少问题,如WP-cache失效,导致页面打开速度过慢,到论坛搜索了N久才搞定.另外2.7的后台也太慢了,又没时间给它减肥,算了,暂时先忍忍吧.]]></description>
		<wfw:commentRss>http://www.vincent2008.org/2008/12/13/success-updated-wp-to-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>加速WP的笨方法</title>
		<link>http://www.vincent2008.org/2008/08/30/speedup-wp/</link>
		<comments>http://www.vincent2008.org/2008/08/30/speedup-wp/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 03:40:29 +0000</pubDate>
		<dc:creator>vincent</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.vincent2008.org/?p=187</guid>
		<description><![CDATA[WP的页眉和页脚都有很多动态调用的代码,我想把它换成直接显示,减少数据库请求次数应该会加快网站打开的速度吧,于是就动手试了一下,效果还真不错,我是电信的2M宽带(连了四台机),大家可以帮我测测速度 http://www.vincent2008.org 废话少说,下面我就把修改之前的代码和修改之后的代码贴出来,供大家参考 页眉: 修改前代码: &#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; &#60;?php language_attributes(); ?&#62;&#62; &#60;head profile=&#8221;http://gmpg.org/xfn/11&#8220;&#62; &#60;meta http-equiv=&#8221;Content-Type&#8221; c /&#62; &#60;link rel=&#8221;alternate&#8221; type=&#8221;application/rss+xml&#8221; title=&#8221;&#60;?php bloginfo(&#8216;name&#8217;); ?&#62; RSS Feed&#8221; href=&#8221;&#60;?php bloginfo(&#8216;rss2_url&#8217;); ?&#62;&#8221; /&#62; &#60;link rel=&#8221;pingback&#8221; href=&#8221;&#60;?php bloginfo(&#8216;pingback_url&#8217;); ?&#62;&#8221; /&#62; &#60;link rel=&#8221;stylesheet&#8221; href=&#8221;&#60;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&#62;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&#62; &#60;link rel=&#8221;stylesheet&#8221; href=&#8221;&#60;?php bloginfo(&#8216;template_url&#8217;); ?&#62;/css/print.css&#8221; type=&#8221;text/css&#8221; media=&#8221;print&#8221; /&#62; &#60;!&#8211;[if IE]&#62;&#60;link rel=&#8221;stylesheet&#8221; href=&#8221;&#60;?php bloginfo(&#8216;template_url&#8217;); [...]]]></description>
		<wfw:commentRss>http://www.vincent2008.org/2008/08/30/speedup-wp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>解决WP在IE查看源码时出现乱码的问题</title>
		<link>http://www.vincent2008.org/2008/08/29/solve-the-problem-with-wp-ie-code-error/</link>
		<comments>http://www.vincent2008.org/2008/08/29/solve-the-problem-with-wp-ie-code-error/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 02:38:52 +0000</pubDate>
		<dc:creator>vincent</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[IE乱码]]></category>

		<guid isPermaLink="false">http://www.vincent2008.org/?p=145</guid>
		<description><![CDATA[昨天搞了一天都搞不好WP在IE里显示乱码的问题,郁闷啊&#8230;不过昨晚睡觉时终于让我想明白问题出在哪里了,问题就出在Get Recent Comments这个插件,哈哈~~~原来偶睡觉时是最容易产生灵感的,嘻嘻&#8230;高兴ing&#8230;&#8230;&#8230;&#8230;&#8230;.. 今天一大早就爬起来弄了(其实是因为今天停水,偶怕没水刷牙所以才早起的;)),当我把Get Recent Comments禁用了之后,奇迹出现了!乱码终于消失了&#8230;哈哈哈哈]]></description>
		<wfw:commentRss>http://www.vincent2008.org/2008/08/29/solve-the-problem-with-wp-ie-code-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
