<?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>Sino Blog&#187; WordPress</title>
	<atom:link href="http://www.sinoblog.org/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sinoblog.org</link>
	<description>蝉噪林逾静, 鸟鸣山更幽</description>
	<lastBuildDate>Fri, 23 Dec 2011 01:52:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>去除WordPress header 的 link 标签 rel 属性</title>
		<link>http://www.sinoblog.org/2009/09/456.html</link>
		<comments>http://www.sinoblog.org/2009/09/456.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 16:00:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Blogtips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=456</guid>
		<description><![CDATA[WordPress 在 2.8 版本之后，增加了几个新的 link 标签 rel 属性，如果要去掉 WordPress 博客 header 部分的这些 rel 属性，可以通过修改主题支持函数(functions.php）来实现。]]></description>
			<content:encoded><![CDATA[<p>WordPress 在 2.8 版本之后，增加了几个新的 link 标签 rel 属性，例如：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">&lt;link rel='index' title='Sino Blog' href='http://www.sinoblog.org' /&gt;</li>
<li>&lt;link rel='start' title='Hello World' href='http://www.sinoblog.org/2007/09/hello-world.html' /&gt;</li>
<li>&lt;link rel='prev' title='QQ邮箱支持域名邮箱个性化邮件服务' href='http://www.sinoblog.org/2009/09/qq-domainmail.html' /&gt;</li></ol></div>
<p>如果要去掉 <a href="http://www.sinoblog.org/tag/wordpress">WordPress</a> 博客 header 部分的这些 rel 属性，可以通过修改主题支持函数(functions.php）来实现，规则是：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">remove_action( $tag, $function_to_add, $priority, $accepted_args );</li></ol></div>
<p>例如，要去掉下面的这些 link 标签：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;WP Engineer RSS Feed&quot; href=&quot;http://www.aliyoga.com/yujia/feed/&quot; /&gt;</li>
<li>&lt;link rel=&quot;alternate&quot; type=&quot;application/atom+xml&quot; title=&quot;WP Engineer Atom Feed&quot; href=&quot;http://www.aliyoga.com/yujia/feed/atom/&quot; /&gt;</li>
<li>&lt;link rel=&quot;pingback&quot; href=&quot;http://www.aliyoga.com/yujia/xmlrpc.php&quot; /&gt;</li>
<li>&lt;link rel=&quot;EditURI&quot; type=&quot;application/rsd+xml&quot; title=&quot;RSD&quot; href=&quot;http://www.aliyoga.com/xmlrpc.php?rsd&quot; /&gt;</li>
<li>&lt;link rel='index' title='WP Engineer' href='http://www.aliyoga.com' /&gt;</li>
<li>&lt;link rel='start' title='Use WordPress 2.7 Offline' href='http://www.aliyoga.com/shop/' /&gt;</li>
<li>&lt;link rel='prev' title='Recents Drafts All Authors' href='http://www.aliyoga.com/bbs/' /&gt;</li></ol></div>
<p>分别对应的 remove_action 代码是：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">remove_action( 'wp_head', 'feed_links_extra', 3 ); // Display the links to the extra feeds such as category feeds</li>
<li>remove_action( 'wp_head', 'feed_links', 2 ); // Display the links to the general feeds: Post and Comment Feed</li>
<li>remove_action( 'wp_head', 'rsd_link' ); // Display the link to the Really Simple Discovery service endpoint, EditURI link</li>
<li>remove_action( 'wp_head', 'wlwmanifest_link' ); // Display the link to the Windows Live Writer manifest file.</li>
<li>remove_action( 'wp_head', 'index_rel_link' ); // index link</li>
<li>remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 ); // prev link</li>
<li>remove_action( 'wp_head', 'start_post_rel_link', 10, 0 ); // start link</li>
<li>remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 ); // Display relational links for the posts adjacent to the current post.</li>
<li>remove_action( 'wp_head', 'wp_generator' ); // Display the XHTML generator that is generated on the wp_head hook, WP version</li></ol></div>
<p>在一个老外的博客看到的，记录一下 <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/09/456.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>不得不启用WordPress Super Cache 插件</title>
		<link>http://www.sinoblog.org/2009/09/451.html</link>
		<comments>http://www.sinoblog.org/2009/09/451.html#comments</comments>
		<pubDate>Wed, 02 Sep 2009 04:00:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=451</guid>
		<description><![CDATA[昨天上午开始，Sino Blog 被挂起，与Lampdrive 服务器管理员Paveo 联系之后得知是因为我的Lampdrive 帐号下的一个站点CPU 资源超标导致，这个情况前不久也出现一次。Paveo 建议我安装WordPress Super Cache 插件，这样也许能解决绝大部分问题。]]></description>
			<content:encoded><![CDATA[<p>昨天上午开始，Sino Blog 被挂起，与Lampdrive 服务器管理员Paveo 联系之后得知是因为我的Lampdrive 帐号下的另外一个站点CPU 资源超标导致，这个情况前不久也出现一次。</p>
<p>到今天下午Sino Blog 才恢复正常，Paveo 建议我安装WordPress Super Cache 插件，这样也许能解决绝大部分问题。</p>
<p>关于<a href="http://www.google.cn/search?q=wp+super+cache">Wp Super Cache</a> 这个插件，网上有很多详细的介绍和使用方法，我这里也就不再赘述了。</p>
<p>如果你的WordPress 博客遇到和我一样因为CPU 资源超标而被挂起的话，不妨试试<strong>Wp Super Cache</strong>。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/09/451.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>通过phpMyAdmin 在数据库中修改WordPress 用户名</title>
		<link>http://www.sinoblog.org/2009/07/443.html</link>
		<comments>http://www.sinoblog.org/2009/07/443.html#comments</comments>
		<pubDate>Thu, 09 Jul 2009 04:00:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[默认分类]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=443</guid>
		<description><![CDATA[地球人都知道，WordPress 默认安装之后的用户名是admin，在WordPress 后台是无法修改admin 这个用户名的，我们可以通过phpmyadmin 在数据库中对用户名进行修改来增强WordPress 博客的安全性。]]></description>
			<content:encoded><![CDATA[<p>地球人都知道，WordPress 默认安装之后的用户名是admin，在WordPress 后台是无法修改admin 这个用户名的，我们可以通过phpmyadmin 在数据库中对用户名进行修改来增强<a href="http://www.sinoblog.org/tag/wordpress">WordPress</a> 博客的安全性。</p>
<p>首先登录phpMyAdmin 管理后台，选择你要修改的WordPress 博客数据库，进入wp_users 数据表，找到user_login 这个ID，然后修改你要的登录名，比如将admin 修改为sinoblog，点击执行，搞定。</p>
<p>以后就可以用你修改之后的用户名登录WordPress 了，密码还是以前的旧密码。</p>
<p>修改之前，记得备份一下 <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/07/443.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>博客升级到WordPress 2.8</title>
		<link>http://www.sinoblog.org/2009/06/431.html</link>
		<comments>http://www.sinoblog.org/2009/06/431.html#comments</comments>
		<pubDate>Fri, 12 Jun 2009 03:00:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[默认分类]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[新闻]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=431</guid>
		<description><![CDATA[WordPress 官方发布了最新的WordPress 2.8 正式版，Matt 老大说2.8 是WordPress 有史以来最牛逼的版本，2.8 版本被命名为"Baker"，以天才演奏家Chet Baker 命名，此版本在主题管理、Widgets、分类系统和整体速度都有了大大的改善，据说修正了790个Bug，增加了180个新特性。]]></description>
			<content:encoded><![CDATA[<p>WordPress 官方发布了最新的WordPress 2.8 正式版，Matt 老大说2.8 是WordPress 有史以来最牛逼的版本。</p>
<p>2.8 版本被命名为&#8221;Baker&#8221;，以天才演奏家Chet Baker 命名，此版本在主题管理、Widgets、分类系统和整体速度都有了大大的改善，据说修正了790个Bug，增加了180个新特性，除此之外添加了一个CodePress 编辑器支持语法高亮，支持语法参考，<a href="http://codex.wordpress.org/Version_2.8">这是WordPress 2.8 更新列表</a>。</p>
<p>我也在第一时间通过WordPress 自带的自动升级功能顺利的将博客升级至2.8。</p>
<p>BTW：WordPress 简体中文版的下载地址是<a href="http://cn.wordpress.org/" target="_blank">http://cn.wordpress.org/</a>。</p>
<p>还有，升级之前可别忘记备份哦 <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/06/431.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 主题推荐: Tembesi theme</title>
		<link>http://www.sinoblog.org/2009/06/427.html</link>
		<comments>http://www.sinoblog.org/2009/06/427.html#comments</comments>
		<pubDate>Sat, 06 Jun 2009 03:00:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=427</guid>
		<description><![CDATA[Tembsi 主题两栏，主题的作者试图让这款主题更适合那些喜欢Helvetica 字体和大号字体的Blogger，也做到尽可能的简洁，所有的这些工作都是为了让你博客的读者获得更加舒服的体验。]]></description>
			<content:encoded><![CDATA[<p>无意间发现这款名为Tembesi 的WordPress 主题（好的东西总是在不经意间被发现的嘛 <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ），感觉不错，推荐推荐。</p>
<p>Tembsi 主题两栏，主题的作者试图让这款主题更适合那些喜欢Helvetica 字体和大号字体的Blogger，也做到尽可能的简洁，所有的这些工作都是为了让你博客的读者获得更加舒服的体验。</p>
<p><img src="http://lh6.ggpht.com/_TsdevqVZdRI/SinrfTuLujI/AAAAAAAAA-k/eETYrb4pjJU/s800/tembesi-theme.jpg" alt="Tembesi theme" width="492" height="800" /></p>
<p><strong>Tembsi 主题特点：</strong></p>
<ul>
<li>大号字体</li>
<li>Helvetica 字体</li>
<li>热门文章</li>
<li>支持Widget</li>
<li>支持嵌套式评论</li>
<li>支持Wordpress 2.7 以上版本</li>
<li>支持125px 广告，需要修改sidebar.php</li>
</ul>
<p><strong>好了，你要的链接在这里</strong>：<a href="http://demo.wpgpl.com/?wptheme=Tembesi" target="_balnk">Tembesi 主题在线测试</a> |  <a href="http://wpgpl.com/download/tembesi.zip">Tembesi 主题下载 (108) </a> |  <a href="http://wpgpl.com/themes/tembesi/" target="_balnk">Tembesi 主题发布页面</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/06/427.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 默认主题Kubrick 修改</title>
		<link>http://www.sinoblog.org/2009/03/391.html</link>
		<comments>http://www.sinoblog.org/2009/03/391.html#comments</comments>
		<pubDate>Sun, 29 Mar 2009 04:00:01 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=391</guid>
		<description><![CDATA[我一直希望能找到一款简洁大方的WordPress 主题，从去年11月份开始使用mg12 的inove 主题到现在，4个多月的时间，自己又出现审美疲劳。另外，最近访问一些朋友博客的时候，一不小心发现主题对上了，inove 使用的人太多了，所以很别扭，就如走在大街上看到对面的人穿的衣服和自己是一样那么别扭。]]></description>
			<content:encoded><![CDATA[<p>我一直希望能找到一款简洁大方的WordPress 主题，从去年11月份开始使用mg12 的inove 主题到现在，4个多月的时间，自己又出现审美疲劳。</p>
<p>另外，最近访问一些朋友博客的时候，一不小心发现主题对上了，inove 使用的人太多了，所以很别扭，就如走在大街上看到对面的人穿的衣服和自己是一样那么别扭。</p>
<p>OK，我又回归到Kubrick 主题了，在这款WordPress 默认的主题上，我可以随心所欲的发挥自己的想象来对它修改，嗯，现在你看到的就是我捣腾之后的Kubrick <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://picasaweb.google.com/lh/photo/9EaCIaRKBJPq6r5g_k1m5Q?feat=embedwebsite"><img src="http://lh6.ggpht.com/_TsdevqVZdRI/Sc7g1KG_l-I/AAAAAAAAA2s/pe8Z7kuZS7M/s800/sinoblog20090329.jpg" alt="WordPress 默认主题Kubrick 修改" width="560" height="350" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/03/391.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>仿Google 搜索的WordPress 主题: Woogle</title>
		<link>http://www.sinoblog.org/2009/03/388.html</link>
		<comments>http://www.sinoblog.org/2009/03/388.html#comments</comments>
		<pubDate>Mon, 23 Mar 2009 04:00:25 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=388</guid>
		<description><![CDATA[一款仿Google Search Engine 的WordPress 主题，一定会让你觉得不可思议，这款主题的名称就是Woogle=WordPress+Google。Woogle 主题两栏，支持Widgets，支持Gravatar，通过 XHTML 和 CSS 验证，在IE6/7、Firefox、Chrom 下测试通过，适用于WordPress 2.5以上的版本。]]></description>
			<content:encoded><![CDATA[<p>一款仿Google Search Engine 的<a href="http://www.sinoblog.org/tag/theme">WordPress 主题</a>，一定会让你觉得不可思议，这款主题的名称就是Woogle=WordPress+Google。</p>
<p>Woogle 主题两栏，支持Widgets，支持Gravatar，通过 XHTML 和 CSS 验证，在IE6/7、Firefox、Chrom 下测试通过，适用于WordPress 2.5 以上的版本。</p>
<p><img src="http://lh4.ggpht.com/_TsdevqVZdRI/ScblIFotMQI/AAAAAAAAA2M/F33oQaMSySw/s800/woogle.jpg" alt="仿Google 搜索的WordPress 主题: Woogle" width="540" height="488" /></p>
<p>我在本地测试了一下，在中文字体页面下的显示效果远不如不如英文字体页面，另外我个人觉得有些DIV 不太合理。</p>
<p>马上到来的4月份愚人节可以试玩一下这款主题 <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://ericulous.com/demo/index.php?wptheme=Woogle">主题演示 </a>| 下载地址请移步至该<a href="http://ericulous.com/2009/03/18/wp-theme-woogle-the-google-search-engine-clone/">主题发布页面</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/03/388.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>对Arthemia 杂志型主题进行修改</title>
		<link>http://www.sinoblog.org/2009/03/384.html</link>
		<comments>http://www.sinoblog.org/2009/03/384.html#comments</comments>
		<pubDate>Thu, 12 Mar 2009 04:00:22 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Blogtips]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=384</guid>
		<description><![CDATA[自从发掘Arthemia 这款WordPress 杂志型，我就对它爱不释手，对于优秀的主题，比如我现在用的inove 主题，我总要不断的修改，最后捣腾成我满意的效果。经常做客Sino Blog 的博友也许知道，原始的inove 主题是灰色调，而过年的时候我把它修改为喜庆的红色调，不久前却又被我修改成当前的绿色调，绿色代表春天嘛。]]></description>
			<content:encoded><![CDATA[<p>自从发掘Arthemia 这款<a href="http://www.sinoblog.org/tag/wordpress">WordPress </a>杂志型，我就对它爱不释手，对于优秀的主题，比如我现在用的<a href="http://www.sinoblog.org/2008/11/inove-wordpress-theme.html">inove 主题</a>，我总要不断的修改，最后捣腾成我满意的效果。经常做客Sino Blog 的博友也许知道，原始的inove 主题是灰色调，而过年的时候我把它修改为喜庆的红色调，不久前却又被我修改成当前的绿色调，绿色代表春天嘛。</p>
<p>前些天浏览新浪博客，发现新浪博客的文章页面sidebar 侧栏由之前居左改为现在的居右布局，而在《<a href="http://www.sinoblog.org/2008/12/the-wordpress-theme-i-wanted.html">我想要的WordPress 主题是这样子</a>》这篇博文中，我就提到我更推崇sidebar 侧栏居左的布局，长河兄的<a href="http://www.10kn.com">10kn.com</a> 亦是如此，。</p>
<p>所以，这次对Arthemia 的修改，主要也是sidebar 侧栏的调整。只要编辑Arthemia 主题下的style.css，将以下给出的left 和right 互换。</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">#headline {</li>
<li>	width:590px;</li>
<li>	float:left;</li>
<li>	background:#fff;</li>
<li>	padding:10px;</li>
<li>	font-size:1.05em;</li>
<li>	line-height:1.5em;</li>
<li>	margin:0;</li>
<li>	}</li>
<li>&nbsp;</li>
<li>&nbsp;</li>
<li>#featured {</li>
<li>	width:300px;</li>
<li>	background:#fff;</li>
<li>	float:right;</li>
<li>	padding:10px 10px 9px 10px;</li>
<li>	}</li>
<li>&nbsp;</li>
<li>&nbsp;</li>
<li>#front-list {</li>
<li>	width:590px;</li>
<li>	background:#fff;</li>
<li>	padding:10px;</li>
<li>	font-size:1.05em;</li>
<li>	line-height:1.75em;</li>
<li>	float:left;</li>
<li>	}</li>
<li>&nbsp;</li>
<li>#sidebar {</li>
<li>	width:320px;</li>
<li>	float:right;</li>
<li>	margin:0px 0px 0px 0px;</li>
<li>	}</li>
<li>&nbsp;</li>
<li>#content {</li>
<li>	width:590px;</li>
<li>	background:#fff;</li>
<li>	padding:10px;</li>
<li>	font-size:1.05em;</li>
<li>	line-height:1.75em;</li>
<li>	float:left;</li>
<li>	min-height:400px;</li>
<li>	}</li></ol></div>
<p>经测试，在IE 7.0/Firefox 3.0/Google Chrome 浏览器，1280*800 分辨率下没有发现错位。就是不知道在IE 6.0 下会不会出问题，因为Sino Blog 使用的inove 在IE 6.0 下导航条右边的搜索栏就有点错位而我还没找到解决方法。</p>
<p>修改之后的Arthemia 杂志型主题可以在<a href="http://www.shisandian.com">十三点瑜伽网站</a>预览 <img src='http://www.sinoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/03/384.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>推荐一款WordPress 杂志型主题: Arthemia</title>
		<link>http://www.sinoblog.org/2009/03/383.html</link>
		<comments>http://www.sinoblog.org/2009/03/383.html#comments</comments>
		<pubDate>Wed, 11 Mar 2009 04:00:40 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=383</guid>
		<description><![CDATA[在给十三点瑜伽网站换主题的时候，发现这款Arthemia 杂志型主题，感觉很不错，所以推荐一下。Arthemia 主题使用之前需要新建名称为"Headline" 和"Featured" 的分类。你可以去十三点瑜伽网站看看，我对Arthemia 主题的颜色重新搭配了一下。]]></description>
			<content:encoded><![CDATA[<p>这两天闲暇的时间比较多，所以又有时间和精力来捣腾<a href="http://www.sinoblog.org/tag/wordpress">WordPress</a>。</p>
<p>在给十三点瑜伽网站换主题的时候，发现这款Arthemia 杂志型<a href="http://www.sinoblog.org/tag/theme">主题</a>，感觉很不错，所以推荐一下。</p>
<p>Arthemia 主题使用之前需要新建名称为&#8221;Headline&#8221; 和&#8221;Featured&#8221; 的分类。</p>
<p>另外，Arthemia 主题还通过index.php 文件下的</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">&lt;?php $display_categories = array(5,6,7,8,11); $i = 1; foreach </li>
<li>&nbsp;</li>
<li>($display_categories as $category) { ?&gt;</li></ol></div>
<p>来实现文章分类的调用。</p>
<p>这是Arthemia 主题预览：</p>
<p><img alt="" src="http://michaelhutagalung.com/wp-content/uploads/2008/05/arthemia-front.jpg" title="WordPress 杂志型主题: Arthemia " class="alignnone" width="501" height="872" /></p>
<p>或者你可以去<a target="_blank" href="http://www.shisandian.com/">十三点瑜伽网站</a>看看，我对Arthemia 主题的颜色重新搭配了一下。</p>
<p>Arthemia 主题更详细的介绍以及下载地址请移步之该主题发布页面，<a target="_blank" href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/">点击进入</a>。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/03/383.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>彻底屏蔽WordPress日志修订功能的方法</title>
		<link>http://www.sinoblog.org/2009/01/364.html</link>
		<comments>http://www.sinoblog.org/2009/01/364.html#comments</comments>
		<pubDate>Fri, 09 Jan 2009 04:00:54 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[博客世界]]></category>
		<category><![CDATA[Blogtips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.sinoblog.org/?p=364</guid>
		<description><![CDATA[关于屏蔽WordPress 日志修订功能Post Revision，网上流行的方法是通过在wp-config.php 文件里面追加一段 define('WP_POST_REVISIONS', false); 代码，可是我发现这个方法在WordPress 2.7 下不能彻底的禁用Post Revision 功能，在WordPress Support 论坛里面我找到了两个屏蔽Post Revision 的方法。]]></description>
			<content:encoded><![CDATA[<p>关于屏蔽WordPress 日志修订功能Post Revision，网上流行的方法是通过在wp-config.php 文件里面追加一段</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">define('WP_POST_REVISIONS', false);</li></ol></div>
<p>代码，可是我发现这个方法在WordPress 2.7 下不能彻底的禁用Post Revision 功能，我的一个使用 /%post_id%/ <a href="http://www.sinoblog.org/2008/11/wordpress-permalink.html">永久链接</a>格式的WordPress 博客就被日志修订功能困扰着。</p>
<p>在WordPress Support 论坛里面找到了两个屏蔽Post Revision 的方法：</p>
<p><strong>方法一：</strong></p>
<p>同样是修改wp-config.php，代码如下：</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">define('WP_POST_REVISIONS', 0);</li>
<li>define('AUTOSAVE_INTERVAL', 600);</li></ol></div>
<p><strong>方法二：</strong></p>
<p>使用Revision Control 插件，这是Revision Control 插件控制台：</p>
<p><img src="http://lh4.ggpht.com/_TsdevqVZdRI/SWatyMkpbiI/AAAAAAAAAhw/4ephsYDmyhM/s800/2008010901.jpg" alt="Revision Control" width="442" height="256" /></p>
<p>Revision Control 插件<a href="http://wordpress.org/extend/plugins/revision-control/">下载地址</a>。</p>
<p>另外，我之前也推荐过一个WP-Cleaner 插件，可以用来<a href="http://www.sinoblog.org/2008/12/wp-cleaner.html">清除已生成WordPress 日志修订</a>。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sinoblog.org/2009/01/364.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

