<?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>Zenoven 自由人 &#187; PHP</title>
	<atom:link href="http://www.zenoven.com/category/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zenoven.com</link>
	<description>有技术 有生活</description>
	<lastBuildDate>Tue, 27 Jul 2010 14:06:13 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>inove主题链接两列显示方法</title>
		<link>http://www.zenoven.com/technology/php/2010051301.html</link>
		<comments>http://www.zenoven.com/technology/php/2010051301.html#comments</comments>
		<pubDate>Wed, 05 May 2010 08:23:44 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[iNove]]></category>
		<category><![CDATA[wp_list_bookmarks]]></category>
		<category><![CDATA[两列]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[友情链接]]></category>
		<category><![CDATA[链接]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/2010051301.html</guid>
		<description><![CDATA[<p>之前我已经对inove主题sidebar(侧边栏)上面的链接显示做了修改，可以让链接分两列显示，但是之前用的那个方法里面用的是id，这样的话，如果sidebar想要有多个分开的链接目录（比如你的链接有3个分类），那么这样就是错误的，因为一个页面只能有一个ID（需要注意的是，我已经对inove的主题的sidebar做了比较大的修改，原来的sidebar有4个widget，我已经修改为了2个，而且链接和分类目录已经不是左右并列显示了）。</p>
<p>开始想的比较简单，直接把ID改成class，然后style.css再把“#”换成“. ”就行了，不过这很快就被验证是不行的，因为原来的那个CSS里面嵌套的DIV UL比较乱，写的很不规范，那就自己动手改规范吧。</p>
<p>我的sidebar显示有两个链接分类，还有一个组织活动（这个没有加到链接里面，是我在sidebar里面直接写代码的）。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010051301.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>之前我已经对inove主题sidebar(侧边栏)上面的链接显示做了修改，可以让链接分两列显示，但是之前用的那个方法里面用的是id，这样的话，如果sidebar想要有多个分开的链接目录（比如你的链接有3个分类），那么这样就是错误的，因为一个页面只能有一个ID（需要注意的是，我已经对inove的主题的sidebar做了比较大的修改，原来的sidebar有4个widget，我已经修改为了2个，而且链接和分类目录已经不是左右并列显示了）。</p>
<p>开始想的比较简单，直接把ID改成class，然后style.css再把“#”换成“. ”就行了，不过这很快就被验证是不行的，因为原来的那个CSS里面嵌套的DIV UL比较乱，写的很不规范，那就自己动手改规范吧。</p>
<p>我的sidebar显示有两个链接分类，还有一个组织活动（这个没有加到链接里面，是我在sidebar里面直接写代码的）。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010051301.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/2010051301.html/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>typecho按分类显示文章标题颜色实战</title>
		<link>http://www.zenoven.com/technology/php/2010041290.html</link>
		<comments>http://www.zenoven.com/technology/php/2010041290.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 05:31:06 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[typecho]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[分类]]></category>
		<category><![CDATA[文章标题]]></category>
		<category><![CDATA[颜色]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/2010041290.html</guid>
		<description><![CDATA[<p>今天想把我用typecho搭建的一个站的文章标题颜色按照分类来显示，也就是不同分类，文章标题的颜色就会不同，效果可以查看<a href="http://www.jingang.org">www.jingang.org</a></p>
<p>刚开始想用&lt;?php if ($this-&gt;is('category','news')): ?&gt; ，但是想了下，这个只是判断当前页面是不是news分类下面的，并不能达到我的要求，事实也证明我用此判断然后输出样式没有成功。</p>
<p>那怎么搞呢？typecho群里的宅给我提醒了，“ 直接class="&lt;?php echo 分类缩略字 ?&gt;" ”，试了下 &lt;?php $this-&gt;category(','); ?&gt; 不行，因为那个直接就输出分类的链接了。不过答案很快就给我找到了，&lt;?php echo $this-&gt;category; ?&gt; 就可以了。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041290.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>今天想把我用typecho搭建的一个站的文章标题颜色按照分类来显示，也就是不同分类，文章标题的颜色就会不同，效果可以查看<a href="http://www.jingang.org">www.jingang.org</a></p>
<p>刚开始想用&lt;?php if ($this-&gt;is('category','news')): ?&gt; ，但是想了下，这个只是判断当前页面是不是news分类下面的，并不能达到我的要求，事实也证明我用此判断然后输出样式没有成功。</p>
<p>那怎么搞呢？typecho群里的宅给我提醒了，“ 直接class="&lt;?php echo 分类缩略字 ?&gt;" ”，试了下 &lt;?php $this-&gt;category(','); ?&gt; 不行，因为那个直接就输出分类的链接了。不过答案很快就给我找到了，&lt;?php echo $this-&gt;category; ?&gt; 就可以了。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041290.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/2010041290.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>typecho学习札记</title>
		<link>http://www.zenoven.com/technology/php/2010041285.html</link>
		<comments>http://www.zenoven.com/technology/php/2010041285.html#comments</comments>
		<pubDate>Thu, 22 Apr 2010 06:27:48 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[建站经验]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[typecho]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[札记]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/2010041285.html</guid>
		<description><![CDATA[<p>近日用typecho搭建了一个小站<a title="金刚石资源信息网" href="http://www.jingang.org" target="_self">www.jingang.org</a> （为何不用WP？那个VPS的内存不够大，WP是比较耗资源的，而且WP的速度不是很快，typecho在这方面是很有优势的），但是由于typecho的资料比较少，而且刚试用这个程序，很多都不懂，找了半天解决了一些小问题。</p>
<p>首先是typecho的title我觉得写的不是很好，就找到了默认模板中header.php做了些修改。</p>
<p>原来的title是这样的</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041285.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>近日用typecho搭建了一个小站<a title="金刚石资源信息网" href="http://www.jingang.org" target="_self">www.jingang.org</a> （为何不用WP？那个VPS的内存不够大，WP是比较耗资源的，而且WP的速度不是很快，typecho在这方面是很有优势的），但是由于typecho的资料比较少，而且刚试用这个程序，很多都不懂，找了半天解决了一些小问题。</p>
<p>首先是typecho的title我觉得写的不是很好，就找到了默认模板中header.php做了些修改。</p>
<p>原来的title是这样的</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/2010041285.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/2010041285.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>WordPress增加日志归档和分类页面的方法</title>
		<link>http://www.zenoven.com/life/other/2010011100.html</link>
		<comments>http://www.zenoven.com/life/other/2010011100.html#comments</comments>
		<pubDate>Sun, 10 Jan 2010 16:48:45 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[精华文章]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[分类]]></category>
		<category><![CDATA[归档]]></category>
		<category><![CDATA[方法]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=1100</guid>
		<description><![CDATA[<p>日志归档和分类这两个页面在不少朋友的WordPress里面还是很常见的，通过这两个页面可以让自己和访客更好的了解你的内容，也可以对自己以前的文章进行查看总结。下面就来说下添加这两个页面的方法。</p>
<p><span style="color: #008000;">1、增加日志归档页面</span></p>
<p style="padding-left: 30px;">效果如下面的截图，实际效果可以查看我的这个页面 <a title="文章归档" href="http://www.zenoven.com/tecarchi" target="_blank">文章归档</a>。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010011100.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>日志归档和分类这两个页面在不少朋友的WordPress里面还是很常见的，通过这两个页面可以让自己和访客更好的了解你的内容，也可以对自己以前的文章进行查看总结。下面就来说下添加这两个页面的方法。</p>
<p><span style="color: #008000;">1、增加日志归档页面</span></p>
<p style="padding-left: 30px;">效果如下面的截图，实际效果可以查看我的这个页面 <a title="文章归档" href="http://www.zenoven.com/tecarchi" target="_blank">文章归档</a>。</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010011100.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/2010011100.html/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>细节 我们可以关注更多一些</title>
		<link>http://www.zenoven.com/life/other/2010011091.html</link>
		<comments>http://www.zenoven.com/life/other/2010011091.html#comments</comments>
		<pubDate>Sat, 09 Jan 2010 07:08:26 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[iNove]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[导航]]></category>
		<category><![CDATA[细节]]></category>
		<category><![CDATA[网页]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=1091</guid>
		<description><![CDATA[<p>细节决定成败，我觉得很有道理，我也不准备在这个问题上多说什么，只是拿这句话用用而已。</p>
<p>我的主题一直就是mg12的iNove，从开始用到现在几乎是每个能改的地方我都改了，有的朋友问我要我的改装版，不是我不愿给（我曾经给过一些朋友的），是因为很多改动的地方我自己都不记得了，更是因为许多地方我把那些动态的函数换成了静态的HTML代码，删删减减，如果你不是太懂网页，直接拿去用恐怕是很难的。</p>
<p>下面是我的一些细节的改动</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010011091.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>细节决定成败，我觉得很有道理，我也不准备在这个问题上多说什么，只是拿这句话用用而已。</p>
<p>我的主题一直就是mg12的iNove，从开始用到现在几乎是每个能改的地方我都改了，有的朋友问我要我的改装版，不是我不愿给（我曾经给过一些朋友的），是因为很多改动的地方我自己都不记得了，更是因为许多地方我把那些动态的函数换成了静态的HTML代码，删删减减，如果你不是太懂网页，直接拿去用恐怕是很难的。</p>
<p>下面是我的一些细节的改动</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/2010011091.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/2010011091.html/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>分享一份WordPress主题制作教程</title>
		<link>http://www.zenoven.com/life/other/200912891.html</link>
		<comments>http://www.zenoven.com/life/other/200912891.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 15:16:22 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[制作]]></category>
		<category><![CDATA[教程]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=891</guid>
		<description><![CDATA[<p><span style="color: #0099cb;">我一直以来都是用的inove主题，感觉这个主题真的很强大。不过再强大的功能，不是自己写的，总是想改造，给他整容，对模板的sidebar header还有footer等一一改造，之前也没有看过什么教程，完全是靠自己的一点点php及CSS，现在渐渐的竟有种自己写主题的念头了，呵呵，但是由于并没有写过主题，还是先看下这方面的教程为好。</span></p>
<p style="text-align: center;"><img class="size-full wp-image-895  aligncenter" title="wp_theme" src="http://www.zenoven.com/wp-content/2009/12/wp_theme.jpg" alt="wp_theme" width="467" height="369" /></p>
<p><span style="color: #0099cb;">这份教程是</span><a href="http://fairyfish.net/2007/06/04/so-you-want-to-create-wordpress-themes-huh/" target="_blank">我爱水煮鱼</a><span style="color: #0099cb;">（这个链接到Denis的WP主题制作页面）翻译，由</span><a href="http://Wpdesigner.com" target="_blank">Wpdesigner.com</a><span style="color: #0099cb;">站长编写的，PDF中文版，觉得还不错，分享给大家了！（这份教程对于有HTML PHP CSS基础的朋友应该非常容易看懂，我几分钟就看了10多页呵，当然网上还有很多教程，这个也许不是最好的，但是对于众多WP菜鸟来说已经很不错了。。。）</span></p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200912891.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #0099cb;">我一直以来都是用的inove主题，感觉这个主题真的很强大。不过再强大的功能，不是自己写的，总是想改造，给他整容，对模板的sidebar header还有footer等一一改造，之前也没有看过什么教程，完全是靠自己的一点点php及CSS，现在渐渐的竟有种自己写主题的念头了，呵呵，但是由于并没有写过主题，还是先看下这方面的教程为好。</span></p>
<p style="text-align: center;"><img class="size-full wp-image-895  aligncenter" title="wp_theme" src="http://www.zenoven.com/wp-content/2009/12/wp_theme.jpg" alt="wp_theme" width="467" height="369" /></p>
<p><span style="color: #0099cb;">这份教程是</span><a href="http://fairyfish.net/2007/06/04/so-you-want-to-create-wordpress-themes-huh/" target="_blank">我爱水煮鱼</a><span style="color: #0099cb;">（这个链接到Denis的WP主题制作页面）翻译，由</span><a href="http://Wpdesigner.com" target="_blank">Wpdesigner.com</a><span style="color: #0099cb;">站长编写的，PDF中文版，觉得还不错，分享给大家了！（这份教程对于有HTML PHP CSS基础的朋友应该非常容易看懂，我几分钟就看了10多页呵，当然网上还有很多教程，这个也许不是最好的，但是对于众多WP菜鸟来说已经很不错了。。。）</span></p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200912891.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/200912891.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>再次对WordPress表情插件动刀</title>
		<link>http://www.zenoven.com/life/other/200911815.html</link>
		<comments>http://www.zenoven.com/life/other/200911815.html#comments</comments>
		<pubDate>Sun, 15 Nov 2009 16:18:46 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[无插件]]></category>
		<category><![CDATA[表情]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=815</guid>
		<description><![CDATA[<p>以前我用的是mg12的highslide4wp这个插件(我本来用这个插件的意图是添加图片放大缩小功能的，后来也基本上没有)，里面有添加表情这个功能。</p>
<p>但是最近用的时候发现了问题，而且我也是希望插件越少越好，便删除之。。。那么该如何加入表情呢？搜索！</p>
<p>果然，方法很快出来了，下载个smilely.zip ，然后解压smilely.php到你主题所在的路径，然后在在 comments.php的textarea之前添加下面的代码(原文来自于 <a href="http://www.happyet.com.cn/archives/243" target="_blank">不亦乐乎</a> ，其中说的guestcomments.php在我的主题中没有)</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200911815.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>以前我用的是mg12的highslide4wp这个插件(我本来用这个插件的意图是添加图片放大缩小功能的，后来也基本上没有)，里面有添加表情这个功能。</p>
<p>但是最近用的时候发现了问题，而且我也是希望插件越少越好，便删除之。。。那么该如何加入表情呢？搜索！</p>
<p>果然，方法很快出来了，下载个smilely.zip ，然后解压smilely.php到你主题所在的路径，然后在在 comments.php的textarea之前添加下面的代码(原文来自于 <a href="http://www.happyet.com.cn/archives/243" target="_blank">不亦乐乎</a> ，其中说的guestcomments.php在我的主题中没有)</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200911815.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/200911815.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>WordPress2.8.6升级失败及解决实战</title>
		<link>http://www.zenoven.com/life/other/200911810.html</link>
		<comments>http://www.zenoven.com/life/other/200911810.html#comments</comments>
		<pubDate>Sun, 15 Nov 2009 09:51:30 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[WordPress2.8.6]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[WP2.8.6]]></category>
		<category><![CDATA[升级]]></category>
		<category><![CDATA[失败]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=810</guid>
		<description><![CDATA[<p>这几天WordPress又有了新版本的，目前最新的是WordPress2.8.6，我之前的是2.8.5，官方的说的是主要更新了两个安全漏洞，下面是官方的原文:</p>
<blockquote><p>2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is recommended.</p>
<p>The first problem is an XSS vulnerability in Press This discovered by Benjamin Flesch.  The second problem, discovered by Dawid Golunski, is an issue with sanitizing uploaded file names that can be exploited in certain Apache configurations. Thanks to Benjamin and Dawid for finding and reporting these.</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200911810.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>这几天WordPress又有了新版本的，目前最新的是WordPress2.8.6，我之前的是2.8.5，官方的说的是主要更新了两个安全漏洞，下面是官方的原文:</p>
<blockquote><p>2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is recommended.</p>
<p>The first problem is an XSS vulnerability in Press This discovered by Benjamin Flesch.  The second problem, discovered by Dawid Golunski, is an issue with sanitizing uploaded file names that can be exploited in certain Apache configurations. Thanks to Benjamin and Dawid for finding and reporting these.</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200911810.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/200911810.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WP的问题还是很多很多。。。一个小问题我都解决不了</title>
		<link>http://www.zenoven.com/life/other/200910715.html</link>
		<comments>http://www.zenoven.com/life/other/200910715.html#comments</comments>
		<pubDate>Mon, 26 Oct 2009 16:24:23 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[本站记实]]></category>
		<category><![CDATA[杂记]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[不显示]]></category>
		<category><![CDATA[链接]]></category>
		<category><![CDATA[问题]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/?p=715</guid>
		<description><![CDATA[<p>一个朋友新建的页面调用链接函数代码，但是链接没了，比如截图中的年少的故乡和zenoven的博客，就是说那些文字没有加上链接，跟平常的文字一样，很郁闷啊。</p>
<p><a href="http://www.zenoven.com/wp-content/2009/10/question1.jpg" target="_blank"><img class="aligncenter size-full wp-image-716" title="question1" src="http://www.zenoven.com/wp-content/2009/10/question1.jpg" alt="question1" width="344" height="122" /></a></p>
<p>链接代码我用的下面</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200910715.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>一个朋友新建的页面调用链接函数代码，但是链接没了，比如截图中的年少的故乡和zenoven的博客，就是说那些文字没有加上链接，跟平常的文字一样，很郁闷啊。</p>
<p><a href="http://www.zenoven.com/wp-content/2009/10/question1.jpg" target="_blank"><img class="aligncenter size-full wp-image-716" title="question1" src="http://www.zenoven.com/wp-content/2009/10/question1.jpg" alt="question1" width="344" height="122" /></a></p>
<p>链接代码我用的下面</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/life/other/200910715.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/life/other/200910715.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>修改iNove主题默认导航菜单 同时显示分类目录和页面</title>
		<link>http://www.zenoven.com/technology/php/200910628.html</link>
		<comments>http://www.zenoven.com/technology/php/200910628.html#comments</comments>
		<pubDate>Fri, 09 Oct 2009 16:56:12 +0000</pubDate>
		<dc:creator>自由人</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[iNove]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[分类]]></category>
		<category><![CDATA[导航]]></category>
		<category><![CDATA[目录]]></category>
		<category><![CDATA[页面]]></category>

		<guid isPermaLink="false">http://www.zenoven.com/php/200910628.html</guid>
		<description><![CDATA[<p>iNove主题默认的导航菜单好看是好看，但是感觉用的人实在太多，而且我想要同时显示分类目录和页面，这在原来的设置下是没法实现的，只能改代码了。</p>
<p>原来的inove/templates/header里是设置默认只显示页面或是显示分类，我要的是都显示，开始想把判断语句去掉，只剩两个函数wp_list_pages 和wp_list_categories 。这样试过后发现显示会有错位，另外IE下和FireFox下效果也不一样，只能再重新修改了。</p>
<p>下面是inove/templates/header里面我现在的导航栏的代码(搜索框还没修改好，暂时未加上)</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/200910628.html' rel="nofollow">[阅读全文...]</a></p>]]></description>
			<content:encoded><![CDATA[<p>iNove主题默认的导航菜单好看是好看，但是感觉用的人实在太多，而且我想要同时显示分类目录和页面，这在原来的设置下是没法实现的，只能改代码了。</p>
<p>原来的inove/templates/header里是设置默认只显示页面或是显示分类，我要的是都显示，开始想把判断语句去掉，只剩两个函数wp_list_pages 和wp_list_categories 。这样试过后发现显示会有错位，另外IE下和FireFox下效果也不一样，只能再重新修改了。</p>
<p>下面是inove/templates/header里面我现在的导航栏的代码(搜索框还没修改好，暂时未加上)</p> <p><a style="float:right;font-size:13px;font-weight:bold;margin-right:5px;" href='http://www.zenoven.com/technology/php/200910628.html' rel="nofollow">[阅读全文...]</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zenoven.com/technology/php/200910628.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>
