<?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>網生@誌 &#124; zEUS.&#039;Blog &#187; cms</title>
	<atom:link href="http://zeuscn.net/index.php/archives/tag/cms/feed" rel="self" type="application/rss+xml" />
	<link>http://zeuscn.net</link>
	<description>Not Only Wordpress Template, But Also My Life...</description>
	<lastBuildDate>Tue, 03 Jan 2012 13:20:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>给博客首页增加了一个 Ajax 效果</title>
		<link>http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html</link>
		<comments>http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html#comments</comments>
		<pubDate>Sun, 08 Nov 2009 06:43:39 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WLK]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=713</guid>
		<description><![CDATA[这是一个利用 Ajax 载入页面的特效，在博客首页的文章栏顶部我增加了5个标签按钮，除了第一个“最新文章”外，其余4个分别指向4个分类——“WordPress 研究”、“WordPress 主题”、“WordPress 插件”和“My Life”，点击相应的按钮后，首页文章栏就会在不刷新页面的情况下输出该分类下的文章列表。 这个效果的好处就不用说了，它利用有限的网页空间输出了更多的内容，而且这不是简单的类似侧栏顶部的 TAB 栏切换。侧栏的顶部的 TAB 栏实际上是一次性输出了4个栏目，但是只显示其中一个栏目，其余3个被 display:none 。而这个 Ajax 效果是在点击了标签栏之后才载入页面，也就是说在读者不需要的情况下，页面不会一次载入过多的内容，从而提高了页面载入速度。 这种效果在 WordPress 的 CMS 主题里并不是很常见，但是一旦加入了这种效果，想必一定能给主题添色不少～ 于是我花了2天的时间终于把这个特效搞定了&#8230; 这里要特别感谢下 Jinwen 的一篇指导性的文章！具体的原理和添加方法这里我就暂不作介绍了，有兴趣的朋友可以直接去 Jinwen 那边看介绍。 这个基于 Ajax 的 jQuery 特效加入到 D&#038;Z Theme Pro CP 主题之后很好的解决了展示“分类内容”不足的缺陷，我也会把这个效果正式加入到该主题中，并连同一些其它内容的升级于本月底免费发放给 D&#038;Z Theme Pro CP 付费主题用户们。 另外在 Which is The Next Theme ? 一文中发起了一个投票，最终 WLK 魔兽风格的主题“后程发力”，超过了之前一直排列榜首的 Blue-s ： {democracy:9} [...]]]></description>
			<content:encoded><![CDATA[<p>这是一个利用 Ajax 载入页面的特效，在博客首页的文章栏顶部我增加了5个标签按钮，除了第一个“最新文章”外，其余4个分别指向4个分类——“<a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 研究”、“<a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 主题”、“<a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 插件”和“My Life”，点击相应的按钮后，首页文章栏就会在不刷新页面的情况下输出该分类下的文章列表。</p>
<p>这个效果的好处就不用说了，它利用有限的网页空间输出了更多的内容，而且这不是简单的类似侧栏顶部的 TAB 栏切换。侧栏的顶部的 TAB 栏实际上是一次性输出了4个栏目，但是只显示其中一个栏目，其余3个被 display:none 。而这个 Ajax 效果是在点击了标签栏之后才载入页面，也就是说在读者不需要的情况下，页面不会一次载入过多的内容，从而提高了页面载入速度。</p>
<p>这种效果在 WordPress 的 <a href="http://zeuscn.net/archives/tag/cms" class="st_tag internal_tag" rel="tag" title="标签 cms 下的日志">CMS</a> 主题里并不是很常见，但是一旦加入了这种效果，想必一定能给主题添色不少～ 于是我花了2天的时间终于把这个特效搞定了&#8230; 这里要特别感谢下 <a href="http://www.saywp.com/" target="_blank">Jinwen</a> 的<a href="http://www.saywp.com/wordpress/query-post-method-to-show-my-wordpress-theme-page.html" target="_blank">一篇指导性的文章</a>！具体的原理和添加方法这里我就暂不作介绍了，有兴趣的朋友可以直接去 Jinwen 那边看介绍。</p>
<p>这个基于 Ajax 的 <a href="http://zeuscn.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> 特效加入到 D&#038;Z <a href="http://zeuscn.net/archives/tag/theme" class="st_tag internal_tag" rel="tag" title="标签 Theme 下的日志">Theme</a> Pro CP 主题之后很好的解决了展示“分类内容”不足的缺陷，我也会把这个效果正式加入到该主题中，并连同一些其它内容的升级于本月底免费发放给 <strong>D&#038;Z Theme Pro CP 付费主题用户们</strong>。<br />
<div id="attachment_714" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/11/ajax-load.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/11/ajax-load-300x230.jpg" alt="基于 Ajax 的 jQuery 页面载入" title="点击放大" width="300" height="230" class="size-medium wp-image-714" /></a><p class="wp-caption-text">基于 Ajax 的 jQuery 页面载入</p></div></p>
<p>另外在 <a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html" target="_blank">Which is The Next Theme ?</a> 一文中发起了一个投票，最终 <a href="http://zeuscn.net/archives/tag/wlk" class="st_tag internal_tag" rel="tag" title="标签 WLK 下的日志">WLK</a> 魔兽风格的主题“后程发力”，超过了之前一直排列榜首的 Blue-s ：<br />
{democracy:9}<br />
那么本月我也会把主题制作的中心放在 WLK 这款主题上了，希望能在本月底之前发布这款免费主题 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<div id="attachment_626" class="wp-caption aligncenter" style="width: 186px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/WLK.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/WLK-176x300.jpg" alt="WLK 魔兽风格主题" title="点击放大" width="176" height="300" class="size-medium wp-image-626" /></a><p class="wp-caption-text">WLK 魔兽风格主题</p></div></p>
<p align="right">zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 8日</a>, <a href='http://www.oioq.cn' rel='external nofollow' class='url'>小O</a> writes: 酷毙了！</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 8日</a>, <a href='http://www.life-studio.cn' rel='external nofollow' class='url'>万戈</a> writes: 帅呆了，又有东西可学了</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 8日</a>, <a href='http://louishan.com/' rel='external nofollow' class='url'>Louis Han</a> writes: 不知道是不是展示出来的文章过多，切换标签在浏览器里面会自动上升到最高处</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 8日</a>, <a href='http://neolee.cn' rel='external nofollow' class='url'>老N</a> writes: 期待wlk主题</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 8日</a>, <a href='http://YuJan.com' rel='external nofollow' class='url'>牧狼羊</a> writes: 确实是很不错的效果，赞。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 8日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 这不是文章数量的问题，是我故意做成这种效果的... 锚点自动滚动。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 9日</a>, <a href='http://www.jutoy.net' rel='external nofollow' class='url'>Jutoy</a> writes: 现在AJAX越来越流行了~</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 9日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，近几年 ajax  一直都很流行哦～</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 10日</a>, <a href='http://zhang3.net' rel='external nofollow' class='url'>张三</a> writes: 期待啊，林子~~又是一个狠不错的效果。。。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 10日</a>, <a href='http://www.dizoz.com' rel='external nofollow' class='url'>CHARGER</a> writes: 大哥,你能不能别那么厉害啊.小弟跟不上啊..</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 10日</a>, <a href='http://www.laoliyue.cn' rel='external nofollow' class='url'>笑话老李说</a> writes: 魔兽的那个主题比较帅~~</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 10日</a>, <a href='http://www.jixiaxuegong.com' rel='external nofollow' class='url'>迟墨</a> writes: 挺酷的，没给我试用哦</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 11日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 无需试用，直接等月底的正式版吧 :-)</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 11日</a>, <a href='http://scottie.cn' rel='external nofollow' class='url'>西岸</a> writes: 这个功能很强悍。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 11日</a>, <a href='http://aunsen.com' rel='external nofollow' class='url'>aunsen</a> writes: 郁闷，这个主题适合搞魔兽专题站不适合个人唉！</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 12日</a>, <a href='http://nimen.de' rel='external nofollow' class='url'>小搓板</a> writes: 你太强了。
我对这些都是傻子。、</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十一月 15日</a>, <a href='http://www.onlysb.com' rel='external nofollow' class='url'>最后块烧饼</a> writes: 这功能不错啊， <a href="http://zeuscn.net/archives/tag/dz-theme" class="st_tag internal_tag" rel="tag" title="标签 D&amp;Z Theme 下的日志">D&amp;Z Theme</a> Pro CP越来越强大了！后面那个主题选票WLK竟然胜出了，看来WPer中玩WOW还真不少，zEUS.你做出来后再给主题加个大众化的样式，也不用花多少时间，一举两得。：）期待你新作早日出炉。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 7日</a>, <a href='http://jayzeng.com' rel='external nofollow' class='url'>jayzeng</a> writes: 你好，我下载了jinwen的主题，里面有你提到的AJAX效果
为什么在我本地的WAMP环境里不能正常使用呢
画面一直停留在“读取中”~
望给予解答~谢谢了</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 8日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 被读取的那个页面是否输出正常呢？</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 9日</a>, <a href='http://www.licream.net' rel='external nofollow' class='url'>licream</a> writes: 不错的功能.</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 9日</a>, <a href='http://jayzeng.com' rel='external nofollow' class='url'>jayzeng</a> writes: 是从JINWEN下载的主题，我没有修改过。那个被读取的页面是友情链接。文件最下面的链接输出应该是正常的，会不会是上面的POST传送数据有问题呢？还是其他？</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 9日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 试试把那个传入的文件的内容修改一下
也就是输出友情链接的代码替换成其它的文字，比如 abcd 什么的，然后看是否有输出。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 10日</a>, <a href='http://jayzeng.com' rel='external nofollow' class='url'>jayzeng</a> writes: 改了，还是不行~~</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2009年, 十二月 10日</a>, <a href='http://jayzeng.com' rel='external nofollow' class='url'>jayzeng</a> writes: 解决了，原来是post URL 的路径不对加了一个base  才好了，呵呵</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2010年, 一月 22日</a>, <a href='http://www.kainy.cn/' rel='external nofollow' class='url'>freetao</a> writes: 很酷，很实用的功能。</li><li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">2012年, 一月 17日</a>, <a href='http://www.axiscreations.com/' rel='external nofollow' class='url'>current information technology articles</a> writes: <strong>Recommended Websites...</strong>

[...]below you'll find the link to some sites that we think you should visit[...]...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html">http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html#comments"title="to the comments">发布评论</a>
      </p>
    <p>Copyright©<a href="%%blogurl%%">zEUScn.NET</a>.Some rights reserved.</p>
(Digital Fingerprint:<br /> 05538bd2e0492fe803256b5788cfa6fd)
	<ul class="st-related-posts">
	<li><a href="http://zeuscn.net/archives/2010/05/07/dz-theme-pro-cp-discontinued.html" title="D&#038;Z Theme Pro CP 即日起暂停出售 (2010年, 五月 7日)">D&#038;Z Theme Pro CP 即日起暂停出售</a> (120)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/13/wow_theme_updata.html" title="WOW Theme 08年2月更新 (2008年, 二月 13日)">WOW Theme 08年2月更新</a> (139)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/04/2-0-1-version.html" title="博客版本升级 2.01 (2007年, 十一月 4日)">博客版本升级 2.01</a> (6)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/18/diary-2.html" title="八月十八日 星期一 晴 (2008年, 八月 18日)">八月十八日 星期一 晴</a> (110)</li>
	<li><a href="http://zeuscn.net/archives/2011/08/09/windows2003-iis6-wordpress-and-discuz-static-permalink.html" title="Windows2003 IIS6.0 下 WordPress 和 DiscuzX2 的伪静态实现方法 (2011年, 八月 9日)">Windows2003 IIS6.0 下 WordPress 和 DiscuzX2 的伪静态实现方法</a> (99)</li>
	<li><a href="http://zeuscn.net/archives/2007/09/10/about-blog-seo.html" title="再谈博客和 SEO (2007年, 九月 10日)">再谈博客和 SEO</a> (8)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/31/about-blog-ad.html" title="博客广告的那些事儿 (2008年, 三月 31日)">博客广告的那些事儿</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/14/sth-about-wopus.html" title="Wopus 注册码&#038;文化衫&#038;FQA (2008年, 八月 14日)">Wopus 注册码&#038;文化衫&#038;FQA</a> (32)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/23/ipple-lite-released.html" title="WordPress 主题模板：Ipple Lite (2008年, 三月 23日)">WordPress 主题模板：Ipple Lite</a> (154)</li>
	<li><a href="http://zeuscn.net/archives/2007/04/03/fh-freedom-blue.html" title="wordpress模板 FH Freedom blue 0.2 (2007年, 四月 3日)">wordpress模板 FH Freedom blue 0.2</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Which is The Next Theme ?</title>
		<link>http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html</link>
		<comments>http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 03:35:30 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress模板]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Ipple]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[lapis]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[魔兽世界]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=624</guid>
		<description><![CDATA[前日简单和 Timer 聊了下，我们在今后合力推出付费主题的分工和分成问题上基本达成一致，我相信咱俩以后肯定能继续推出更酷更强大的 WordPress 付费主题。不过在此之前我个人会争取在11月底推出一款免费的 WordPress 主题，想想我已经有1年多的时间没有发布免费主题了，再不做一两款免费主题实在是说不过去，毕竟在 WordPress 的世界里，免费才是王道。另外，用优秀的免费主题积攒人气然后再发布付费主题也不失为一种营销手段 计划中这次发布的免费主题是四选一，其中两款是完成度超过50%的主题，一款是由 Timer 设计的博客风格主题，最后一款是曾经的某个老主题的升级版。至于到底该制作哪一款，现在还没想好，所以就先在这里作个调查 Blue-s 和 WLK 主题： Blue-s 是 Timer 设计的一款 CMS 主题，其实在几个月前我就曾经线上测试过无图片纯 CSS 的版本，这是完成度最高的一款主题，我接下来要做的就是加入背景图片和调试工作，不排除会再继续加入一些新的特效和输出方式。相对来说 Blue-s 的工作量是最小的可能做起来最快。以下是它“简陋”的截图效果： WLK 其实就是魔兽世界第二个资料片“Wrath of the Lich King”的简称，这是一款模仿魔兽世界官方网站的主题，所以效果就不用说了，只是在某些设计上还没想好如何转换成 WordPress 的功能，这款主题在数月前基本上就完成了首页的制作，接下来需要制作内页，虽然有一定的工作量，但是制作思路在脑子里已经存放了很久了，所以做起来应该很快。下面是我从未放出过的首页截图，这次让大家一睹为快： Lapis 是一款 Timer 一年多以前的设计，由于我个人这样那样的原因导致这款主题一直都还没开工&#8230; 虽然是一个没开工的主题，但是 Lapis 是相对最简单的一款主题，标准的博客设计，没有眼花缭乱的设计和复杂的排版，所以制作起来也是相对最容易的： Ipple Ultra Reborn 想必不少朋友都还记得 Ipple Ultra 这款我模范苹果官网风格的 CMS 主题，这款主题算的上是我最成功的主题了，说他成功并不是说它制作得最好，它和 D&#038;Z Theme Pro CP 比起来简直就是小巫见大巫，但是 [...]]]></description>
			<content:encoded><![CDATA[<p>前日简单和 <a href="http://dogorgod.com/blog/" target="_blank">Timer</a> 聊了下，我们在今后合力推出付费主题的分工和分成问题上基本达成一致，我相信咱俩以后肯定能继续推出更酷更强大的 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 付费主题。不过在此之前我个人会争取在11月底推出一款免费的 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 主题，想想我已经有1年多的时间没有发布免费主题了，再不做一两款免费主题实在是说不过去，毕竟在 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 的世界里，免费才是王道。另外，用优秀的免费主题积攒人气然后再发布付费主题也不失为一种营销手段 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>计划中这次发布的免费主题是四选一，其中两款是完成度超过50%的主题，一款是由 <a href="http://dogorgod.com/blog/" target="_blank">Timer</a> 设计的博客风格主题，最后一款是曾经的某个老主题的升级版。至于到底该制作哪一款，现在还没想好，所以就先在这里作个调查 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Blue-s 和 <a href="http://zeuscn.net/archives/tag/wlk" class="st_tag internal_tag" rel="tag" title="标签 WLK 下的日志">WLK</a> 主题：<br />
<strong>Blue-s</strong> 是 <a href="http://dogorgod.com/blog/" target="_blank">Timer</a> 设计的一款 <a href="http://zeuscn.net/archives/tag/cms" class="st_tag internal_tag" rel="tag" title="标签 cms 下的日志">CMS</a> 主题，其实在几个月前我就曾经线上测试过无图片纯 <a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">CSS</a> 的版本，这是完成度最高的一款主题，我接下来要做的就是加入背景图片和调试工作，不排除会再继续加入一些新的特效和输出方式。相对来说 Blue-s 的工作量是最小的可能做起来最快。以下是它“简陋”的截图效果：<br />
<div id="attachment_625" class="wp-caption aligncenter" style="width: 254px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/Blue-s.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/Blue-s-244x300.jpg" alt="Blue-s CMS 风格主题" title="点击放大" width="244" height="300" class="size-medium wp-image-625" /></a><p class="wp-caption-text">Blue-s CMS 风格主题</p></div></p>
<p><strong>WLK</strong> 其实就是魔兽世界第二个资料片“Wrath of the Lich King”的简称，这是一款模仿魔兽世界官方网站的主题，所以效果就不用说了，只是在某些设计上还没想好如何转换成 WordPress 的功能，这款主题在数月前基本上就完成了首页的制作，接下来需要制作内页，虽然有一定的工作量，但是制作思路在脑子里已经存放了很久了，所以做起来应该很快。下面是我从未放出过的首页截图，这次让大家一睹为快：<br />
<div id="attachment_626" class="wp-caption aligncenter" style="width: 186px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/WLK.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/WLK-176x300.jpg" alt="WLK 魔兽风格主题" title="点击放大" width="176" height="300" class="size-medium wp-image-626" /></a><p class="wp-caption-text">WLK 魔兽风格主题</p></div></p>
<p><strong><a href="http://zeuscn.net/archives/tag/lapis" class="st_tag internal_tag" rel="tag" title="标签 lapis 下的日志">Lapis</a></strong> 是一款 <a href="http://dogorgod.com/blog/" target="_blank">Timer</a> 一年多以前的设计，由于我个人这样那样的原因导致这款主题一直都还没开工&#8230; 虽然是一个没开工的主题，但是 Lapis 是相对最简单的一款主题，标准的博客设计，没有眼花缭乱的设计和复杂的排版，所以制作起来也是相对最容易的：<br />
<div id="attachment_627" class="wp-caption aligncenter" style="width: 297px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/Lapis-index.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/Lapis-index-287x300.jpg" alt="Lapis 标准博客风格主题" title="点击放大" width="287" height="300" class="size-medium wp-image-627" /></a><p class="wp-caption-text">Lapis 标准博客风格主题</p></div></p>
<p><strong><a href="http://zeuscn.net/archives/tag/ipple" class="st_tag internal_tag" rel="tag" title="标签 Ipple 下的日志">Ipple</a> Ultra Reborn</strong> 想必不少朋友都还记得 <a href="http://zeuscn.net/archives/2008/03/23/ipple-utral-released.html" target="_blank">Ipple Ultra</a> 这款我模范苹果官网风格的 CMS 主题，这款主题算的上是我最成功的主题了，说他成功并不是说它制作得最好，它和 <a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&#038;Z Theme Pro CP</a> 比起来简直就是小巫见大巫，但是 Ipple Ultra 在当年国人制作 WordPress 主题风潮早期阶段为我打下了非常坚实的基础，也为我营造了良好的口碑，打响了一定的知名度，使得我之后推出的主题也都备受不少 WordPress 中文用户的关注，当然了，也帮助我结识了不少朋友 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  如今我的制作水品相比一年半以前已经有了不小的提升，所以打算重新打造这款“经典”主题，加入时下流行的 <a href="http://zeuscn.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> 并完善主题代码，优化 CSS 和 <a href="http://zeuscn.net/archives/tag/seo" class="st_tag internal_tag" rel="tag" title="标签 SEO 下的日志">SEO</a> 等等。即使11月份没有选择重制这款主题，但它也会是我今后的制作重点！<br />
<div class="wp-caption aligncenter" style="width: 310px"><img alt="Ipple Ultra Reborn" src="http://zeuscn.net/wp-content/themes/ipple/screenshot.gif" title="Ipple Ultra Reborn" width="300" height="240" /><p class="wp-caption-text">Ipple Ultra Reborn</p></div></p>
<p>四款或将发布的免费主题介绍完毕，现在就是想知道 WordPress 用户们对这四款主题中的哪一款最感兴趣，我也好根据“客观”和“主观”的情况来决定11月份的主攻方向～<br />
{democracy:9}</p>
<p align="right">zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://wpmes.cn' rel='external nofollow' class='url'>小白</a> writes: 我喜欢最后那个</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, 华斐 writes: 还是标准的博客好~</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.xwqcc.cn' rel='external nofollow' class='url'>星网</a> writes: 我喜欢付费的~！！！</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.jixiaxuegong.com' rel='external nofollow' class='url'>迟墨</a> writes: 喜欢第一款</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.yseeker.com/' rel='external nofollow' class='url'>maqingxi</a> writes: 喜欢最后一款，效果超炫。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://mcukaifa.com' rel='external nofollow' class='url'>正在戒网</a> writes: 同意,所以我认为功能不必要太花.看起来惊艳.就像PJ或是BO一样,现在为什么还那么多人用,就是因为它的模板都非常符合中国人对BLOG的要求</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.life-studio.cn' rel='external nofollow' class='url'>万戈</a> writes: 我也喜欢最后一款</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://immmmm.com' rel='external nofollow' class='url'>林木木</a> writes: 支持发布免费主题！</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.onlysb.com' rel='external nofollow' class='url'>最后块烧饼</a> writes: 支持修改WLK主题 效果超赞</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 恩，说得很有道理！</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.lurenba.com' rel='external nofollow' class='url'>江月何年</a> writes: 我喜欢CMS那个</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.wopus.org/blog-article/technology/1635.html' rel='external nofollow' class='url'>投票 就有可能得到喜欢的付费主题 &laquo; Wopus中文博客平台 - WordPress</a> writes: [...] 如果你想获在11月获得上面四款主题中的一款，那么记得要去作者博客投票啦。Wopus估计，应该第二款魔兽主题和最后一款主题的票数最多。 投票页面：http://zeuscn.net/archives/2009/10/29/which-is-the-next-<a href="http://zeuscn.net/archives/tag/theme" class="st_tag internal_tag" rel="tag" title="标签 Theme 下的日志">theme</a>.html [...]</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, tony writes: 必须得支持CMS的！</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, klein writes: 喜欢最后一个</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.x-idea.cn' rel='external nofollow' class='url'>创意无限</a> writes: 还是更喜欢第四款。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://YuJan.com' rel='external nofollow' class='url'>牧狼羊</a> writes: 其实没有看到很喜欢的，呵呵。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, oh. writes: 第三款，标准风格，简单大方</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 29日</a>, <a href='http://www.binjoo.net' rel='external nofollow' class='url'>冰剑</a> writes: 第三款不错，简单大方。。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://www.thereisawebsite.com' rel='external nofollow' class='url'>断垣</a> writes: 我喜欢第一款，比较大气，两侧栏都可以放在右边吧？</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://www.5yjn.com' rel='external nofollow' class='url'>吾忆江南</a> writes: 第四个不错，如果能更色一点就好了</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，苹果就是银灰色的，没办法...</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 恩，2边都是侧栏且支持 <a href="http://zeuscn.net/archives/tag/widget" class="st_tag internal_tag" rel="tag" title="标签 widget 下的日志">widget</a> 小工具～</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://aunsen.com' rel='external nofollow' class='url'>aunsen</a> writes: 我投了第一个！</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://www.x-idea.cn' rel='external nofollow' class='url'>创意无限</a> writes: 很喜欢你主页的乔丹的那张图片，配合黑色的背景，经典！！！！

不过怎么只有这样一图片么？</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://www.lennonl.com' rel='external nofollow' class='url'>honey.L</a> writes: 第三个和第四个都不错。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://imbolo.com' rel='external nofollow' class='url'>bolo</a> writes: 我要第一款主题！！！</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://affiliate123.cn' rel='external nofollow' class='url'>Affiliate123</a> writes: 支持 最后一款
有赠品吗？呵呵</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://wsx19891011.blog.sohu.com/' rel='external nofollow' class='url'>w.shengxiang</a> writes: 以我个人的爱好，我比较喜欢WLK WOW</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，赠品就是技术支持～</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 恩，其实我个人也最喜欢这款...</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 30日</a>, <a href='http://www.onlysb.com' rel='external nofollow' class='url'>最后块烧饼</a> writes: 特意回来看看 哎 WLK主题票选落后了撒 Z大，你有时间就把这主题完善了吧~~呵呵 最近国服WLK有不少利好消息呢，希望十一月能玩上。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 31日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 我自己投的就是这款的票～ 看来这款主题近期推出是没啥希望了...</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十月 31日</a>, <a href='http://yaerma.cn' rel='external nofollow' class='url'>yaerma</a> writes: lapis很简洁，喜欢。</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 1日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: lapis 为例第三，看来只能继续延后发布了... :-(</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 2日</a>, 顺风 writes: 第二款主题很有特色</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 2日</a>, <a href='http://www.mutouren.net' rel='external nofollow' class='url'>棒冰</a> writes: 款款都很好 有多选的就好了</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 2日</a>, <a href='http://www.wgdata.cn' rel='external nofollow' class='url'>PF</a> writes: WLK主题  很好 很强大</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 3日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，多选的话就不容易突出某一款主题了～</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 3日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 仿 WLK 官网的确实很有特色，但做起来难度也不小哦...</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 3日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 暴雪的美工才是真正很好很强大 :-P</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 3日</a>, 月妖 writes: 支持zEUS，不知道这主题几时能完工呢?给个时间表我们WP用户好有些期待 :-)</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十一月 8日</a>, <a href='http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html' rel='external nofollow' class='url'>给博客首页增加了一个 Ajax 效果 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] Which is The Next Theme ? 一文中发起了一个投票，最终 WLK [...]</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2009年, 十二月 5日</a>, <a href='http://lostindream.com' rel='external nofollow' class='url'>lostindream</a> writes: 貌似还没有推出</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2010年, 二月 3日</a>, <a href='http://zeuscn.net/archives/2010/02/03/ipple-lite-v2-will-release.html' rel='external nofollow' class='url'>Ipple Lite V2 即将发布 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] WordPress 的朋友。去年年底我就有打算“复刻” Ipple Lite，不过当时的投票中并没有包含这款主题，本根据投票结果是先制作 WLK 和 Blue-s [...]</li><li><a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">2010年, 三月 15日</a>, mybg writes: 期待Blue-s的出现</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html">http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html#comments"title="to the comments">发布评论</a>
      </p>
    <p>Copyright©<a href="%%blogurl%%">zEUScn.NET</a>.Some rights reserved.</p>
(Digital Fingerprint:<br /> 05538bd2e0492fe803256b5788cfa6fd)
	<ul class="st-related-posts">
	<li><a href="http://zeuscn.net/archives/2007/10/03/tag-cloud-fontsize-for-wp2-3.html" title="修改 wordpress 2.3 侧边栏 widget 标签云字体大小 (2007年, 十月 3日)">修改 wordpress 2.3 侧边栏 widget 标签云字体大小</a> (119)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/06/wordpress-install.html" title="WordPress 安装图文教程 (2007年, 十二月 6日)">WordPress 安装图文教程</a> (79)</li>
	<li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html" title="给博客添加 Google 自定义搜索 (2008年, 九月 18日)">给博客添加 Google 自定义搜索</a> (100)</li>
	<li><a href="http://zeuscn.net/archives/2007/07/06/hexie-wow.html" title="和谐的魔兽世界 (2007年, 七月 6日)">和谐的魔兽世界</a> (5)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/18/diary-2.html" title="八月十八日 星期一 晴 (2008年, 八月 18日)">八月十八日 星期一 晴</a> (110)</li>
	<li><a href="http://zeuscn.net/archives/2008/10/01/dztheme-update.html" title="DZTHEME.COM 一期改版完成 (2008年, 十月 1日)">DZTHEME.COM 一期改版完成</a> (22)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/04/2-0-1-version.html" title="博客版本升级 2.01 (2007年, 十一月 4日)">博客版本升级 2.01</a> (6)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/13/plans-of-wordpress-themes.html" title="WordPress 主题计划 (2007年, 十二月 13日)">WordPress 主题计划</a> (100)</li>
	<li><a href="http://zeuscn.net/archives/2009/09/29/rss-return-to-normal.html" title="博客 RSS 输出恢复正常 (2009年, 九月 29日)">博客 RSS 输出恢复正常</a> (7)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html" title="解除 XAMPP 的 Memory 大小限制 (2008年, 二月 29日)">解除 XAMPP 的 Memory 大小限制</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html/feed</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>D&amp;Z Theme Pro CP 版正式（付费）发布</title>
		<link>http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html</link>
		<comments>http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html#comments</comments>
		<pubDate>Fri, 19 Jun 2009 14:38:43 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress模板]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[D&Z Theme]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Gtalk]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[QQ]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=592</guid>
		<description><![CDATA[主题名称: D&#38;Z Theme Pro (Control Pannel) 主题描述: 一款引入杂志元素的博客模板，基于免费主题 D&#38;Z Theme 进行二次开发而来，在此基础上丰富了页面设计，细节处理更加出色，并附带强大的后台设置，让您完全脱离代码即可玩转主题。主题原设计来自 Timer ，由 zEUS. 修改制作。 2009-11-23 Update： 1、文章版权说明：在单篇文章末尾加上“转载请注明出处等文字和单击即可选择文章链接的文本框”； 2、模板首页文章栏加入 ajax 切换的效果，以显示更多内容（使用说明在论坛公布）； 3、lightbox 特效兼容 WP 自带的图片和相册功能（博客中已经介绍，现在已经直接集成）； 4、额外增加几个“文章归档”、“文章分类”、“点击量最高的文章”、“随机友链”等 widget 小工具，好让他们可以同时显示在首页和文章页； 5、最新留言截断乱码的问题； 6、单篇文章增加字体放大缩小的功能； 7、修正导航栏和分类目录的排序问题。 主题功能: 支持侧边栏 Widget（小工具）设置，首页和内页为两种不同的侧边栏，可以分别设置 Widget（小工具）； 首页采用 CMS 排版，首页的 Flash 幻灯片和文章左侧的分类图片可以在后台轻松设置； 首页的文章自动输出固定长度的摘要，无需再担心首页的排版问题； 模板采用诸多 jQuery 特效，页面平滑滚动、TAB 栏渐变切换、无需额外插件整合 lightbox 图片特效； Javascript 代码引用合理，lightbox 图片特效特效适用于单篇日志页和页面页，所以模板的首页不会加载其代码，其余特效的 Javascript 代码集成在一个文件内，这样就减少了浏览器请求的次数，从一定程度上提高了页面载入的速度； 内置 WordPress 原生的评论嵌套回复和评论分页功能； [...]]]></description>
			<content:encoded><![CDATA[<p>主题名称: <strong>D&amp;Z <a href="http://zeuscn.net/archives/tag/theme" class="st_tag internal_tag" rel="tag" title="标签 Theme 下的日志">Theme</a> Pro (Control Pannel)</strong></p>
<p>主题描述: 一款引入杂志元素的博客模板，基于免费主题 <a href="http://zeuscn.net/archives/tag/dz-theme" class="st_tag internal_tag" rel="tag" title="标签 D&amp;Z Theme 下的日志">D&amp;Z Theme</a> 进行二次开发而来，在此基础上丰富了页面设计，细节处理更加出色，并附带强大的后台设置，让您完全脱离代码即可玩转主题。主题原设计来自 <a href="http://www.dogorgod.com/" target="_blank">Timer</a> ，由 <a href="http://zeuscn.net/" target="_blank">zEUS.</a> 修改制作。</p>
<p>2009-11-23 Update：</p>
<blockquote><p>1、文章版权说明：在单篇文章末尾加上“转载请注明出处等文字和单击即可选择文章链接的文本框”；<br />
2、模板首页文章栏加入 ajax 切换的效果，以显示更多内容（使用说明在论坛公布）；<br />
3、lightbox 特效兼容 WP 自带的图片和相册功能（博客中已经介绍，现在已经直接集成）；<br />
4、额外增加几个“文章归档”、“文章分类”、“点击量最高的文章”、“随机友链”等 <a href="http://zeuscn.net/archives/tag/widget" class="st_tag internal_tag" rel="tag" title="标签 widget 下的日志">widget</a> 小工具，好让他们可以同时显示在首页和文章页；<br />
5、最新留言截断乱码的问题；<br />
6、单篇文章增加字体放大缩小的功能；<br />
7、修正导航栏和分类目录的排序问题。</p></blockquote>
<p>主题功能:</p>
<ul>
<li><strong>支持侧边栏 Widget（小工具）设置</strong>，首页和内页为两种不同的侧边栏，可以分别设置 Widget（小工具）；</li>
<li><strong>首页采用 <a href="http://zeuscn.net/archives/tag/cms" class="st_tag internal_tag" rel="tag" title="标签 cms 下的日志">CMS</a> 排版</strong>，首页的 Flash 幻灯片和文章左侧的分类图片可以在后台轻松设置；</li>
<li>首页的文章自动输出固定长度的摘要，无需再担心首页的排版问题；</li>
<li><strong>模板采用诸多 <a href="http://zeuscn.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> 特效</strong>，页面平滑滚动、TAB 栏渐变切换、无需额外插件整合 lightbox 图片特效；</li>
<li><a href="http://zeuscn.net/archives/tag/javascript" class="st_tag internal_tag" rel="tag" title="标签 JavaScript 下的日志">Javascript</a> 代码引用合理，lightbox 图片特效特效适用于单篇日志页和页面页，所以模板的首页不会加载其代码，其余特效的 <a href="http://zeuscn.net/archives/tag/javascript" class="st_tag internal_tag" rel="tag" title="标签 JavaScript 下的日志">Javascript</a> 代码集成在一个文件内，这样就减少了浏览器请求的次数，从一定程度上<strong>提高了页面载入的速度</strong>；</li>
<li>内置 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 原生的评论嵌套回复和评论分页功能；</li>
<li>自带<strong>评论 Gravatar 头像</strong>；</li>
<li>自带<strong>文章评论和反向链接分离</strong>；</li>
<li>自带<strong>作者评论特殊背景色</strong>；</li>
<li>附带<strong>友情链接页面模板</strong>；</li>
<li>提供<strong>随机日志</strong>、<strong>热评日志</strong>、<strong>随机友链</strong>等小工具（Widget）模块；</li>
<li><strong>集成文章翻页的功能</strong>（无需再使用 WP-Pagenavi 插件）；</li>
<li><strong><a href="http://zeuscn.net/archives/tag/seo" class="st_tag internal_tag" rel="tag" title="标签 SEO 下的日志">SEO</a> 优化</strong>，后台可以设置博客的关键词和描述，自动为单篇日志/页面添加文章标签作为关键词，自动截取文章摘要作为单篇文章/页面的描述。分类描述自动加载为分类页的描述（基本可以抛弃 All in one SEO 插件）；</li>
<li><strong>自定义导航栏链接</strong>，模板后台可以方便的设置输出在导航栏上的链接（<strong>支持到 WordPress 2.8.1</strong>）；</li>
<li><strong>首页嵌入 <a href="http://zeuscn.net/archives/tag/twitter" class="st_tag internal_tag" rel="tag" title="标签 twitter 下的日志">Twitter</a> 消息</strong>，只需在后台设置您的 Twitter 帐号和输出消息的条数即可；</li>
<li>后台可以<strong>自定义模板侧栏的 Tab 栏</strong>内容；</li>
<li><strong>集成 Google <a href="http://zeuscn.net/archives/tag/adsense" class="st_tag internal_tag" rel="tag" title="标签 Adsense 下的日志">Adsense</a></strong> ，只需要在后台设置您的发布商代码即可；</li>
<li><strong>网站备案号设置</strong>，您只需要在后台添加备案号码即可，无需再更改 footer 文件；</li>
<li>模板通过 W3C 验证，兼容国内主流 <a href="http://zeuscn.net/archives/tag/firefox" class="st_tag internal_tag" rel="tag" title="标签 firefox 下的日志">Firefox</a> 3.0 <a href="http://zeuscn.net/archives/tag/chrome" class="st_tag internal_tag" rel="tag" title="标签 Chrome 下的日志">Chrome</a> IE6 IE7 等浏览器</li>
</ul>
<p>版本号: 2.09.06.19</p>
<p>使用窍门：</p>
<ul>
<li>调用 Lightbox 特效时需要在图片链接代码中加入 <strong>rel=”lightbox”</strong> 例如：

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;lightbox&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://pic.yupoo.com/zeuscn/2122679da7af/w2abszqt.jpg&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;img_border&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://pic.yupoo.com/zeuscn/2122679da7af/medium.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;擎天柱 天火 合体图&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></div></div>

</li>
<li>给文章中的图片加上 <strong>class=”img_border”</strong> 可以使图片外有个画框，见上例中的代码。</li>
</ul>
<p>首页/后台截图（点击放大）：</p>
<p align="center"><a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/DZ-Theme-Pro-Options.jpg"><img class="img_border" title="D&amp;Z-Theme-Pro-Options" src="http://zeuscn.net/wp-content/uploads/2009/06/DZ-Theme-Pro-Options-73x300.jpg" alt="D&amp;Z-Theme-Pro-Options" width="73" height="300" /></a> <a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_index.jpg"><img class="img_border" title="dzp_cp_index" src="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_index-176x300.jpg" alt="dzp_cp_index" width="176" height="300" /></a> <a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_single.jpg"><img class="img_border" title="dzp_cp_single" src="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_single-75x300.jpg" alt="dzp_cp_single" width="75" height="300" /></a><br />
<a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_archive.jpg"><img class="img_border" title="dzp_cp_archive" src="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_archive-136x300.jpg" alt="dzp_cp_archive" width="136" height="300" /></a> <a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_search.jpg"><img class="img_border" title="dzp_cp_search" src="http://zeuscn.net/wp-content/uploads/2009/06/dzp_cp_search-140x300.jpg" alt="dzp_cp_search" width="140" height="300" /></a></p>
<p>售后服务：<br />
终生提供技术支持，但不包括页面样式外观的修改和调整。</p>
<p>主题售价：<br />
人民币 <strong>88</strong> 元<br />
D&amp;Z Theme <strong>Pro</strong> 老用户（这里指的是 Pro 用户，而非使用免费的 D&amp;Z Theme 用户）升级费用：人民币 <strong>20</strong> 元</p>
<p>购买方式：<br />
淘宝：<a href="http://item.taobao.com/auction/item_detail-0db1-cc7ba2dc750381adba6337f35c6124b2.jhtml" target="_blank">http://item.taobao.com/auction/item_detail-0db1-cc7ba2dc750381adba6337f35c6124b2.jhtml</a></p>
<p>联系方式：<br />
EMAIL/<a href="http://zeuscn.net/archives/tag/gtalk" class="st_tag internal_tag" rel="tag" title="标签 Gtalk 下的日志">Gtalk</a>/旺旺：zeus0517@gmail.com<br />
<a href="http://zeuscn.net/archives/tag/qq" class="st_tag internal_tag" rel="tag" title="标签 QQ 下的日志">QQ</a>：178618671 / 24811820</p>
<p><strong>注意：在未经授权的情况下，本主题不允许任何形式的倒卖。</strong></p>
<p align="right">zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 19日</a>, <a href='http://laodouchi.com' rel='external nofollow' class='url'>老豆豉</a> writes: 老大，开头部分提供的主题链接失效了啊。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 19日</a>, <a href='http://webabie.com/' rel='external nofollow' class='url'>blacktulip</a> writes: 唉, 你那俩截图根本显示不出来, yupoo太垃圾了</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 19日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 囧...
我已经去掉那个，多谢提醒～</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 19日</a>, <a href='http://showfom.com/' rel='external nofollow' class='url'>Showfom</a> writes: 哇，收费啦哈哈
不过我不喜欢黑色的调调，纯支持！</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 20日</a>, <a href='http://music-it.cn/' rel='external nofollow' class='url'>feicun</a> writes: 已经有一款看中的免费主题了，支持一下zeus :P</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 20日</a>, 章鱼 writes: 我想买 可是太贵了</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 20日</a>, 章鱼 writes: 还有啊，，，，升级还要钱 有点。。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 20日</a>, <a href='http://longlan.net' rel='external nofollow' class='url'>Longlan</a> writes: 有个新站，考虑下</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 21日</a>, <a href='http://www.jutoy.net' rel='external nofollow' class='url'>Jutoy</a> writes: 这个主题太高级了……居然有后台设置的</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 21日</a>, 购买咨询 writes: 请问购买此主题会提供哪些服务？</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 21日</a>, <a href='http://GtalkMe.com' rel='external nofollow' class='url'>fiorano</a> writes: 兄弟主题越做越精了 XD 有提供其他单栏或者2栏的主题定制服务不，我很有意愿哦 :)</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，有这种定制服务 :-D</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 升级是针对我之前发布的一款付费主题，是把 D&Z Theme Pro 升级到 D&Z Theme Pro CP ，而不是说升级这款主题。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 平心而论，88元对一款付费主题来说已经很便宜了，如果再便宜，满街都是 D&Z Theme Pro CP 的话，那就没有意义了。
而且你可以在网上搜一下，其他的付费主题都是什么价格..</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 哎.. 这个问题我也发现了，多刷新2次就能出来了 =。=</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 其实我也不太喜欢黑色的调调，只是灰色很符合我现在的心境...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 谢谢 :-)</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 只要不是外观上的改动，其它基本都提供技术支持～</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://www.myzhangyu.com' rel='external nofollow' class='url'>章鱼</a> writes: 买了后颜色能不能帮忙改下 太暗了</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 不好意思，这不在售后服务的范围之内 :-(
因为改色系相当于是要重新设计外观了，工作量太大。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 23日</a>, <a href='http://www.myzhangyu.com' rel='external nofollow' class='url'>章鱼</a> writes: 买一个吧  ，，能不能送一个升级版本的  给万戈~</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 23日</a>, <a href='http://zeuscn.net/archives/2009/06/23/501.html' rel='external nofollow' class='url'>501 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] 不经意间，上一篇日志《D&amp;Z Theme Pro CP 版正式（付费）发布》竟然是第500篇日志！还记得上次也是当准备写第201篇日志的时候才发现“错过”了第200篇日志&#8230; 那次发文庆祝自己博客日志数量达到“一个里程碑”的时候是2007年10月25日，201篇日志的达成历经了11个月～ 差不多20个月后的现在，竟然已经有了501篇日志和7270条评论～ 呵呵，自己都被501这个数字吓了一跳呢&#8230; [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 24日</a>, <a href='http://www.myzhangyu.com' rel='external nofollow' class='url'>章鱼</a> writes: 上淘宝 我买了</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 28日</a>, <a href='http://huaimao.org' rel='external nofollow' class='url'>一只坏猫</a> writes: 嘿嘿！颜色有点灰，压抑！偶就不买了！</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 28日</a>, <a href='http://aunsen.com' rel='external nofollow' class='url'>duh2008@gmail.com</a> writes: 很强大啊！</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 六月 29日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 恩，7月份会推出个新的色系版本，敬请期待哦～</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 七月 3日</a>, <a href='http://www.jacse.com' rel='external nofollow' class='url'>Jacse</a> writes: 如果wordpress升级了，导致模板不兼容，您会不会提供更新呢。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 七月 3日</a>, <a href='http://www.coolp.net' rel='external nofollow' class='url'>phoenix</a> writes: 我要升级啊~~可是淘宝上没有升级的链接啊,光有那个88块的~~怎么办啊?</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 七月 10日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 老用户升级链接：
http://item.taobao.com/auction/item_detail-0db1-8478509b6709c1ca0c64d6377ef52526.htm</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 七月 10日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 肯定会提供更新的，因为我会一直用这款主题 :-)</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 七月 28日</a>, <a href='http://zeuscn.net/archives/2009/07/28/dz-theme-pro-cp-sales-report.html' rel='external nofollow' class='url'>D&amp;Z Theme Pro CP 首月销售报告 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] D&amp;Z Theme Pro CP 于2009年6月19日正式面试，从当月的22号开始就有朋友购买这款主题了，直到今天7月27日，在为期一个月零8天的时间里，D&amp;Z Theme Pro CP 版主题就已经售出了10套！（这是一笔很可观的收入  ） [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 七月 30日</a>, <a href='http://www.leesum.com' rel='external nofollow' class='url'>leesum</a> writes: 强悍，热情支持下，样子很是热销哦。。。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 八月 19日</a>, dora writes: 真不错</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 九月 8日</a>, acatz writes: 可不可以繁體最佳化啊？</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 九月 8日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 如果您有需要，我可以针对繁体调整。</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十月 25日</a>, <a href='http://k4.vc' rel='external nofollow' class='url'>K4.W</a> writes: 88.挺便宜的.不过我暂时用不上.所以就只看看了.</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十月 27日</a>, <a href='http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html' rel='external nofollow' class='url'>D&amp;Z Theme Pro Green CP 版正式（付费）发布 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] D&amp;Z Theme Pro CP：http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十月 29日</a>, <a href='http://zeuscn.net/archives/2009/10/29/which-is-the-next-theme.html' rel='external nofollow' class='url'>Which is The Next Theme ? &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] D&amp;Z Theme Pro CP 比起来简直就是小巫见大巫，但是 <a href="http://zeuscn.net/archives/tag/ipple" class="st_tag internal_tag" rel="tag" title="标签 Ipple 下的日志">Ipple</a> Ultra 在当年国人制作 WordPress [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十月 31日</a>, <a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html' rel='external nofollow' class='url'>无需插件让 WordPress 相册支持 lightbox &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] D&amp;Z Theme Pro CP 主题已经内嵌了 jQuery 的 lightbox [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十一月 1日</a>, <a href='http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html' rel='external nofollow' class='url'>无插件实现 WordPress Lightbox 特效 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] jQuery 特效～ 比如 D&amp;Z Theme Pro CP 主题侧栏 TAB 栏的切换效果、整站的锚点滚动和文章栏侧栏“MyConverse – [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十一月 9日</a>, <a href='http://www.wiseboke.com' rel='external nofollow' class='url'>微知博客</a> writes: 等我哪天想做个商业博客的时候，我应该就抵挡不住你的诱惑了</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十一月 23日</a>, <a href='http://zeuscn.net/archives/2009/11/23/dz-theme-pro-cp-update.html' rel='external nofollow' class='url'>加量不加价 D&amp;Z Theme Pro CP 升级 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] 如果您还不知道什么是 D&amp;Z Theme Pro CP 主题，请看这篇文章： http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十二月 1日</a>, <a href='http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html' rel='external nofollow' class='url'>如何控制 WordPress 文章标题的长度 &raquo; 網生@誌 | zEUS.&#8217;Blog</a> writes: [...] D&amp;Z Theme Pro CP [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十二月 3日</a>, <a href='http://jixiaxuegong.com/archives/185' rel='external nofollow' class='url'>如何控制 WordPress 文章标题的长度（顺带测试一下超长的标题输出） &raquo; 稷下学宫</a> writes: [...] D&amp;Z Theme Pro CP [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十二月 22日</a>, wakaka writes: 确实是很不错的和一个模板  而且  价格实在</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十二月 22日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，谢谢！</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2009年, 十二月 27日</a>, <a href='http://www.180life.cn/archives/73.html' rel='external nofollow' class='url'>如何控制 WordPress 文章标题的长度 | 180度生活</a> writes: [...] D&amp;Z Theme Pro CP [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 二月 4日</a>, YUzp writes: 我要求免费赠送一个~！</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 二月 4日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 你又不做网站 =。=</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 二月 24日</a>, <a href='http://www.dajiaochajian.com/' rel='external nofollow' class='url'>大脚</a> writes: 想免费提供个。呵呵~~~~</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 二月 25日</a>, <a href='http://www.51embed.com/2010/2655.html' rel='external nofollow' class='url'>主题修改小记1 &#171; 51embed.com</a> writes: [...] 主题修改小记1  现在使用的wordpress主题是zEUS. &amp; Timer的付费主题D-Z Theme Pro，原主题适合杂志和CMS类型网站的应用，功能丰富，首页还有很漂亮的Flash图片展示，但用作个人博客主题就太庞大了，因此删除了很多代码，取消了flash展示、首页的分类日志的查看、和边栏的tab功能。其实取消flash还考虑到用手机查看网站时，这部分呈现一片空白（也可能是手机的浏览器没安装flash插件）。 [...]</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 三月 11日</a>, <a href='http://www.loipanpan.com' rel='external nofollow' class='url'>Loipanpan</a> writes: 可以免費下載個嗎，很喜歡。一直想找個THEME換..這個很棒...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 四月 3日</a>, <a href='http://www.kingworld.org' rel='external nofollow' class='url'>hexbin</a> writes: 不错很喜欢！</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2010年, 九月 19日</a>, <a href='http://www.gfeel.info' rel='external nofollow' class='url'>only博客</a> writes: 这么好的主题，支持感谢
不知博主免费分享不？</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 23日</a>, <a href='http://servinion.weebly.com' rel='external nofollow' class='url'>servinion</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 25日</a>, <a href='http://PromiseProductionsUSA.com' rel='external nofollow' class='url'>Dallas Advertising</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 26日</a>, <a href='http://DallasSeniorPortraitPhotographer.com' rel='external nofollow' class='url'>Dallas Senior Portrait Photographer</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 26日</a>, <a href='http://www.americanantigravity.com/video/richard-obousy-on-warp-drives.html' rel='external nofollow' class='url'>Warp Drives</a> writes: <strong>Highly Recommended websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 27日</a>, <a href='http://www.oledaily.com' rel='external nofollow' class='url'>Man City Live Stream</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 27日</a>, <a href='http://www.incompany.com/blog.php?user=peytonreyes451&#038;blogentry_id=148685' rel='external nofollow' class='url'>Beibehaltungsgenehmigung</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 27日</a>, <a href='http://www.iamsport.org/pg/blog/alexandramorris1/read/1777911/why-an-immigration-lawyer-is-required-for-acquiring-visas' rel='external nofollow' class='url'>Chicago Immigration Attorney</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 27日</a>, <a href='http://laurenpetrie027.skyrock.com/3064912879-Where-To-Find-The-Best-Free-Registry-Repair-Tool.html' rel='external nofollow' class='url'>online registry cleaner</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 27日</a>, <a href='http://bgm.me/r/626176' rel='external nofollow' class='url'>Hostgator scam</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 27日</a>, <a href='http://www.xdiscussion.com' rel='external nofollow' class='url'>Porn forum</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.alwayztherro.com/2011/05/16/cali-swag-district-artist-murdered/' rel='external nofollow' class='url'>ibuildfans.com</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://community.atom.com/Post/Benefits-Of-Firstaid-Training-And-CPR-for-Job-seekers-And-Employers/03EFBFFFF02586AEA00080184BC83' rel='external nofollow' class='url'>First Aid at Work Training</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://bgm.me/r/630028' rel='external nofollow' class='url'>First Aid Training</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://wallinside.com/post-1275044.html' rel='external nofollow' class='url'>Herbal Incense</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.vilago21.com/event/What+is+Herb+Smoking_+The+Herbal+Smoking+Phenomenon/316697/profile' rel='external nofollow' class='url'>Smoke Herbs</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://trader1ew.com' rel='external nofollow' class='url'>us auto parts</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://kredytychwilowkibezbik.com' rel='external nofollow' class='url'>pozyczki chwilowki</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.caringweb.org/User_talk:Atat1666' rel='external nofollow' class='url'>read us</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.socializr.com/event/608123575' rel='external nofollow' class='url'>Accountants</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://volgalinen697.wordpress.com/2012/01/28/choosing-a-fabric-for-your-bed-linen/' rel='external nofollow' class='url'>Volga Linen</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.yellowbrickroad.ie/index.php/member/21120/' rel='external nofollow' class='url'>excel</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.bestoutsources.com' rel='external nofollow' class='url'>facebook</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.iamsport.org/pg/blog/elihewitt279/read/1837510/dating-tips-how-to-act-on-a-first-date' rel='external nofollow' class='url'>oc escort</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 28日</a>, <a href='http://www.quechup.com/blog/entry/view/id/879139' rel='external nofollow' class='url'>manhattan painter nyc</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 29日</a>, <a href='http://www.artslant.com/ew/groups/show/450897' rel='external nofollow' class='url'>directory script</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 29日</a>, <a href='http://jessicawilson324.obolog.com/' rel='external nofollow' class='url'>diamond wedding rings</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 29日</a>, <a href='http://shopifyreview198.tumblr.com/post/16643860305/shopify-review-is-that-one-of-the-best-e-commerce-web' rel='external nofollow' class='url'>shopify</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 29日</a>, <a href='http://community.atom.com/Post/What-Your-Website-Designer-Requires-Of-your-stuff-Before-He-Starts-To-Work-On-Your-New-Site/03EFBFFFF0258893700080184FCB0' rel='external nofollow' class='url'>Website Design Derbyshire</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 29日</a>, <a href='http://austinstanton05.insanejournal.com/293.html' rel='external nofollow' class='url'>stop smoking aides</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 29日</a>, <a href='http://www.dailystrength.org/people/1310829/journal' rel='external nofollow' class='url'>Wartrol review</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.ziki.com/en/gabrielle-wilson+802730/post/The-very-best-D+13747411' rel='external nofollow' class='url'>lose weight in 2 weeks</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.onewayseobacklinks.com/what_is_seo.html' rel='external nofollow' class='url'>backlinks for seo</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.vilago21.com/event/Meal+Replacement+Shakes+to+lose+weight+_+Do+They+Really+Work/327038/profile' rel='external nofollow' class='url'>visalus sciences</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.quechup.com/blog/entry/view/id/883871' rel='external nofollow' class='url'>laminate flooring derby</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://bgm.me/r/640346' rel='external nofollow' class='url'>myp2p</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.evelyne-escort.com' rel='external nofollow' class='url'>Escort girl Paris</a> writes: <strong>Informative and precise...</strong>

Its difficult to find informative and precise info but here I found...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://scintcy.com/index.php/2011/11/smileys-for-facebook-wall/' rel='external nofollow' class='url'>how to do facebook faces</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://lethbridgerealestateblog.com' rel='external nofollow' class='url'>lethbridge real estate</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.wingtsung.info' rel='external nofollow' class='url'>Kampfsport Munchen</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://www.facebook.com/notes/omega-3-fish-oil-supplements/omega-3-fish-oil-supplements-do-you-need-to-take-fish-oil-supplements-to-be-heal/283804788346614' rel='external nofollow' class='url'>fish oil supplements</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 30日</a>, <a href='http://treatmentsforacnetip.com/getting-rid-of-acne-scars/' rel='external nofollow' class='url'>Getting Rid of Acne Scars or makeup ?</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://frankigwalsh.insanejournal.com/' rel='external nofollow' class='url'>dating online</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://gamingkarma.com/forums/index.php?topic=224160.new#new' rel='external nofollow' class='url'>how to start website</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://www.socializr.com/event/344474469' rel='external nofollow' class='url'>best brain supplements</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://matthewwise999841.webs.com/apps/blog/show/12011364-spending-less-with-online-discount-vouchers-and-discount-codes' rel='external nofollow' class='url'>nandos vouchers</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://www.rctoyshq.com' rel='external nofollow' class='url'>rc helicopters</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://www.squirreltraining.co.uk' rel='external nofollow' class='url'>Roxana Gerbi</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://www.articlesinsight.com/Art/540615/27/Court-Reporting-Salary:-How-Much-Do-They-Make-in-a-Year.html' rel='external nofollow' class='url'>Law Careers</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 一月 31日</a>, <a href='http://scintcy.com/index.php/2011/12/just-how-to-come-to-be-a-person-magnet-here-are-actually-the-tools-which-is-going-to-aid-one-naturally-draw-in-adult-men-real-fast/' rel='external nofollow' class='url'>james scott guy magnet</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 1日</a>, <a href='http://www.ziki.com/en/isaac-benitez+810447/post/Cocktail-Dresse+13762377' rel='external nofollow' class='url'>Plus size cocktail dresses with sleeves</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 1日</a>, <a href='http://www.skipunx.com/phpBB2/profile.php?mode=viewprofile&#038;u=262319' rel='external nofollow' class='url'>Hair Removal</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 1日</a>, <a href='http://www.hoopwise.com/?m=200701' rel='external nofollow' class='url'>commercial inspections</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 1日</a>, <a href='http://www.poochwraps.com/' rel='external nofollow' class='url'>dog snuggie</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 1日</a>, <a href='http://www.grcdental.com.au' rel='external nofollow' class='url'>surgical loupes</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 2日</a>, <a href='http://www.ziki.com/en/nathaniel-kong-1+812088/post/How-do-i-Accele+13764030' rel='external nofollow' class='url'>pc tune up</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 2日</a>, <a href='http://angelinaroberts0.blogspace.fr/3254471/Merkur-Safety-Razors-Easy-and-Convenient-Tool-For-that-Closest-Shave-Possible/' rel='external nofollow' class='url'>merkur</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 2日</a>, <a href='http://bgm.me/r/661120' rel='external nofollow' class='url'>physician recruiter</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 2日</a>, <a href='http://jonesyoung1692545.blog.hr/2012/02/1629898654/physician-jobs-finding-the-optimum-jobs-to-fit-your-education.html' rel='external nofollow' class='url'>Physician Job</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 3日</a>, <a href='http://friendz-4-ksa.com/index.php/2011/12/is-bleeding-normal-throughout-pregnancy/' rel='external nofollow' class='url'>check out his website</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 3日</a>, <a href='http://reopro.ning.com' rel='external nofollow' class='url'>REO Real Estate Owned</a> writes: <strong>Its a challenge to find good help...</strong>

I am constantnly proclaiming that its difficult to get good help, but here is...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 3日</a>, <a href='http://superbowlliveonline.weebly.com' rel='external nofollow' class='url'>super bowl live online</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 4日</a>, <a href='http://www.bpo-companies.com' rel='external nofollow' class='url'>BPO Companies</a> writes: <strong>Links worth visiting...</strong>

[...]Sites of interest we have a link to[...]...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 5日</a>, <a href='http://hemiengines.blogdrive.com/' rel='external nofollow' class='url'>hemi engines</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 5日</a>, <a href='http://www.youtube.com/watch?v=KcPWHJ2i_rI' rel='external nofollow' class='url'>vygone zapper</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 6日</a>, <a href='https://www.youtube.com/watch?v=06ZOxJL9nKw' rel='external nofollow' class='url'>how to find a boyfriend</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 6日</a>, <a href='http://www.zerofungus.com' rel='external nofollow' class='url'>nail fungus</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 6日</a>, <a href='http://www.motionfinance.co.uk' rel='external nofollow' class='url'>finance cars</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 6日</a>, <a href='http://www.easyezinearticles.com/cgi-bin/display.pl?display=102396' rel='external nofollow' class='url'>corporate marquee hire</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 7日</a>, <a href='http://frostwire10.com/' rel='external nofollow' class='url'>frostwire</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 7日</a>, <a href='http://reactionconcepts.com/homepage-post-2/' rel='external nofollow' class='url'>Air Conditioning Repairs</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 8日</a>, <a href='http://villagevoicepimp.com/pimp-1-jim-larkin/' rel='external nofollow' class='url'>Jim Larkin</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 8日</a>, <a href='http://www.dailystrength.org/people/1349540/journal' rel='external nofollow' class='url'>goal rush</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 8日</a>, <a href='http://www.youtube.com/watch?v=3HTPfBksUM8' rel='external nofollow' class='url'>Scott tucker</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 9日</a>, <a href='http://www.youtube.com/watch?v=I_DRuyoYKBo' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 9日</a>, <a href='http://www.youtube.com/watch?v=NDgYjTl8k7o' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html#comments"title="to the comments">发布评论</a>
      </p>
    <p>Copyright©<a href="%%blogurl%%">zEUScn.NET</a>.Some rights reserved.</p>
(Digital Fingerprint:<br /> 05538bd2e0492fe803256b5788cfa6fd)
	<ul class="st-related-posts">
	<li><a href="http://zeuscn.net/archives/2008/08/21/new-record.html" title="New Record (2008年, 八月 21日)">New Record</a> (119)</li>
	<li><a href="http://zeuscn.net/archives/2009/06/06/dz-theme-pro-control-pannel-online.html" title="D&#038;Z Theme Pro (Control Pannel) 线上测试 (2009年, 六月 6日)">D&#038;Z Theme Pro (Control Pannel) 线上测试</a> (125)</li>
	<li><a href="http://zeuscn.net/archives/2007/09/12/friendly-links.html" title="关于友链不得不说 (2007年, 九月 12日)">关于友链不得不说</a> (81)</li>
	<li><a href="http://zeuscn.net/archives/2008/11/23/a-little-project.html" title="近期完成的一个小小首页 (2008年, 十一月 23日)">近期完成的一个小小首页</a> (24)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/04/wordpress-plugins-for-alimama.html" title="阿里妈妈 WordPress 插件大赛 (2007年, 十一月 4日)">阿里妈妈 WordPress 插件大赛</a> (63)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/11/why-wordpress-themes.html" title="Why WordPress Themes (2007年, 十二月 11日)">Why WordPress Themes</a> (8)</li>
	<li><a href="http://zeuscn.net/archives/2007/10/08/1-0-6-version.html" title="博客版本升级 1.06 (2007年, 十月 8日)">博客版本升级 1.06</a> (97)</li>
	<li><a href="http://zeuscn.net/archives/2008/10/07/dz-theme-update.html" title="D&#038;Z Theme 升级 (2008年, 十月 7日)">D&#038;Z Theme 升级</a> (141)</li>
	<li><a href="http://zeuscn.net/archives/2009/07/25/wopus-dztheme.html" title="和 Wopus 的合作公告 (2009年, 七月 25日)">和 Wopus 的合作公告</a> (5)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/11/parameters-of-wp_list_categories.html" title="wp_list_categories 参数详解 (2008年, 三月 11日)">wp_list_categories 参数详解</a> (17)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html/feed</wfw:commentRss>
		<slash:comments>129</slash:comments>
		</item>
		<item>
		<title>WordPress 较常用的首页文章 CMS 排版方法</title>
		<link>http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html</link>
		<comments>http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html#comments</comments>
		<pubDate>Thu, 11 Sep 2008 14:41:23 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=486</guid>
		<description><![CDATA[D&#038;Z Theme 首页一直在改版进行中，为的是推出 Pro 版本。在第一次改版时我在文章栏的上部添加了一个额外的内容模块——一个 Flash 展示窗和最新的一篇日志，下面的文章栏就依次显示除了第一篇日志外的其他日志，首页显示的总日志数还是可以在 WordPress 后台设置-阅读里进行设置。这种类 CMS 的排版的方法网上有不少介绍，我也是从 Sofish 的一篇日志里学来的，虽然他介绍了方法，但我却还是尝试了很久才成功，原因是他的介绍过于简单，在这里我就做一些代码的补充。 结合现在的 D&#038;Z Theme 首页效果，代码和注释依次参考下文： 定义首页的第一篇文章，showposts=1 则是只显示最新的一篇文章（使用 PHP 函数来进行定义） 1 2 3 &#60;?php $my_query = new WP_Query&#40;'showposts=1'&#41;; while &#40;$my_query-&#62;have_posts&#40;&#41;&#41; : $my_query-&#62;the_post&#40;&#41;; $do_not_duplicate = $post-&#62;ID; ?&#62; 第一篇文章的标题及内容（使用 CSS 和默认的 WordPress 标签来输出文章） 1 2 3 4 5 6 &#60;div class=&#34;title&#34;&#62; &#60;h2&#62;&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; rel=&#34;bookmark&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>D&#038;Z <a href="http://zeuscn.net/archives/tag/theme" class="st_tag internal_tag" rel="tag" title="标签 Theme 下的日志">Theme</a> 首页一直在改版进行中，为的是推出 Pro 版本。在第一次改版时我在文章栏的上部添加了一个额外的内容模块——一个 Flash 展示窗和最新的一篇日志，下面的文章栏就依次显示除了第一篇日志外的其他日志，首页显示的总日志数还是可以在 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 后台设置-阅读里进行设置。这种类 <a href="http://zeuscn.net/archives/tag/cms" class="st_tag internal_tag" rel="tag" title="标签 cms 下的日志">CMS</a> 的排版的方法网上有不少介绍，我也是从 <a href="http://www.happinesz.cn/archives/463/" target="_blank" />Sofish 的一篇日志</a>里学来的，虽然他介绍了方法，但我却还是尝试了很久才成功，原因是他的介绍过于简单，在这里我就做一些代码的补充。<br />
<span id="more-486"></span></p>
<p align=center><a href="http://pic.yupoo.com/zeuscn/9233762ca2c3/yq63kfzn.jpg" rel="lightbox" /><img src="http://pic.yupoo.com/zeuscn/9233762ca2c3/medium.jpg" class="img_border" alt="wordpress" title="点击放大" /></a></p>
<p>结合现在的 D&#038;Z Theme 首页效果，代码和注释依次参考下文：</p>
<ol>
<li>定义首页的第一篇文章，showposts=1 则是只显示最新的一篇文章（使用 <a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a> 函数来进行定义）

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</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: #000088;">$my_query</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'showposts=1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$my_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$do_not_duplicate</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

</li>
<p></p>
<li>第一篇文章的标题及内容（使用 <a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">CSS</a> 和默认的 WordPress 标签来输出文章）

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;title&quot;</span><span style="color: #00AA00;">&gt;</span>
&lt;h2<span style="color: #00AA00;">&gt;</span>&lt;a href<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;&lt;?php the_permalink() ?&gt;&quot;</span> rel<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;bookmark&quot;</span> title<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;?php the_title<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">''</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span>&lt;/a<span style="color: #00AA00;">&gt;</span>&lt;/h2<span style="color: #00AA00;">&gt;</span>
&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;postinfo&quot;</span><span style="color: #00AA00;">&gt;</span>分类<span style="color: #00AA00;">:</span> &lt;?php the_category<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">' , '</span><span style="color: #00AA00;">&#41;</span> ?<span style="color: #00AA00;">&gt;</span> | &lt;?php comments_popup_link<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'无人沙发'</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">'1 条评论'</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">'% 条评论'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span> &lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;entry&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;?php the_content<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'继续阅读 &amp;raquo;'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span>&lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;?php endwhile<span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span></pre></td></tr></table></div>

</li>
<p></p>
<li>调用第一篇文章结束，接下来可以放 AD 或者其它一些内容</li>
<p></p>
<li>
然后首页调用后续文章部分（依然是使用 PHP 函数来进行定义）</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</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>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$do_not_duplicate</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span> update_post_caches<span style="color: #009900;">&#40;</span><span style="color: #000088;">$posts</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>

</li>
<p></p>
<li>后续文章的标题及内容（还是使用 CSS 和默认的 WordPress 标签来输出文章）

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;title&quot;</span><span style="color: #00AA00;">&gt;</span>
&lt;h2<span style="color: #00AA00;">&gt;</span>&lt;a href<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;&lt;?php the_permalink() ?&gt;&quot;</span> rel<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;bookmark&quot;</span> title<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;?php the_title<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">''</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span>&lt;/a<span style="color: #00AA00;">&gt;</span>&lt;/h2<span style="color: #00AA00;">&gt;</span>
&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;postinfo&quot;</span><span style="color: #00AA00;">&gt;</span>分类<span style="color: #00AA00;">:</span> &lt;?php the_category<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">' , '</span><span style="color: #00AA00;">&#41;</span> ?<span style="color: #00AA00;">&gt;</span> | &lt;?php comments_popup_link<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'无人沙发'</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">'1 条评论'</span><span style="color: #00AA00;">,</span> <span style="color: #ff0000;">'% 条评论'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span>&lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;entry&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;?php the_content<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'继续阅读 &amp;raquo;'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span>&lt;/div<span style="color: #00AA00;">&gt;</span>
&lt;?php endwhile<span style="color: #00AA00;">;</span> endif<span style="color: #00AA00;">;</span> ?<span style="color: #00AA00;">&gt;</span></pre></td></tr></table></div>

<p>如果你在后台设置了首页显示5篇文章，那么以上将显示除第一篇外的其余4篇</li>
</ol>
<p>按照上述代码就能实现这种类CMS的排版方式，此时你可以向上图一样在第一篇文章的旁边放上一段 Flash 或者图片，你还可以修改后续文章的输出方式，使用</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> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</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> the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'继续阅读 &amp;raquo;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>而让后续文章输出摘要而非全文，甚至你可以把它们都去掉只输出 H2 标签内的文章标题，再运用一些 CSS 手段让其显示得更加美观，等等等等，就要看大家的 CSS 技巧和想象力了。</p>
<p>这也算是一个 WordPress 的进阶使用方法，还是需要有一定 PHP HTML/CSS 基础，新手请慎用&#8230;</p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 11日</a>, <a href='http://www.pagemod.cn' rel='external nofollow' class='url'>page</a> writes: 你现在的语法高亮，在RSS输出中出错了，赶紧换了吧。</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 11日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 早有发现.... 但是还没找到合适的替代插件...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://neolee.cn' rel='external nofollow' class='url'>老N</a> writes: 这个要收藏的。这些语句以后直接拿去用，不用自己学习php啦。</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://neolee.cn' rel='external nofollow' class='url'>老N</a> writes: SyntaxHighlighter 也许符合你的需求。</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://mian-fei-er-ji-yu-ming.israin.info' rel='external nofollow' class='url'>免费二级域名</a> writes: 收藏了，(*^__^*) 嘻嘻……</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 这个flash蛮炫滴,打包mail给我吧...我动动它的脑筋.</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 邮件已发送 :cool:</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 收到收到,下午有时间就改主题 哈哈</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://www.frankboy.net/' rel='external nofollow' class='url'>Frankboy</a> writes: 又变了~看看~</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://www.freerainbow.cn' rel='external nofollow' class='url'>freesky</a> writes: 能不能把你做模板的经验做一个专题呢？查资料方便一些！</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，变了有些时日了...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 12日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: 专题？类似索引吗？有时间整理一下～</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 13日</a>, <a href='http://www.thinkdap.com' rel='external nofollow' class='url'>Netforce</a> writes: :lol: 早就羡慕您首面的flash了，请给我来一份吧!中秋过节不送礼，要送就送flash! :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 13日</a>, <a href='http://www.thinkdap.com' rel='external nofollow' class='url'>Netforce</a> writes: 当然，最好能连主题一起mail给我，好好学习学习，谢谢!</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://blog.yuhuir.com' rel='external nofollow' class='url'>Rden</a> writes: 首页的那个图片文章显示很酷！能不能把那个代码也分享给我啊？发到的邮箱去！

谢谢。。。中秋快乐！</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://seolucene.com/blog' rel='external nofollow' class='url'>wantall</a> writes: 这个flash很漂亮啊！怎么做到的啊！
还右您的主题页面分页和分类，我把您
的插件都安装了啊！为什么输出的内容
和你们的不一样啊！希望您能帮我指点
一下啊，或给我发一份您的主题！
谢谢啦，中秋节快乐！！！</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: http://www.lanrentuku.com/lanren/jscode/
这里有很多～ 你可以自己选一款适合你自己的～</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: 节日快乐～～ <a href="http://zeuscn.net/archives/tag/dz-theme" class="st_tag internal_tag" rel="tag" title="标签 D&amp;Z Theme 下的日志">D&amp;Z Theme</a> Pro 月底前发布...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: http://www.lanrentuku.com/lanren/jscode/
这里有很多，根据自己需要找一个吧～</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: 抱歉，主题暂不发布。</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 14日</a>, <a href='http://www.meefan.net' rel='external nofollow' class='url'>大排</a> writes: :mrgreen: 请问博主文章中插入代码的效果是杂实现的，挺好看的！！！</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 16日</a>, <a href='http://zeuscn.net/archives/2008/09/16/syntax-plugins/' rel='external nofollow' class='url'>三款引用代码语法高亮插件 | 網生@誌 | zEUS.'Blog</a> writes: [...] 之前一直使用 Coolcode 作为代码高亮的插件，不过前段时间不知为何引用的代码在 FEED 里出现问题，不能正常显示，后来猫猫在留言中也提到了这个问题，索性就把这个插件换掉～ [...]</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 21日</a>, <a href='http://yangtx.com' rel='external nofollow' class='url'>Yangtx</a> writes: 首页右上可以通过tag显示缩略图就好了。 :???: 
目前的版本漂亮多了，标题下面的tag等还需要重新考虑布局，有的tag过多，会引起换行。</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 24日</a>, <a href='http://www.simpleseo.cn' rel='external nofollow' class='url'>simpleseo</a> writes: 正想找这么一篇教程呢，你真是太好了 :razz:</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 25日</a>, <a href='http://www.simpleseo.cn' rel='external nofollow' class='url'>simpleseo</a> writes: 我已在自己的博客添加你的链接了，
请检查：www.simpleseo.cn
希望可以与你交换链接 :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 25日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 已添加  :smile: 我在出差，上次的留言没注意到，不好意思...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 九月 26日</a>, <a href='http://www.simpleseo.cn' rel='external nofollow' class='url'>simpleseo</a> writes: 没关系，
你是湖北人吧，我们可能是老乡 :arrow:</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 十月 11日</a>, <a href='http://kalagxw.net/wp/syntax-wordpress' rel='external nofollow' class='url'>三款引用代码语法高亮插件 &raquo; 外事不决问GOOLE | Kalagxw’s Blog</a> writes: [...] 之前一直使用 Coolcode 作为代码高亮的插件，不过前段时间不知为何引用的代码在 FEED 里出现问题，不能正常显示，后来猫猫在留言中也提到了这个问题，索性就把这个插件换掉～ [...]</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 十月 16日</a>, <a href='http://www.dogorgod.com/blog/index-function-update-378.html' rel='external nofollow' class='url'>站内首页功能的小更新 | dogorgod.com</a> writes: [...] 这次替换成“最近文章”就不同了，这里根据zEUS.给出的办法，我把这个区域改成了正常的文章更新排序，只不过显示成了标题列表而已。这样每次翻页后就会按时间顺序显示之后的文章了，对于查看近期文章来说很方便，既保持了一定的CMS风格，又很实用，非常棒。 [...]</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 十一月 5日</a>, 半路出轨 writes: zEUS！首页Flash代码怎么调用的？下了代码却不知道用！ :roll:</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2008年, 十一月 6日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 看看源代码就会明白的</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2010年, 一月 25日</a>, <a href='http://www.dxs77.cn/index.php/category/377/html' rel='external nofollow' class='url'>WordPress 较常用的首页文章 CMS 排版方法 - 大杂门</a> writes: [...] 網生@誌 | zEUS.’Blog » WordPress 较常用的首页文章 CMS 排版方法 [...]</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 24日</a>, <a href='http://servinion.weebly.com' rel='external nofollow' class='url'>servinion</a> writes: <strong>Online Articles...</strong>

[...]The information mentioned in the article are some of the best available [...]......</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://PromiseProductionsUSA.com' rel='external nofollow' class='url'>Dallas Marketing</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://DallasLingerieBoudoir.com' rel='external nofollow' class='url'>Dallas Boudoir Photographer</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://DallasSeniorPortraitPhotographer.com' rel='external nofollow' class='url'>Dallas Senior Portrait Photographer</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://www.vilago21.com/event/john+vespucci/302187/profile' rel='external nofollow' class='url'>johnvespucci</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://bestpreworktousupplement.posterous.com/' rel='external nofollow' class='url'>pre workout supplements</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://www.americanantigravity.com/video/richard-obousy-on-warp-drives.html' rel='external nofollow' class='url'>Warp Drives</a> writes: <strong>Surfing around...</strong>

While I was surfing yesterday I noticed a excellent article about...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 26日</a>, <a href='http://202.205.109.23/chisa/profile.php?mode=viewprofile&#038;u=27491' rel='external nofollow' class='url'>bodybuilding supplement</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 27日</a>, <a href='http://wallinside.com/login-donovanfrank422.html' rel='external nofollow' class='url'>Dentist</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 27日</a>, <a href='http://www.zip-online.net/directory/online-shop-875/sitemap.html' rel='external nofollow' class='url'>Exclusiv Shop</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 27日</a>, <a href='http://www.xdiscussion.com' rel='external nofollow' class='url'>Porn forum</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 28日</a>, <a href='http://trader1ew.com' rel='external nofollow' class='url'>auto accessories</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 28日</a>, <a href='http://kredytychwilowkibezbik.com' rel='external nofollow' class='url'>pozyczki chwilowki</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 28日</a>, <a href='http://www.zanibook.com/event.php?event_id=6132' rel='external nofollow' class='url'>Pharmas</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 29日</a>, <a href='http://ellaguthrie170.insanejournal.com/479.html' rel='external nofollow' class='url'>Book cheap car hire in the UK</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 29日</a>, <a href='http://www.quechup.com/blog/entry/view/id/870903' rel='external nofollow' class='url'>Cary Leung Sun Life</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 29日</a>, <a href='http://www.articlesbase.com/hotels-articles/advantages-of-hotel-special-offers-5584802.html' rel='external nofollow' class='url'>Vacation Rentals</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 29日</a>, <a href='http://www.egr.gvsu.edu/~prestoca/wordpress/?attachment_id=126' rel='external nofollow' class='url'>ingilizce kursu</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 29日</a>, <a href='http://www.vilago21.com/event/Term+life+Quotes+_+How+you+can+Compare+Quotes+Online/325755/profile' rel='external nofollow' class='url'>Term Life Insurance Quotes</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://www.onewayseobacklinks.com/' rel='external nofollow' class='url'>Buy Backlinks</a> writes: <strong>Websites you should visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://sunnyvalefinehomes.com/index.php/2012/01/lenovo-thinkpad-w700dslaptop-review-2/' rel='external nofollow' class='url'>eye floaters cure</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://www.hausdeshundes.de' rel='external nofollow' class='url'>Tierhandlung</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://www.youtube.com/watch?v=YtzCuLYPcHM' rel='external nofollow' class='url'>seo analysis</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://www.Lankafood.Com' rel='external nofollow' class='url'>Flower delivery in Sri Lanka</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://treatmentsforacnetip.com/acne-scars-removal/' rel='external nofollow' class='url'>Acne Scars Removal - Does it really work?</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://www.gpsforwalking.org' rel='external nofollow' class='url'>gps geocaching</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 30日</a>, <a href='http://tennessee.local.dirtcheappayday.com/check-into-cash-in-tullahoma-tn-37388/' rel='external nofollow' class='url'>Low Interest Payday Loans</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 31日</a>, <a href='http://franknuwillis.xanga.com' rel='external nofollow' class='url'>dating online</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 一月 31日</a>, <a href='http://www.hugeyieldscam.com' rel='external nofollow' class='url'>huge yield scam</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://arabgaza.com/index.php/2011/12/is-bleeding-typical-throughout-being-pregnant/' rel='external nofollow' class='url'>heavy period while pregnant</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://area51zone.com/board/index.php?action=profile;u=105308' rel='external nofollow' class='url'>Laser Hair Removal</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://topmlmarticles.com/index.php?page=article&#038;article_id=202571' rel='external nofollow' class='url'>At Home Laser Hair Removal</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://multimedia.uoc.edu/~usuaris/wiki/index.php/Usuario:Eatablepregnanc' rel='external nofollow' class='url'>Best Calculator</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://www.poochwraps.com/' rel='external nofollow' class='url'>dog snuggie</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://www.top10socialnetworkingsitesz.com/business-/van-man-dublin/' rel='external nofollow' class='url'>Click here</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://www.grcdental.com.au' rel='external nofollow' class='url'>loupe light</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://theguidetohomebusinesssuccess.com/theguide/real-estate-help-from-mortgage-broker-scott-tucker/' rel='external nofollow' class='url'>Scott Tucker Payday Loans</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 1日</a>, <a href='http://www.mortgagebrokerland.com/f2/anyone-been-scott-tucker-seminar-824/' rel='external nofollow' class='url'>Scott Tucker Payday Loans</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 2日</a>, <a href='http://americanlemans.com/primary1.php?cat=driver%7C870' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 2日</a>, <a href='http://www.imdb.com/name/nm0046112/' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 2日</a>, <a href='http://www.tvguide.com/celebrities/penn-badgley/190745' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 2日</a>, <a href='http://www.planetlemans.com/2010/12/11/level-5-motorsports-to-run-2-lmp2-cars-in-2011/' rel='external nofollow' class='url'>Scott Tucker Leawood</a> writes: <strong>Websites you should visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://www.hugeyield.us' rel='external nofollow' class='url'>make money online</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://davidanderson1208107.blog.hr/2012/02/1629908354/reasons-why-you-should-purchase-seo-link-monster.html' rel='external nofollow' class='url'>SEO Link Monster scam</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://watchsuperbowlliveonline.zoomblog.com' rel='external nofollow' class='url'>watch super bowl live online</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://ricoramiro.newsvine.com/_news/2012/01/15/10160779-fast-cash-commissions-review-offers-helpful-tips-on-using-the-fast-cash-commissions-system-to-make-money-online-every-day' rel='external nofollow' class='url'>fast cash commissions</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://www.scribd.com/doc/47342821/Free-Brazzers-Password' rel='external nofollow' class='url'>Brazzers Password</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://www.youtube.com/watch?v=-WC-aCfL77E' rel='external nofollow' class='url'>How to Lose Weight In Your Stomach</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://www.bniwisnorth.com' rel='external nofollow' class='url'>clearwater beach condos</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://video-production-nyc.com/corporate/' rel='external nofollow' class='url'>corporate video production nyc</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://myhealthandbusiness.com/categories/19/software-services/' rel='external nofollow' class='url'>Justin Bieber Baby</a> writes: <strong>Websites you should visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 3日</a>, <a href='http://fanypackantics.com' rel='external nofollow' class='url'>fanny pack</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://www.bpo-companies.com' rel='external nofollow' class='url'>BPO Companies</a> writes: <strong>Highly Recommended websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://ezinearticles.com/?Plastic-Surgery-Financing-Options&#038;id=3876644' rel='external nofollow' class='url'>Plastic Surgery Financing Options</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://www.txt2gether.com/?p=1647/' rel='external nofollow' class='url'>football training</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://scotttuckerracing326.tumblr.com/post/16975591910/scott-tucker-racing-can-be-a-actually-excellent-way-to' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://briannakennedy31.over-blog.com/pages/scott-tucker-cbs-is-really-a-huge-participant-right-now-6559764.html' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://www.iamsport.org/pg/blog/sterlingortiz862/read/2079523/scott-tucker-cbs-documented-is-really-intresting' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://www.bpo-companies.com/appraisal.php' rel='external nofollow' class='url'>Appraisal Management Companies</a> writes: <strong>Bing results...</strong>

While searching Yahoo I discovered this page in the results and I didn't think it fit...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 4日</a>, <a href='http://www.bpo-automation.com/contact.html' rel='external nofollow' class='url'>broker price opinion software</a> writes: <strong>Tough Week...</strong>

It was a tough week here for the past week, so I just took to piddeling around online and realized...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 5日</a>, <a href='http://managed1.com/hosting.html' rel='external nofollow' class='url'>Shared Hosting</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 5日</a>, <a href='http://hemiengines.yolasite.com/' rel='external nofollow' class='url'>mopar</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 5日</a>, <a href='http://www.conveyancingsolicitors.com/other6.html' rel='external nofollow' class='url'>athletesacceleration.com</a> writes: <strong>Websites you should visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 6日</a>, <a href='http://www.articlesbase.com/software-articles/the-importance-of-utility-detection-and-mapping-5590344.html' rel='external nofollow' class='url'>utility detection</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 6日</a>, <a href='http://www.last.fm/user/jonjxrb787' rel='external nofollow' class='url'>tarot gratis</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 7日</a>, <a href='http://ffw.com.br/noticias/banda-indie-aclamada-em-2009-comeca-o-ano-com-novo-album/' rel='external nofollow' class='url'>Air Conditioning Repairs</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 7日</a>, <a href='http://www.youtube.com/watch?v=gZlbwvD02-Q' rel='external nofollow' class='url'>Business Insurance Tampa</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 7日</a>, <a href='http://digitalredwoods.net/wiki/index.php?title=Special:UserLogin&#038;returnto=Special:UserLogin' rel='external nofollow' class='url'>windows and doors</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 7日</a>, <a href='http://www.freecamsporn.com' rel='external nofollow' class='url'>Sex Show</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 8日</a>, <a href='http://www.terminex.co.uk/successfully-completed-the-netting-of-the-roof-of-the-market-cross/' rel='external nofollow' class='url'>Pigeon Pest Control, Pigeon Deterrents, Pigeon Spikes, Pigeon Problems</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 8日</a>, <a href='http://keep.ir/stories/160476/Tanie_noclegi_zakopane.html' rel='external nofollow' class='url'>tanie noclegi zakopane</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 8日</a>, <a href='http://villagevoicepimp.com/' rel='external nofollow' class='url'>Village Voice</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 9日</a>, <a href='http://www.youtube.com/watch?v=I_DRuyoYKBo' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 9日</a>, <a href='http://www.youtube.com/watch?v=qWgmmAhMuHU' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 9日</a>, <a href='http://musiccityinteractive.com/monday-funday-iphone%E2%80%99s-siri-virtual-assistant-vs-human-assistant/' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">2012年, 二月 9日</a>, <a href='http://www.youtube.com/watch?v=3HTPfBksUM8' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html#comments"title="to the comments">发布评论</a>
      </p>
    <p>Copyright©<a href="%%blogurl%%">zEUScn.NET</a>.Some rights reserved.</p>
(Digital Fingerprint:<br /> 05538bd2e0492fe803256b5788cfa6fd)
	<ul class="st-related-posts">
	<li><a href="http://zeuscn.net/archives/2008/09/02/dztheme-is-coming.html" title="DZTHEME.COM 震撼上线 (2008年, 九月 2日)">DZTHEME.COM 震撼上线</a> (89)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/14/sth-about-wopus.html" title="Wopus 注册码&#038;文化衫&#038;FQA (2008年, 八月 14日)">Wopus 注册码&#038;文化衫&#038;FQA</a> (32)</li>
	<li><a href="http://zeuscn.net/archives/2008/01/01/ready-to-work.html" title="Ready to Work.. (2008年, 一月 1日)">Ready to Work..</a> (65)</li>
	<li><a href="http://zeuscn.net/archives/2008/10/31/chrome-googletoolbar.html" title="Chrome 竟无法安装 GoogleToolbar (2008年, 十月 31日)">Chrome 竟无法安装 GoogleToolbar</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/06/wordpress-install.html" title="WordPress 安装图文教程 (2007年, 十二月 6日)">WordPress 安装图文教程</a> (79)</li>
	<li><a href="http://zeuscn.net/archives/2008/12/01/wordpress-blog-2009.html" title="关于 WordPress 和 Blog 的小展望 (2008年, 十二月 1日)">关于 WordPress 和 Blog 的小展望</a> (36)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/13/plans-of-wordpress-themes.html" title="WordPress 主题计划 (2007年, 十二月 13日)">WordPress 主题计划</a> (100)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html" title="解除 XAMPP 的 Memory 大小限制 (2008年, 二月 29日)">解除 XAMPP 的 Memory 大小限制</a> (8)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/31/about-blog-ad.html" title="博客广告的那些事儿 (2008年, 三月 31日)">博客广告的那些事儿</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2007/09/02/wordpresstheme-blackish.html" title="wordpress模板：Blackish (2007年, 九月 2日)">wordpress模板：Blackish</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html/feed</wfw:commentRss>
		<slash:comments>108</slash:comments>
		</item>
	</channel>
</rss>

