<?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; JavaScript</title>
	<atom:link href="http://zeuscn.net/index.php/archives/tag/javascript/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>无插件实现 WordPress Lightbox 特效</title>
		<link>http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html</link>
		<comments>http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 16:14:42 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[D&Z Theme]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=658</guid>
		<description><![CDATA[上一篇日志介绍了让 WordPress 原生相册功能实现基于 jQuery 的 lightbox 特效，技巧是利用了 lightbox 的一个调用方法，依照同样的方法我们也可以让 WordPress 原生的图片功能也能获得 lightbox 特效，也就是说在文章中插入一张图片的情况下也能实现点击放大浏览这种特效。 其原理也很简单，我们在直接利用 WordPress 文章编辑后台插入“上传、相册或媒体里已经存在的图片”： 之后程序会自动在前台页面代码中插入一个叫做 “wp-caption” 的 class 那么和上一篇方法一样，先去官方网站下载一套 jQuery 的 lightbox plugin ，解压压缩包之后分别在 js 目录和 css 目录下找到如下3个文件： jquery.js jquery.lightbox-0.5.min.js jquery.lightbox-0.5.css 将以上三个文件通过 FTP 上传到你所使用的 wordpress 主题目录下，然后在 &#60;head&#62;&#60;/head&#62; 标签内插入以下代码即可： &#60;script type=&#34;text/javascript&#34; src=&#34;&#60;?php bloginfo&#40;'template_directory'&#41;; ?&#62;/jquery.js&#34;&#62;&#60;/script&#62; &#60;?php if &#40;is_single&#40;&#41; or is_page&#40;&#41;&#41; &#123; ?&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;&#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p>上一篇日志介绍了<a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html" target="_blank">让 WordPress <strong>原生相册</strong>功能实现基于 jQuery 的 lightbox 特效</a>，技巧是利用了 lightbox 的一个调用方法，依照同样的方法我们也可以让 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> <strong>原生的图片</strong>功能也能获得 lightbox 特效，也就是说在文章中插入一张图片的情况下也能实现点击放大浏览这种特效。</p>
<p>其原理也很简单，我们在直接利用 WordPress 文章编辑后台插入“上传、相册或媒体里已经存在的图片”：<br />
<div id="attachment_659" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/wp-caption.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/wp-caption-300x267.jpg" alt="WP 文章编辑插入图片" title="点击放大" width="300" height="267" class="size-medium wp-image-659" /></a><p class="wp-caption-text">WP 文章编辑插入图片</p></div></p>
<p>之后程序会自动在前台页面代码中插入一个叫做 “wp-caption” 的 class<br />
<div id="attachment_660" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/wp-caption2.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/wp-caption2-300x290.jpg" alt="自动生成 wp-caption" title="点击放大" width="300" height="290" class="size-medium wp-image-660" /></a><p class="wp-caption-text">自动生成 wp-caption 这个class</p></div></p>
<p>那么和上一篇方法一样，先去官方网站下载一套 <a href="http://zeuscn.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> 的 lightbox plugin ，解压压缩包之后分别在 js 目录和 <a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">css</a> 目录下找到如下3个文件：<br />
jquery.js<br />
jquery.lightbox-0.5.min.js<br />
jquery.lightbox-0.5.css<br />
将以上三个文件通过 FTP 上传到你所使用的 wordpress 主题目录下，然后在 &lt;head&gt;&lt;/head&gt; 标签内插入以下代码即可：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.js&quot;&gt;&lt;/script&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> or is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.lightbox-0.5.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/css&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.lightbox-0.5.css&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(function() {
     $('.gallery a').lightBox(); //给原生相册功能加入 lightbox 特效
     $('.wp-caption a').lightBox(); //给原生图片功能加入 lightbox 特效
});
&lt;/script&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>当然了，由于其中加入了判断，这个效果也只会出现在“文章页”和“页面页”。以上是主题在不支持 jQuery 的时候所添加的代码，如果主题已经加载了 jQuery 库，则需要酌情增加相关的代码了。 </p>
<p>总结一下，基于 jQuery 的 lightbox ，我们无需任何其它 WordPress 的插件，就可以让 WordPress 原生的图片功能和相册功能都具有 lightbox 图片点击放大的特效。而且这个是基于 jQuery 库的一种扩展，因而我们可以在主题里方便的同时应用多种 jQuery 特效～ 比如 <a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&amp;Z Theme Pro CP</a> 主题侧栏 TAB 栏的切换效果、整站的锚点滚动和文章栏侧栏“MyConverse – 每个人都应该有一双匡威”栏目下的图片效果。</p>
<p>最后上几张实例展示：<br />
<div id="attachment_663" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/11/OP.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/11/OP-300x237.jpg" alt="擎天柱 CG 图" title="OP" width="300" height="237" class="size-medium wp-image-663" /></a><p class="wp-caption-text">擎天柱 CG 图</p></div> <div id="attachment_662" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/11/Ravage.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/11/Ravage-300x213.jpg" alt="机器狗 CG 图" title="Ravage" width="300" height="213" class="size-medium wp-image-662" /></a><p class="wp-caption-text">机器狗 CG 图</p></div> <div id="attachment_661" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/11/Starscream.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/11/Starscream-300x245.jpg" alt="红蜘蛛 CG 图" title="点击放大" width="300" height="245" class="size-medium wp-image-661" /></a><p class="wp-caption-text">红蜘蛛 CG 图</p></div> <div id="attachment_657" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/10/Devastator.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/10/Devastator-300x205.jpg" alt="大力神 CG 图" title="点击放大" width="300" height="205" class="size-medium wp-image-657" /></a><p class="wp-caption-text">大力神 CG 图</p></div><br />
YUPOO ID : ff8001e3-9f0b-4487-8c02-d9e45f8d1045</p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2009年, 十一月 1日</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/01/lightbox-for-wordpress-without-plugins-2.html">2009年, 十一月 1日</a>, <a href='http://zou.lu/' rel='external nofollow' class='url'>Showfom</a> writes: 用jq……</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2009年, 十一月 1日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: jq这玩意很时髦 :-D</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2009年, 十二月 15日</a>, <a href='http://www.licream.net' rel='external nofollow' class='url'>licream</a> writes: 你好，能提供下：
jquery.js
jquery.lightbox-0.5.min.js
jquery.lightbox-0.5.css这三个文件吗？谢谢啊 
或给个链接也行。我在网上找不到。- -</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2009年, 十二月 16日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 是和这个 jq 插件相关的这3个文件吗？</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2009年, 十二月 17日</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/01/lightbox-for-wordpress-without-plugins-2.html">2010年, 九月 20日</a>, <a href='http://yesure.net' rel='external nofollow' class='url'>yesureadmin</a> writes: 很酷 真的，哪三个文件哪下</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 23日</a>, <a href='http://servinion.weebly.com' rel='external nofollow' class='url'>servinion</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 25日</a>, <a href='http://PromiseProductionsUSA.com' rel='external nofollow' class='url'>Dallas Marketing</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 26日</a>, <a href='http://DallasSeniorPortraitPhotographer.com' rel='external nofollow' class='url'>Dallas Senior Portrait Photographer</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 26日</a>, <a href='http://www.evelyne-escort.com' rel='external nofollow' class='url'>Escort girl Paris</a> writes: <strong>I gotta {bookmark | favorite} this {website | web site | internet site | site} it seems {very useful | very helpful | invaluable | very beneficial | handy | extremely helpful} {very useful | very helpful | invaluable | very beneficial | handy | extre...</strong>

Just wanna input that you have a very nice internet site , I enjoy the style and design it really stands out....</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 26日</a>, <a href='http://arsenal.caucasus.net/user/qyofkmtgotogpbtydh/' rel='external nofollow' class='url'>best creatine supplements</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 27日</a>, <a href='http://wikibulls.com/wiki/index.php?title=User:PaulsenMenzies1181' rel='external nofollow' class='url'>LED Lights</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 27日</a>, <a href='http://www.paranormalactivitiesltd.com/' rel='external nofollow' class='url'>paranormal activities</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 27日</a>, <a href='http://rosspine.blogspot.com/' rel='external nofollow' class='url'>Ross Pine</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 27日</a>, <a href='http://freemoviedownloads887.tumblr.com/post/16568627234/unlimited-movie-downloads-tips-pick-the-best-dump' rel='external nofollow' class='url'>Free Movie Downloads</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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 27日</a>, <a href='http://www.zip-online.net/directory/online-shop-875/rss2.php' rel='external nofollow' class='url'>Online Shop</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://cleaning-business-tips.blogspot.com/' rel='external nofollow' class='url'>starting a cleaning business</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://smssales4text.com' rel='external nofollow' class='url'>target sms coupons</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://www.radiowings.net/mediawiki/index.php?title=User:EmmelineKilham3341' rel='external nofollow' class='url'>How to get Twitter followers</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://trader1ew.com' rel='external nofollow' class='url'>auto accessories</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://kredytychwilowkibezbik.com' rel='external nofollow' class='url'>kredyty chwilowki</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://www.ziki.com/en/harry-walker-1+797274/post/There-are-bunch+13738691' rel='external nofollow' class='url'>nono hair removal</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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://www.blitzeranwalt.net' rel='external nofollow' class='url'>Blitzeranwalt</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://themaninthesea.com/index.php/member/79165/' rel='external nofollow' class='url'>ms word</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 28日</a>, <a href='http://danielpeterson20.over-blog.com/pages/all-about-dual-sim-and-multi-sim-phones-6491460.html' rel='external nofollow' class='url'>olcso mobiltelefonok</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 29日</a>, <a href='http://en.netlog.com/alvinophi/blog/blogid=6000538#blog' rel='external nofollow' class='url'>Alvin Blog</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 29日</a>, <a href='http://www.askalivepsychic.com' rel='external nofollow' class='url'>MEDITATION AND KARMA</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 30日</a>, <a href='http://taxisacramento.org/index.php/2011/11/try-the-cybex-arc-trainer-to-shed-those-additional-lbs/' rel='external nofollow' class='url'>cybexarc trainer</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 30日</a>, <a href='http://www.facebook.com/notes/build-lean-muscle-mass/bsn-syntha-6-protein-powder-review/241904755886856' rel='external nofollow' class='url'>syntha six</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/11/01/lightbox-for-wordpress-without-plugins-2.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>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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 30日</a>, <a href='http://gpsforwalking.org/reviews/garmin-60csx' rel='external nofollow' class='url'>garmin gps 60csx</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 31日</a>, <a href='http://perrygpberry.tumblr.com' rel='external nofollow' class='url'>dating online</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 31日</a>, <a href='http://www.hugeyieldscam.com' rel='external nofollow' class='url'>huge yield scam</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 31日</a>, <a href='http://www.perfectcanvases.com' rel='external nofollow' class='url'>Laraine Antonacci</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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 一月 31日</a>, <a href='http://www.desispy.com/' rel='external nofollow' class='url'>Wade Scharich</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 1日</a>, <a href='http://svmomsalums.com/index.php/2011/12/just-how-to-become-a-man-magnet-here-are-actually-the-tools-which-will-aid-one-naturally-draw-in-all-men-real-fast/' rel='external nofollow' class='url'>how to become a guy magnet book</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 1日</a>, <a href='http://www.runescapechat.com/forum/member.php?u=1129822' 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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 1日</a>, <a href='http://www.grcdental.com.au' rel='external nofollow' class='url'>loupe light</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/11/01/lightbox-for-wordpress-without-plugins-2.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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 2日</a>, <a href='http://www.forbearrance.com/mortgage-broker-scott-tucker-helps-seniors-pay-for-long-term-care/' rel='external nofollow' class='url'>Scott Tucker Payday Loans</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 2日</a>, <a href='http://level5motorsports.com/team.cfm' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.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>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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 2日</a>, <a href='http://www.npr.org/templates/story/story.php?storyId=129195925' rel='external nofollow' class='url'>Scott Tucker Racing</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 2日</a>, <a href='http://www.imdb.com/name/nm0046112/' rel='external nofollow' class='url'>Scott Tucker CBS</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/11/01/lightbox-for-wordpress-without-plugins-2.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>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/11/01/lightbox-for-wordpress-without-plugins-2.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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 3日</a>, <a href='http://www.hugeyield.us' rel='external nofollow' class='url'>join huge yield</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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 3日</a>, <a href='http://www.gather.com/viewArticle.action?articleId=281474981076715' rel='external nofollow' class='url'>gynexin</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.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>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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 3日</a>, <a href='http://www.lighting-linx.com' rel='external nofollow' class='url'>clearwater homes</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 3日</a>, <a href='http://video-production-nyc.com/corporate/' rel='external nofollow' class='url'>corporate video production nyc</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 4日</a>, <a href='http://ezinearticles.com/?Top-Ten-Myths-About-Plastic-Surgery&#038;id=3907536' rel='external nofollow' class='url'>plastic surgery houston</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 4日</a>, <a href='http://www.bpo-companies.com' rel='external nofollow' class='url'>BPO Companies</a> writes: <strong>Informative and accurate...</strong>

Its difficult to find informative and precise information but here I noted...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 4日</a>, <a href='http://www.bpo-university.com/instructors.html' rel='external nofollow' class='url'>broker price opinions</a> writes: <strong>Wikipedia...</strong>

Wikipedia linked to this place...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 5日</a>, <a href='http://cpneworkshop.com/clinical-resources/8-resourse1/25--clinical-prep-resourse6' rel='external nofollow' class='url'>http://www.athletesacceleration.com</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 6日</a>, <a href='http://banknotegallery.blogspot.com' rel='external nofollow' class='url'>currency</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://escortmilano342.wordpress.com/2012/02/06/escort-milano/' rel='external nofollow' class='url'>escort milano</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://frostwire10.com/' rel='external nofollow' class='url'>frostwire</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://matthansen1231.tumblr.com/' rel='external nofollow' class='url'>full story</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://deedeecocheta.com/?p=66' rel='external nofollow' class='url'>Air Conditioning Repairs</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://escortservicelosangeles173.wordpress.com/2012/02/07/mens-dating-advice-3-dating-tips-that-will-get-you-more-action-this-coming-year/' rel='external nofollow' class='url'>escort agency los angeles</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://www.vilago21.com/event/Payam+Pedram+Explains+some+great+benefits+of+Managed+Futures/382186/profile' rel='external nofollow' class='url'>Payam Pedram</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://za.linkedin.com/in/chrismurraytours' rel='external nofollow' class='url'>chris murray</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://gamestopcoupons975.tumblr.com/post/17204775342/the-best-guide-to-coupon-codes' rel='external nofollow' class='url'>Gamestop Coupon</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://www.ziki.com/en/isaac-erickson+835890/post/Choosing-Your-P+13811387' rel='external nofollow' class='url'>best protein powder for women</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://emmalopez509000.webs.com/apps/blog/show/12205981-what-women-consider-when-searching-for-sugar-daddy-personals' rel='external nofollow' class='url'>sugar daddy</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://WorkwithMDP.com' rel='external nofollow' class='url'>Project Payday</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 7日</a>, <a href='http://www.youtube.com/watch?v=_tpDmAcqp4w' rel='external nofollow' class='url'>All Inclusive Holidays</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://www.youtube.com/watch?v=qGYE-2wry00' rel='external nofollow' class='url'>travel</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://www.vilago21.com/event/create' rel='external nofollow' class='url'>disco hire</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://community.atom.com/Post/Top-Dating-Tips-for-Guys--Be-described-as-a-Man/03EFBFFFF02598DE3000801878A6A' rel='external nofollow' class='url'>los angeles escort girls</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://jordanfleming5771992.blog.hr/2012/02/1629957282/find-the-best-seo-technique-for-new-websites.html' rel='external nofollow' class='url'>SEO Link Monster bonus</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://isellsevier.blog.com/2012/02/02/fluticasone-spray-fluticasone-nasal-spray/' rel='external nofollow' class='url'>fluticasone nasal spray</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://audrasilverman0.insanejournal.com/463.html' rel='external nofollow' class='url'>best penis extender</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://steveroberts922.siterun.eu/http://losangelesdentistusa.com/' rel='external nofollow' class='url'>beverly hills dentist</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://groups.diigo.com/group/erfksltikelypoprgqwt/content/soccer-player-methods-for-better-performance-4139139' rel='external nofollow' class='url'>goal crazy</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://donaldmason093.yoctown.com/3-Important-Web-site-desi.html' rel='external nofollow' class='url'>agencia web</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://groups.diigo.com/group/tqppnwumtufaewjixtpk/content/dining-tables-may-bring-the-household-together-4144567' rel='external nofollow' class='url'>best dining tables</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://zeduga.com' rel='external nofollow' class='url'>download free music</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://www.youtube.com/watch?v=Y0iw6uLAqQQ' rel='external nofollow' class='url'>Scott tucker</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 8日</a>, <a href='http://www.youtube.com/watch?v=qWgmmAhMuHU' 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/2009/11/01/lightbox-for-wordpress-without-plugins-2.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/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 9日</a>, <a href='http://www.vardacohen.com/candles-frosted' rel='external nofollow' class='url'>http://www.vardacohen.com/cake-toppers</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 9日</a>, <a href='http://www.ziki.com/en/tim-williams-9+840679/post/Plus-One-Foundr+13820512' rel='external nofollow' class='url'>buy google plus ones</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 9日</a>, <a href='http://www.lafermejerome.com/lfj-saison-2/merci-aux-fans-mais.html' rel='external nofollow' class='url'>Scott Tucker CBS</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 9日</a>, <a href='http://www.pennyauctioncustomers.com' rel='external nofollow' class='url'>zeek rewards sm</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/11/01/lightbox-for-wordpress-without-plugins-2.html">2012年, 二月 9日</a>, <a href='http://www.incompany.com/blog.php?user=charlottemarsh23&#038;blogentry_id=195651' rel='external nofollow' class='url'>Kinky curly curling custard Target</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html">http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.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/06/10/astriction.html" title="千呼万唤“屎”不出 (2008年, 六月 10日)">千呼万唤“屎”不出</a> (18)</li>
	<li><a href="http://zeuscn.net/archives/2008/12/21/affiche-of-dz-theme.html" title="关于 D&#038;Z Theme 的升级公告 (2008年, 十二月 21日)">关于 D&#038;Z Theme 的升级公告</a> (38)</li>
	<li><a href="http://zeuscn.net/archives/2007/07/05/sthaboutzeusblog.html" title="关于本站的一些说明 (2007年, 七月 5日)">关于本站的一些说明</a> (13)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/16/wow-theme-update.html" title="WOW Theme 更新 (2007年, 十二月 16日)">WOW Theme 更新</a> (1)</li>
	<li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html" title="使用自定义字段给 WordPress 添加日志图片 (2008年, 十一月 24日)">使用自定义字段给 WordPress 添加日志图片</a> (27)</li>
	<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> (120)</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/03/31/about-blog-ad.html" title="博客广告的那些事儿 (2008年, 三月 31日)">博客广告的那些事儿</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2008/06/28/blog-seo-summing-up-part-one.html" title="博客SEO优化技巧总结（一） (2008年, 六月 28日)">博客SEO优化技巧总结（一）</a> (16)</li>
	<li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html" title="WordPress 技巧—显示分类图片 (2008年, 九月 10日)">WordPress 技巧—显示分类图片</a> (18)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html/feed</wfw:commentRss>
		<slash:comments>89</slash:comments>
		</item>
		<item>
		<title>无插件让 WordPress 原生相册支持 lightbox</title>
		<link>http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html</link>
		<comments>http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 03:58:30 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=644</guid>
		<description><![CDATA[不提倡使用过多的 WordPress 插件，因为很多插件都会在 head 标签内增加大量的 JS，无疑这会影响到页面载入的速度，因而我就想能整合到主题里的效果尽量整合进来“统一管理”，这样自己也好让 JS 出现在它们需要的地方，避免不必要的加载。这里简单介绍一下给主题加入 jQuery 的 lightbox 特效后如何让它能够支持 WordPress 原生的图片相册功能。 我在上一篇日志里第一次使用了 WordPress 原生相册功能，给我感觉挺不错的——方便快捷，但是它的图片链接会重新打开图片，这着实不是很爽。另外，由于 D&#38;Z Theme Pro CP 主题已经内嵌了 jQuery 的 lightbox 特效，于是我就想能否将两者结合起来，不试不知道，一试还真成功了 而且还只是仅仅只是在 header.php 中加入了一句代码： $&#40;'.gallery a'&#41;.lightBox&#40;&#41;; D&#38;Z Theme Pro CP 的用户只需在 header.php 文件中搜索一下“lightbox”这个关键词，然后将上面那句代码添加成如下形式即可： $&#40;function&#40;&#41; &#123; $&#40;'a[@rel*=lightbox]'&#41;.lightBox&#40;&#41;; // Select all links that contains lightbox in the attribute rel $&#40;'.gallery a'&#41;.lightBox&#40;&#41;; &#125;&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>不提倡使用过多的 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 插件，因为很多插件都会在 head 标签内增加大量的 JS，无疑这会影响到页面载入的速度，因而我就想能整合到主题里的效果尽量整合进来“统一管理”，这样自己也好让 JS 出现在它们需要的地方，避免不必要的加载。这里简单介绍一下给主题加入 <a href="http://zeuscn.net/archives/tag/jquery" class="st_tag internal_tag" rel="tag" title="标签 jquery 下的日志">jQuery</a> 的 lightbox 特效后如何让它能够支持 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 原生的图片相册功能。</p>
<p>我在<a href="http://zeuscn.net/archives/2009/10/31/cool-photos.html" target="_blank">上一篇日志</a>里第一次使用了 WordPress 原生相册功能，给我感觉挺不错的——方便快捷，但是它的图片链接会重新打开图片，这着实不是很爽。另外，由于 <a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&amp;Z Theme Pro CP</a> 主题已经内嵌了 jQuery 的 lightbox 特效，于是我就想能否将两者结合起来，不试不知道，一试还真成功了 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />  而且还只是仅仅只是在 header.php 中加入了一句代码：</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<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> Pro CP 的用户只需在 header.php 文件中搜索一下“lightbox”这个关键词，然后将上面那句代码添加成如下形式即可：</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[@rel*=lightbox]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// Select all links that contains lightbox in the attribute rel</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>这里简单解释一下：<br />
jQuery lightbox 的官方介绍（<a href="http://leandrovieira.com/projects/jquery/lightbox/">http://leandrovieira.com/projects/jquery/lightbox/</a>）中可以得知调用 lightbox 特效的方法有如下几种：</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #006600; font-style: italic;">// Use this example, or...</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[@rel*=lightbox]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// Select all links that contains lightbox in the attribute rel</span>
	<span style="color: #006600; font-style: italic;">// This, or...</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// Select all links in object with gallery ID</span>
	<span style="color: #006600; font-style: italic;">// This, or...</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a.lightbox'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// Select all links with lightbox class</span>
	<span style="color: #006600; font-style: italic;">// This, or...</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// Select all links in the page</span>
	<span style="color: #006600; font-style: italic;">// ... The possibility are many. Use your creative or choose one in the examples above</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>当我们在 WordPress 中插入原生相册的时候，系统会自动在调用相册的源代码中加入 gallery 这个 class：<br />
<img class="aligncenter size-full wp-image-645" title="自动添加 gallery class" src="http://zeuscn.net/wp-content/uploads/2009/10/0011.jpg" alt="自动添加 gallery class" width="527" height="413" /></p>
<p>然后我根据 lightbox 的调用方法，将其中的</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// 凡是带有 gallery ID 的对象都会启用 lightbox 特效</span></pre></div></div>

<p>改为了</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #006600; font-style: italic;">// 凡是带有 gallery Class 的对象都会启用 lightbox 特效</span></pre></div></div>

<p>即可，相当 Easy 吧～ 这样 <a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&amp;Z Theme Pro CP</a> 主题就能良好的支持 WordPress 原生相册的功能了！<br />
<strong><br />
那么在一个不支持 lightbox 的 wordpress 主题里我们要如何做呢？</strong><br />
先去官方网站下载一套 jQuery 的 lightbox plugin ，解压压缩包之后分别在 js 目录和 <a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">css</a> 目录下找到如下3个文件：<br />
<strong>jquery.js</strong><br />
<strong>jquery.lightbox-0.5.min.js</strong><br />
<strong>jquery.lightbox-0.5.css</strong><br />
将以上三个文件通过 FTP 上传到你所使用的 wordpress 主题目录下<br />
打开主题的 header.php ，将如下代码加入到 &lt;head&gt;&lt;/head&gt; 标签内：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.lightbox-0.5.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.lightbox-0.5.css&quot; type=&quot;text/css&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>然后再加入上文介绍的：</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.gallery a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>就大功告成了～ 但是一般来说我们只会在文章页或者页面页调用相册功能，所以我们可以使用一个判断语句让它们只在这两类页面中加载：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> or is_archive or is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    &lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.lightbox-0.5.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/jquery.lightbox-0.5.css&quot; type=&quot;text/css&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
    $('#gallery a').lightBox();
    $('.gallery a').lightBox();
    &lt;/script&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>That&#8217;s all~<br />
使用以上方法我相信原生的 WordPress 相册就能满足大部分用户的需求了，用它来代替功能强大但略显臃肿的 NextGEN Gallery 相册插件基本没啥问题～</p>
<p>看过以上介绍还不赶紧给自己的主题加上这么酷的效果？<br />

<a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/attachment/005' title='005'><img width="150" height="150" src="http://zeuscn.net/wp-content/uploads/2009/10/0051-150x150.jpg" class="attachment-thumbnail" alt="005" title="005" /></a>
<a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/attachment/009' title='009'><img width="150" height="150" src="http://zeuscn.net/wp-content/uploads/2009/10/0091-150x150.jpg" class="attachment-thumbnail" alt="009" title="009" /></a>
<a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/attachment/004' title='004'><img width="150" height="150" src="http://zeuscn.net/wp-content/uploads/2009/10/0041-150x150.jpg" class="attachment-thumbnail" alt="004" title="004" /></a>
<a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/attachment/006' title='006'><img width="150" height="150" src="http://zeuscn.net/wp-content/uploads/2009/10/0061-150x150.jpg" class="attachment-thumbnail" alt="006" title="006" /></a>
<a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/003-2' title='003'><img width="150" height="150" src="http://zeuscn.net/wp-content/uploads/2009/10/0031-150x150.jpg" class="attachment-thumbnail" alt="003" title="003" /></a>
<a href='http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/attachment/007' title='007'><img width="150" height="150" src="http://zeuscn.net/wp-content/uploads/2009/10/0071-150x150.jpg" class="attachment-thumbnail" alt="007" title="007" /></a>
</p>
<p align="right">zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2009年, 十月 31日</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/31/lightbox-for-wordpress-without-plugins.html">2009年, 十月 31日</a>, <a href='http://imcat.in' rel='external nofollow' class='url'>Cat.</a> writes: 我等了很久了!!</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2009年, 十月 31日</a>, <a href='http://sivan.in/blog/' rel='external nofollow' class='url'>Sivan</a> writes: 没抢到沙发。现在用的picasa相册没用本地存图所以暂时使不上。</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2009年, 十月 31日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，一直担心 GFW 哪天发威把 picasa 也给墙掉，所以没敢用国外的相册...</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2009年, 十月 31日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 文章后半部分介绍了非 D&Z Theme Pro CP 的使用方法呀～</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.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: [...] 上一篇日志介绍了让 WordPress 原生相册功能实现基于 jQuery 的 lightbox 特效，技巧是利用了 lightbox 的一个调用方法，依照同样的方法我们也可以让 WordPress 原生的图片功能也能获得 lightbox 特效，也就是说在文章中插入一张图片的情况下也能实现点击放大浏览这种特效。 [...]</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2009年, 十一月 1日</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/31/lightbox-for-wordpress-without-plugins.html">2009年, 十一月 3日</a>, <a href='http://zhang3.net' rel='external nofollow' class='url'>张三</a> writes: 我靠，林子你的变形金刚真多……</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.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/31/lightbox-for-wordpress-without-plugins.html">2010年, 二月 22日</a>, <a href='http://www.sixi.info/20100221/jquery-lightbox.html' rel='external nofollow' class='url'>无插件让Wordpress支持jquery lightbox &raquo; 四夕小罗</a> writes: [...] 前几天看到zEUS.博客的一篇无插件让 WordPress 原生相册支持 lightbox的文章，心血来潮也想拥有个性的图片显示。 [...]</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2010年, 四月 11日</a>, <a href='http://limy.tk' rel='external nofollow' class='url'>limory</a> writes: 老大，请问如何在header.php中加载wordpress自身的jquery.js库文件？？？</li><li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">2012年, 一月 11日</a>, <a href='http://www.buyfanpagefans.com/' rel='external nofollow' class='url'>message fans facebook page</a> writes: <strong>Super Website...</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></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html">http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.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/10/09/share-a-seo-ppt.html" title="分享一套入门级 SEO PPT (2008年, 十月 9日)">分享一套入门级 SEO PPT</a> (13)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/18/diary-2.html" title="八月十八日 星期一 晴 (2008年, 八月 18日)">八月十八日 星期一 晴</a> (111)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/05/blogspot-come-back.html" title="重启 blogspot! (2007年, 十一月 5日)">重启 blogspot!</a> (9)</li>
	<li><a href="http://zeuscn.net/archives/2009/11/08/ajax-load-for-dztheme-pro.html" title="给博客首页增加了一个 Ajax 效果 (2009年, 十一月 8日)">给博客首页增加了一个 Ajax 效果</a> (26)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/16/wow-theme-update.html" title="WOW Theme 更新 (2007年, 十二月 16日)">WOW Theme 更新</a> (1)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/08/collapsible-more-link.html" title="wordpress插件：More Link (2007年, 八月 8日)">wordpress插件：More Link</a> (88)</li>
	<li><a href="http://zeuscn.net/archives/2007/10/15/more-text-modules.html" title="给 Widgets 增加更多的 TEXT 模块 (2007年, 十月 15日)">给 Widgets 增加更多的 TEXT 模块</a> (78)</li>
	<li><a href="http://zeuscn.net/archives/2008/06/30/dz-theme-widgets-ready-released.html" title="D&#038;Z Theme Widgets Ready 版本发布 (2008年, 六月 30日)">D&#038;Z Theme Widgets Ready 版本发布</a> (241)</li>
	<li><a href="http://zeuscn.net/archives/2006/11/25/mightyadsense.html" title="wordpress插件：MightyAdsense (2006年, 十一月 25日)">wordpress插件：MightyAdsense</a> (124)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/10/display-category-description.html" title="WordPress 如何调用分类描述 (2008年, 三月 10日)">WordPress 如何调用分类描述</a> (141)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>D&amp;Z Theme Pro Green CP 版发布</title>
		<link>http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html</link>
		<comments>http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html#comments</comments>
		<pubDate>Mon, 26 Oct 2009 16:04:15 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress模板]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[D&Z Theme]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[QQ]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[支付宝]]></category>
		<category><![CDATA[淘宝]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=618</guid>
		<description><![CDATA[主题名称: D&#38;Z Theme Pro Green (Control Pannel) 主题描述: 一款引入杂志元素的博客模板，基于免费主题 D&#38;Z Theme 进行二次开发而来，在此基础上丰富了页面设计，细节处理更加出色，并附带强大的后台设置，让您完全脱离代码即可玩转主题。主题原设计来自 Timer ，由 zEUS. 修改制作。 注:本主题的前身实为 D&#38;Z Theme Pro CP：http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html 两者除了配色不同外功能上90%以上都相同，在这里先指明不同之处： 去掉了 Google Adsense 设置，由于该功能并不大众化，并不是所有用户都需要投放 Google Adsense ，故而删除。 保留文章页的文章顶部的广告位，该广告位前身为 Google Adsense，如今改为图片链接的广告形式，该广告位可以方便的在主题后台进行设置。 去掉导航栏“分类目录”悬浮菜单，取而代之的是直接在主题后台设置页面链接。 主题功能: 支持侧边栏 Widget（小工具）设置，首页和内页为两种不同的侧边栏，可以分别设置 Widget（小工具）； 首页采用 CMS 排版，首页的 Flash 幻灯片和文章左侧的分类图片可以在后台轻松设置； 首页的文章自动输出固定长度的摘要，无需再担心首页的排版问题； 模板采用诸多 jQuery 特效，页面平滑滚动、TAB 栏渐变切换、无需额外插件整合 lightbox 图片特效； Javascript 代码引用合理，lightbox 图片特效特效适用于单篇日志页和页面页，所以模板的首页不会加载其代码，其余特效的 Javascript 代码集成在一个文件内，这样就减少了浏览器请求的次数，从一定程度上提高了页面载入的速度； 内置 [...]]]></description>
			<content:encoded><![CDATA[<p>主题名称: <strong><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 Green (Control Pannel)</strong></p>
<p>主题描述: 一款引入杂志元素的博客模板，基于免费主题 D&amp;Z Theme 进行二次开发而来，在此基础上丰富了页面设计，细节处理更加出色，并附带强大的后台设置，让您完全脱离代码即可玩转主题。主题原设计来自 <a href="http://www.dogorgod.com/" target="_blank">Timer</a> ，由 <a href="http://zeuscn.net/" target="_blank">zEUS.</a> 修改制作。</p>
<p>注:本主题的前身实为 D&amp;Z Theme Pro CP：<a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html</a> 两者除了配色不同外功能上90%以上都相同，在这里先指明不同之处：</p>
<blockquote><ul>
<li>去掉了 Google <a href="http://zeuscn.net/archives/tag/adsense" class="st_tag internal_tag" rel="tag" title="标签 Adsense 下的日志">Adsense</a> 设置，由于该功能并不大众化，并不是所有用户都需要投放 Google <a href="http://zeuscn.net/archives/tag/adsense" class="st_tag internal_tag" rel="tag" title="标签 Adsense 下的日志">Adsense</a> ，故而删除。</li>
<li>保留文章页的文章顶部的广告位，该广告位前身为 Google Adsense，如今改为图片链接的广告形式，该广告位可以方便的在主题后台进行设置。</li>
<li>去掉导航栏“分类目录”悬浮菜单，取而代之的是直接在主题后台设置页面链接。</li>
</ul>
</blockquote>
<p>主题功能:</p>
<ul>
<li><strong>支持侧边栏 <a href="http://zeuscn.net/archives/tag/widget" class="st_tag internal_tag" rel="tag" title="标签 widget 下的日志">Widget</a>（小工具）设置</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>，模板后台可以方便的设置输出在导航栏上的页面链接；</li>
<li>后台可以<strong>自定义模板侧栏的 Tab 栏</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/dzpg_index.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_index-178x300.jpg" alt="dzpg_index" title="dzpg_index" width="178" height="300" class="img_border" /></a> <a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_single.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_single-110x300.jpg" alt="dzpg_single" title="dzpg_single" width="110" height="300" class="img_border" /></a><br />
<a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_archive.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_archive-144x300.jpg" alt="dzpg_archive" title="dzpg_archive" width="144" height="300" class="img_border" /></a> <a rel="lightbox" href="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_search.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/06/dzpg_search-146x300.jpg" alt="dzpg_search" title="dzpg_search" width="146" height="300" class="img_border" /></a></p>
<p>售后服务：<br />
终生提供技术支持，但不包括页面样式外观的修改和调整。</p>
<p>主题售价：<br />
人民币 <strong>88</strong> 元<br />
<a href="http://item.taobao.com/auction/item_detail.jhtml?item_id=b6f82b53f4168abee1799e2d2276784e&#038;x_id=0db1" target="_blank">http://item.taobao.com/auction/item_detail.jhtml?item_id=b6f82b53f4168abee1799e2d2276784e&#038;x_id=0db1</a></p>
<p>打包出售：<br />
<a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&amp;Z Theme Pro CP 原版主题</a>+绿色版主题=<strong>人民币 99 元</strong><br />
<a href="http://item.taobao.com/auction/item_detail-0db1-47a19a11b1ca7e385b9ffefaa8d5bbad.htm" target="_blank">http://item.taobao.com/auction/item_detail-0db1-47a19a11b1ca7e385b9ffefaa8d5bbad.htm</a></p>
<p>曾经购买过 D&amp;Z Theme Pro CP 的用户获取绿色版主题仅需：人民币 <strong>11</strong> 元（以支付宝交易记录为准）<br />
<a href="http://item.taobao.com/auction/item_detail-0db1-5859e1e01b95a02c1777f20d8f78feff.htm" target="_blank">http://item.taobao.com/auction/item_detail-0db1-5859e1e01b95a02c1777f20d8f78feff.htm</a><br />
另外，<a href="http://zeuscn.net/archives/2009/07/28/dz-theme-pro-cp-sales-report.html" target="_blank">有言在先</a>，凡是在2009年8月1日之前购买 D&amp;Z Theme Pro CP 的朋友凭借支付宝的交易记录可以通过邮件或者QQ免费向我索取绿色版的主题 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </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 </p>
<p align="right">zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十月 27日</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/27/dz-theme-pro-cp-green-released.html">2009年, 十月 27日</a>, <a href='http://www.digglife.cn' rel='external nofollow' class='url'>摩摩诘</a> writes: 围观杰作!</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十月 27日</a>, <a href='http://sivan.in/blog/' rel='external nofollow' class='url'>Sivan</a> writes: 正点！</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十月 27日</a>, <a href='http://YuJan.com' rel='external nofollow' class='url'>牧狼羊</a> writes: 这个...我觉得真的是大同小异啊，这样子。。。。</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十月 27日</a>, <a href='http://interjc.net' rel='external nofollow' class='url'>interjc</a> writes: 越来越像一个system了</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十月 28日</a>, <a href='http://www.blogeing.com' rel='external nofollow' class='url'>天涯行客</a> writes: 真的很好很强大，很精致的主题</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十月 29日</a>, <a href='http://www.wyshuo.com/archives/1.html' rel='external nofollow' class='url'>yo2到独立 记录博客搬家历史录 &raquo; 我要说</a> writes: [...] 2009-10-27购买WordPress付费主题，详情点击：D-Z-Theme-Pro_CP_Green [...]</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十一月 4日</a>, <a href='http://www.jacse.com' rel='external nofollow' class='url'>Jacse</a> writes: 我也来顶一个，怎么把Adsense功能去掉了呢。</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2009年, 十二月 5日</a>, 璧僧 writes: 会不会出蓝色版？还是对蓝色比较有感觉!</li><li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">2012年, 一月 10日</a>, <a href='http://www.buyfanpagefans.com/' rel='external nofollow' class='url'>top fans facebook application</a> writes: <strong>Super Website...</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></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html">http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-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/2009/10/29/which-is-the-next-theme.html" title="Which is The Next Theme ? (2009年, 十月 29日)">Which is The Next Theme ?</a> (45)</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/2007/08/08/collapsible-more-link.html" title="wordpress插件：More Link (2007年, 八月 8日)">wordpress插件：More Link</a> (88)</li>
	<li><a href="http://zeuscn.net/archives/2011/01/26/2011-i-am-coming-back.html" title="2011, I am coming back. (2011年, 一月 26日)">2011, I am coming back.</a> (86)</li>
	<li><a href="http://zeuscn.net/archives/2009/11/04/my-post-in-igoogle.html" title="在 iGoogle 中发现自己的文章&#8230; (2009年, 十一月 4日)">在 iGoogle 中发现自己的文章&#8230;</a> (11)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/05/blogspot-come-back.html" title="重启 blogspot! (2007年, 十一月 5日)">重启 blogspot!</a> (9)</li>
	<li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html" title="WordPress 技巧—显示分类图片 (2008年, 九月 10日)">WordPress 技巧—显示分类图片</a> (18)</li>
	<li><a href="http://zeuscn.net/archives/2008/06/30/blog-seo-summing-up-part-two.html" title="博客SEO优化技巧总结（二） (2008年, 六月 30日)">博客SEO优化技巧总结（二）</a> (8)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/26/notice-about-ipple-theme.html" title="Notice：QQ 满员，请加群，谢谢支持 (2008年, 三月 26日)">Notice：QQ 满员，请加群，谢谢支持</a> (9)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>优化 header.php 加速 WordPress</title>
		<link>http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html</link>
		<comments>http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html#comments</comments>
		<pubDate>Tue, 21 Jul 2009 20:26:38 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=602</guid>
		<description><![CDATA[WordPress 以众多插件和主题而闻名，插件不仅给我们的博客提供了诸多强大的功能，而且还简便了操作美化了页面。但凡事都是具有两面性的，不少插件为了实现自己的功能都需要引用额外的 Javascript 和 CSS 样式，这些内容全部都被自动加载到了页面的 head 标签内，从一定程度上影响到了页面加载的速度。而实际上大部分时候我们不需要这些额外的内容。比如我的博客首页（index.php）、归档页（archive.php）和搜索结果页（search.php），都不会使用我已经启用的 Audio player 、Democracy 、WP-Syntax 、CoolCode 、Clean Archives Reloaded 这几个插件，而它们都会自动将一些额外的内容加入到 head 标签内，所以我只需要根据自己的需要，让这些插件只在文章页（single.php）和页面页（page.php）内加载即可。 WordPress 插件是根据下面这个函数进行加载的： &#60;?php wp_head&#40;&#41;; ?&#62; 我们可以在主题模板内的 header.php 文件中找到它，也就是说只要出现以上这个函数，插件就能自动将相关的内容加载到 head 标签内，如果没有这个函数，插件则不会加载这些内容。那么我只需要按照下面的写法就能按照我自己的需求在文章页（single.php）和页面页（page.php）内加载相关的插件功能了。 &#60;?php if &#40;is_single&#40;&#41; or is_page&#40;&#41;&#41; &#123; ?&#62; &#60;?php wp_head&#40;&#41;; ?&#62; &#60;?php &#125; ?&#62; 通过一个简单的判断语句我们就能有效的减少博客首页的“请求数量”以提高首页的加载速度，下面是首页和文章页 head 标签加载情况的两张对比图：（点击放大） 基本上，效果很明显！ 功能和速度就像鱼和熊掌一样难以兼得，对于博客/网站速度的优化还是蛮需要积累经验的。 zEUS. 日志评论2009年, 七月 22日, cuixi writes: 传说中的沙发! 兄弟做的不错,继续努力!2009年, [...]]]></description>
			<content:encoded><![CDATA[<p><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/javascript" class="st_tag internal_tag" rel="tag" title="标签 JavaScript 下的日志">Javascript</a> 和 <a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">CSS</a> 样式，这些内容全部都被自动加载到了页面的 head 标签内，从一定程度上影响到了页面加载的速度。而实际上大部分时候我们不需要这些额外的内容。比如我的博客首页（index.php）、归档页（archive.php）和搜索结果页（search.php），都不会使用我已经启用的 Audio player 、Democracy 、WP-Syntax 、CoolCode 、Clean Archives Reloaded 这几个插件，而它们都会自动将一些额外的内容加入到 head 标签内，所以我只需要<strong>根据自己的需要</strong>，让这些插件只在文章页（single.php）和页面页（page.php）内加载即可。</p>
<p>WordPress 插件是根据下面这个函数进行加载的：</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> wp_head<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>我们可以在主题模板内的 header.php 文件中找到它，也就是说只要出现以上这个函数，插件就能自动将相关的内容加载到 head 标签内，如果没有这个函数，插件则不会加载这些内容。那么我只需要按照下面的写法就能按照我自己的需求在文章页（single.php）和页面页（page.php）内加载相关的插件功能了。</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> or is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_head<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>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>通过一个简单的判断语句我们就能有效的减少<strong>博客首页</strong>的“请求数量”以提高首页的加载速度，下面是首页和文章页 head 标签加载情况的两张对比图：（点击放大）</p>
<p align=center><a rel="lightbox" href="http://pic.yupoo.com/zeuscn/714417c99862/wkx2p9mq.jpg"><img class="img_border" src="http://pic.yupoo.com/zeuscn/714417c99862/medium.jpg" alt="优化 header.php 加速 WordPress 首页加载速度" /></a></p>
<p align=center><a rel="lightbox" href="http://pic.yupoo.com/zeuscn/118127c99866/9gc4ty5p.jpg"><img class="img_border" src="http://pic.yupoo.com/zeuscn/118127c99866/medium.jpg" alt="优化 header.php 加速 WordPress 首页加载速度" /></a></p>
<p>基本上，效果很明显！</p>
<p>功能和速度就像鱼和熊掌一样难以兼得，对于博客/网站速度的优化还是蛮需要积累经验的。</p>
<p align="right">zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 22日</a>, <a href='http://www.vcbb.net' rel='external nofollow' class='url'>cuixi</a> writes: 传说中的沙发!
兄弟做的不错,继续努力!</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 22日</a>, <a href='http://showfom.com/' rel='external nofollow' class='url'>Showfom</a> writes: 
这个函数很多时候还是有用的
比如，用了all in one seo插件的，meta都在head函数里输出……

所以我的简易是，新手尽量全站保留</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 22日</a>, <a href='http://www.caxblog.com' rel='external nofollow' class='url'>Alex</a> writes: 这个方法不错，把自己代码改一下先。。</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 23日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: all in one <a href="http://zeuscn.net/archives/tag/seo" class="st_tag internal_tag" rel="tag" title="标签 SEO 下的日志">seo</a> 这个插件稍显臃肿，我已经在模板内集成了相关功能，可以自动取 tag 为 keywords 并截取文章前面一部分文字为 discription 
插件就是因为调用太多东西，所以才尽量少用为妙</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 23日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，谢谢兄弟的鼓励！</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 23日</a>, <a href='http://idea1983.com' rel='external nofollow' class='url'>KEVIN</a> writes: 学习了，也实用上了！很不错哦！</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 23日</a>, <a href='http://showfom.com/' rel='external nofollow' class='url'>Showfom</a> writes: 还是建议新手别取消 wp_head 这个函数，很多插件输出的js和css都是通过这个函数滴，所以取消的话首页有些效果会没有

我是全部把插件修改过，输出到头部的全部注释掉 嘎嘎</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 23日</a>, <a href='http://www.leecay.com' rel='external nofollow' class='url'>leecay</a> writes: 2.8以后速度比以前快了一些，不是很明显~</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 28日</a>, <a href='http://41free.com' rel='external nofollow' class='url'>随意自由</a> writes: 呵呵 wp都是调用数据库来的为什么我的主机同时在线30人cpu就高涨呢 超过98%
晕 服务器配置是酷睿5200 2G内存</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 七月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，这个问题我就不清楚了...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 八月 1日</a>, <a href='http://www.mangguo.org' rel='external nofollow' class='url'>芒果</a> writes: 不错，收藏研究。</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2009年, 八月 20日</a>, <a href='http://labnol.org.cn' rel='external nofollow' class='url'>labnol.org.cn</a> writes: 终于明白了，多谢哈。想和贵站换个友情链接，http://labnol.org.cn</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2010年, 一月 1日</a>, <a href='http://7che8.cn' rel='external nofollow' class='url'>聪壹艮</a> writes: 我是新手 很想改下，但是不敢动手，不知道具体要改那几个文件，望博主闲时指点一二，最后祝博主新年快乐！</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 23日</a>, <a href='http://servinion.weebly.com' rel='external nofollow' class='url'>servinion</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 26日</a>, <a href='http://PromiseProductionsUSA.com' rel='external nofollow' class='url'>Dallas Marketing</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 26日</a>, <a href='http://DallasSeniorPortraitPhotographer.com' rel='external nofollow' class='url'>Dallas Senior Portrait Photographer</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 26日</a>, <a href='http://www.americanantigravity.com/video/eric-davis-on-hyperspace.html' rel='external nofollow' class='url'>Hyperspace</a> writes: <strong>Great site...</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://www.kiteassist.org/wiki/index.php?title=User:AhudaKempster845' rel='external nofollow' class='url'>LED Lights</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://www.colorado-unemployment.com/' rel='external nofollow' class='url'>colorado unemployment website</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://www.dailystrength.org/people/1304053/journal' rel='external nofollow' class='url'>how to overcome laziness</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://jasmineaaron345.obolog.com/' rel='external nofollow' class='url'>newest porsche</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://wallinside.com/post-1271815.html' rel='external nofollow' class='url'>army boot camp training</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://www.ziki.com/en/donovan-franks+595116/post/how-i-found-my-dentist+13621908' rel='external nofollow' class='url'>Dentist</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 27日</a>, <a href='http://www.xdiscussion.com' rel='external nofollow' class='url'>Porn forum</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://www.alwayztherro.com/2011/05/16/cali-swag-district-artist-murdered/' rel='external nofollow' class='url'>ibuildfans</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://social.iindiabusiness.com/story.php?title=cheap-twitter-followers' rel='external nofollow' class='url'>More followers on Twitter</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://community.atom.com/Post/What-You-need-to-Do-To-Turn-out-to-be-A-Medical-Assistant/03EFBFFFF025875CE00080184CE31' rel='external nofollow' class='url'>medical assistant</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://christophershain.over-blog.com/pages/the-advantages-of-getting-replacement-windows-installed-inside-your-residence-6488690.html' rel='external nofollow' class='url'>windows Chicago</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://www.incompany.com/blog.php?user=rubenespinoza092&#038;blogentry_id=151912' rel='external nofollow' class='url'>electrolysis hair removal</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://community.atom.com/Post/Steps-to-make-Sure-Youre-Getting-the-Most-Out-of-Your-Critical-Prescription-Data/03EFBFFFF0258769F00080184D4FB' rel='external nofollow' class='url'>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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 28日</a>, <a href='http://fargoautomation.com/index.php/member/91074/' rel='external nofollow' class='url'>ms word</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 29日</a>, <a href='http://en.netlog.com/alvinophi/blog' rel='external nofollow' class='url'>Alin Ophy</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 30日</a>, <a href='http://www.evelyne-escort.com' rel='external nofollow' class='url'>Escort girl Paris</a> writes: <strong>Superb website...</strong>

[...]always a fan of linking to quality articles that I like but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 30日</a>, <a href='http://www.facebook.com/notes/build-lean-muscle-mass/bsn-syntha-6-protein-powder-review/241904755886856' rel='external nofollow' class='url'>syntha six by bsn</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/07/22/optimize-the-header-for-wordpress.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>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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 30日</a>, <a href='http://canusracing.com/member.php?59949-losigas' 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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 30日</a>, <a href='http://www.gpsforwalking.org' rel='external nofollow' class='url'>gps for walking</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 31日</a>, <a href='http://perrygpberry.tumblr.com' rel='external nofollow' class='url'>dating sites</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/07/22/optimize-the-header-for-wordpress.html">2012年, 一月 31日</a>, <a href='http://www.hugeyieldscam.com' rel='external nofollow' class='url'>huge yield scam</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 1日</a>, <a href='http://madshopping.net/index.php/just-how-to-become-a-guy-magnet-here-are-actually-the-tools-which-will-help-you-naturally-attract-a-man-real-fast/' rel='external nofollow' class='url'>james scott guy magnet download</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 1日</a>, <a href='http://matthewnorton8202057.blog.hr/2012/01/1629888579/t5-vw-transporter-can-it-be-the-best-van-ever.html' rel='external nofollow' class='url'>t5 van</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 1日</a>, <a href='http://community.atom.com/Post/Looking-for-A-Loan--Here-are-a-few-Options/03EFBFFFF0258D80A00080185B65A' rel='external nofollow' class='url'>cash loan</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 1日</a>, <a href='http://mind.cog.jhu.edu/groups/projectorsignupcalendar/wiki/76ef7/Link_Building.html#' rel='external nofollow' class='url'>Link Building</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 1日</a>, <a href='http://www.backlinkshopping.com' rel='external nofollow' class='url'>quality backlinks</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 1日</a>, <a href='http://mortgagemarketinggenius.com/' rel='external nofollow' class='url'>Scott Tucker Payday Loans</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://www.forbearrance.com/mortgage-broker-scott-tucker-helps-seniors-pay-for-long-term-care/' rel='external nofollow' class='url'>Scott Tucker Payday Loans</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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://aaliyahjones499.babybloggo.de/376757/Carolina-Plantations-North-carolina-retirement-communities/' rel='external nofollow' class='url'>North Carolina retirement communities</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://billlee675.skyrock.com/3066249835-Physical-rehabilitation-Has-One-of-the-Highest-Amounts-of-Job.html' rel='external nofollow' class='url'>physical therapy</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://www.incompany.com/blog.php?user=jonathanbrown556&#038;blogentry_id=168420' rel='external nofollow' class='url'>Electric Shaver Reviews</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://coldsoretreatment168.tumblr.com/post/16868966564/home-remedy-for-cold-sores-that-actually-works-fast' rel='external nofollow' class='url'>home remedies for cold sores</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://adammiller208.babybloggo.de/379765/Diversity-Jobs-A-Revolution-within-the-Modern-Day-Economy/' rel='external nofollow' class='url'>diversity jobs</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/07/22/optimize-the-header-for-wordpress.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>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 2日</a>, <a href='http://www.imdb.com/name/nm0046112/' rel='external nofollow' class='url'>Scott Tucker CBS</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/07/22/optimize-the-header-for-wordpress.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>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/07/22/optimize-the-header-for-wordpress.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>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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.hugeyield.us' rel='external nofollow' class='url'>join huge yield</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.quechup.com/blog/entry/view/id/908911' rel='external nofollow' class='url'>SEO Link Monster</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://svmomsalums.com/index.php/2011/12/is-bleeding-normal-in-the-course-of-pregnancy/' rel='external nofollow' class='url'>click here now</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.vilago21.com/event/Is+It+greater+To+Hire+External+Cleaning+Providers+For+Your+Business+enterprise/357430/profile' rel='external nofollow' class='url'>cleaning services Cardiff</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.vilago21.com/event/Scott+Tucker+Payday+Loans+Present+Several+of+the+Best+Rates+On+line/358201/profile' rel='external nofollow' class='url'>Scott Tucker Payday Loans</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.ziki.com/en/tim-torres-1+821093/post/Men-Leather-Wal+13783350' rel='external nofollow' class='url'>leather wallets for men</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/07/22/optimize-the-header-for-wordpress.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>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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.selkikeskus.com' rel='external nofollow' class='url'>clearwater beach condos</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 3日</a>, <a href='http://www.hbgajz.com' rel='external nofollow' class='url'>dunedin homes</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 4日</a>, <a href='http://www.flixya.com/blog/4096814/Scott-Tucker-Racing-In-the-Daytona-Dream-Race' 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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 4日</a>, <a href='http://www.cellulitetreatment.com' rel='external nofollow' class='url'>cellulite treatment</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 4日</a>, <a href='http://www.vilago21.com/event/Scott+Tucker+CBS+Is+often+a+Different+Kind+of+CBS/363145/profile' 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/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 4日</a>, <a href='http://miguelhamel1130865.blog.hr/2012/02/1629918044/scott-tucker-leawood-is-really-a-level-5-tale.html' rel='external nofollow' class='url'>Scott Tucker Leawood</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 4日</a>, <a href='http://www.bpo-companies.com/reo.php' rel='external nofollow' class='url'>REO Companies</a> writes: <strong>Its a challenge to find good help...</strong>

I am forever saying that its difficult to get good help, but here is...</li><li><a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 4日</a>, <a href='http://www.bpo-automation.com/contact.html' rel='external nofollow' class='url'>bpo auto accept software</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://wallinside.com/post-1281513.html' rel='external nofollow' class='url'>fastest way to get rid of a cold sore</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://www.refinedhype.com/member/55140/' rel='external nofollow' class='url'>Different Types of Loans</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://cheapdigg.com/News/types-of-loans/' rel='external nofollow' class='url'>Bankruptcy</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://www.peeje.com/upload' rel='external nofollow' class='url'>Video</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://www.zerofungus.com' rel='external nofollow' class='url'>nail fungus</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://choiceconsolidation.com' rel='external nofollow' class='url'>consolidate credit card debt</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://burostuhl-test.blogspot.com/' rel='external nofollow' class='url'>Bürostuhl test</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://www.youtube.com/watch?v=tpDt82Wxgk4' rel='external nofollow' class='url'>maryland short sale attorney</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 6日</a>, <a href='http://www.folkd.com/detail/www.almaformichigan.com%2Fstory.php%3Ftitle%3Dnorth-myrtle-beach-visitors-guide' rel='external nofollow' class='url'>North Myrtle Beach Vacations</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 7日</a>, <a href='http://mylancannon.com/blog/2011/06/20/horse-exercise-trainer-tammy-fox/' rel='external nofollow' class='url'>Air Conditioning Repairs</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 7日</a>, <a href='http://creativecommons.tw/blog/20110901' rel='external nofollow' class='url'>Keyword doesn't matter</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 7日</a>, <a href='http://www.quechup.com/blog/entry/view/id/937096' rel='external nofollow' class='url'>protein powder for women</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 8日</a>, <a href='http://stryks.com/story.php?id=155369' rel='external nofollow' class='url'>tanie noclegi zakopane</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 8日</a>, <a href='http://isellsevier.blog.com/2012/02/02/fluticasone-spray-fluticasone-nasal-spray/' rel='external nofollow' class='url'>nasal spray</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 8日</a>, <a href='http://villagevoicepimp.com/' rel='external nofollow' class='url'>Village Voice</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 8日</a>, <a href='http://www.youtube.com/watch?v=ckvnZfammcA' rel='external nofollow' class='url'>Scott tucker</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 9日</a>, <a href='http://www.lafermejerome.com/lfj-saison-2/merci-aux-fans-mais.html' rel='external nofollow' class='url'>Scott Tucker CBS</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 9日</a>, <a href='http://www.quechup.com/blog/entry/view/id/946287' rel='external nofollow' class='url'>Brooklyn Maid Service</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 9日</a>, <a href='http://madelinejames902.siterun.eu/index.php?pg=15002' rel='external nofollow' class='url'>marketing with anik</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/07/22/optimize-the-header-for-wordpress.html">2012年, 二月 9日</a>, <a href='http://www.pennyauctioncustomers.com' rel='external nofollow' class='url'>understanding zeekrewards</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html">http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.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/12/16/aspire.html" title="wordpress模板推荐：Aspire (2007年, 十二月 16日)">wordpress模板推荐：Aspire</a> (10)</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/06/24/zeusblogisreloading.html" title="zEUS.&#8217; Blog Is Reloading&#8230; (2007年, 六月 24日)">zEUS.&#8217; Blog Is Reloading&#8230;</a> (186)</li>
	<li><a href="http://zeuscn.net/archives/2009/06/16/1st-trade-of-09-wordpress-tshirt.html" title="09’夏季 WordPress 文化衫第一批团购结束 (2009年, 六月 16日)">09’夏季 WordPress 文化衫第一批团购结束</a> (92)</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/28/easily-create-a-link-page.html" title="简单定制 WordPress 友情链接页面 (2008年, 三月 28日)">简单定制 WordPress 友情链接页面</a> (114)</li>
	<li><a href="http://zeuscn.net/archives/2009/10/31/lightbox-for-wordpress-without-plugins.html" title="无插件让 WordPress 原生相册支持 lightbox (2009年, 十月 31日)">无插件让 WordPress 原生相册支持 lightbox</a> (12)</li>
	<li><a href="http://zeuscn.net/archives/2009/07/15/css-opacity.html" title="CSS opacity 实例页面 (2009年, 七月 15日)">CSS opacity 实例页面</a> (79)</li>
	<li><a href="http://zeuscn.net/archives/2009/10/27/dz-theme-pro-cp-green-released.html" title="D&#038;Z Theme Pro Green CP 版发布 (2009年, 十月 27日)">D&#038;Z Theme Pro Green CP 版发布</a> (10)</li>
	<li><a href="http://zeuscn.net/archives/2007/10/13/blockquote-effect.html" title="另一个 CSS 效果：增加 blockquote 属性 (2007年, 十月 13日)">另一个 CSS 效果：增加 blockquote 属性</a> (94)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/07/22/optimize-the-header-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>91</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><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 (Control Pannel)</strong></p>
<p>主题描述: 一款引入杂志元素的博客模板，基于免费主题 D&amp;Z Theme 进行二次开发而来，在此基础上丰富了页面设计，细节处理更加出色，并附带强大的后台设置，让您完全脱离代码即可玩转主题。主题原设计来自 <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://zeuscn.net/archives/tag/%e6%b7%98%e5%ae%9d" class="st_tag internal_tag" rel="tag" title="标签 淘宝 下的日志">淘宝</a>：<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 比起来简直就是小巫见大巫，但是 Ipple 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><li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html">2012年, 二月 9日</a>, <a href='http://owenwood563.soup.io/post/229977499/A-fresh-Authors-Guide-to-Book-Publishing' rel='external nofollow' class='url'>mikazuki publishing house</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></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/11/26/javascript-drop-down-menu-for-dz-theme.html" title="给 D&#038;Z Theme 增加一个额外的悬浮菜单 (2008年, 十一月 26日)">给 D&#038;Z Theme 增加一个额外的悬浮菜单</a> (26)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/13/plans-of-wordpress-themes.html" title="WordPress 主题计划 (2007年, 十二月 13日)">WordPress 主题计划</a> (101)</li>
	<li><a href="http://zeuscn.net/archives/2008/09/02/dztheme-is-coming.html" title="DZTHEME.COM 震撼上线 (2008年, 九月 2日)">DZTHEME.COM 震撼上线</a> (90)</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/28/easily-create-a-link-page.html" title="简单定制 WordPress 友情链接页面 (2008年, 三月 28日)">简单定制 WordPress 友情链接页面</a> (114)</li>
	<li><a href="http://zeuscn.net/archives/2010/02/23/share-a-product-template-of-taobao.html" title="分享自制淘宝商品页模板 PSD&#038;HTML (2010年, 二月 23日)">分享自制淘宝商品页模板 PSD&#038;HTML</a> (129)</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/2006/12/26/sidebar.html" title="模板修改手札之分离Sidebar (2006年, 十二月 26日)">模板修改手札之分离Sidebar</a> (90)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/16/aspire.html" title="wordpress模板推荐：Aspire (2007年, 十二月 16日)">wordpress模板推荐：Aspire</a> (10)</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>
	<br />
<b>Fatal error</b>:  Maximum execution time of 30 seconds exceeded in <b>E:\zeuscn.net\wp-includes\feed-rss2.php</b> on line <b>49</b><br />
<br />
<b>Fatal error</b>:  Maximum execution time of 30 seconds exceeded in <b>E:\zeuscn.net\wp-includes\wp-db.php</b> on line <b>502</b><br />

