<?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; php</title>
	<atom:link href="http://zeuscn.net/index.php/archives/tag/php/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 文章标题的长度（顺带测试一下超长的标题输出）</title>
		<link>http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html</link>
		<comments>http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html#comments</comments>
		<pubDate>Mon, 30 Nov 2009 16:02:44 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[character encoding]]></category>
		<category><![CDATA[iso 8859]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=724</guid>
		<description><![CDATA[虽然大多数时候我们不需要去管 WordPress 文章标题有多长，因为一般比较长的标题会自动分为两行显示。但是有时候我们为了控制模板的样式整洁，希望文章标题只显示成一行，比如 D&#038;Z Theme Pro CP 主题首页幻灯片右侧的“最新的一篇日志”，这里我首先使用固定长度的摘要来控制文章长度，但是如果有时候文章标题过长而显示成两行的时候，文章摘要就会出现“溢出”。这个时候如果能让标题的长度固定为一行，就能让这里的样式看起来更整洁。在好友 Lee 的帮助下，我解决了这个问题。 其实解决这个问题很简单，只需要一句话就行了。在 WordPress 里，我们使用 &#60;?php the_title&#40;&#41;; ?&#62; 来输出文章标题，与其相关的还有一个函数： &#60;?php get_the_title&#40;&#41;; ?&#62; 简单的说说两者的关系，get_the_title() 返回值是一个字符串（文章标题），而 the_title() 就是该字符串通过 echo 输出后的值。 实际上就是 WordPress 自己在输出文章标题时进行了简化，直接用 &#60;?php the_title&#40;&#41;; ?&#62; 代替了 &#60;?php echo get_the_title&#40;&#41;; ?&#62; 除此之外这里还需要用到另外一个函数：mb_strimwidth(string str, int start, int width, [string trimmarker], [string encoding]); mb_strimwidth() truncates string str to specified width. It [...]]]></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/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&#038;Z Theme Pro CP</a> 主题首页幻灯片右侧的“最新的一篇日志”，这里我首先使用固定长度的摘要来控制文章长度，但是如果有时候文章标题过长而显示成两行的时候，文章摘要就会出现“溢出”。这个时候如果能让标题的长度固定为一行，就能让这里的样式看起来更整洁。在好友 Lee 的帮助下，我解决了这个问题。</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> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>来输出文章标题，与其相关的还有一个函数：</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> get_the_title<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>简单的说说两者的关系，get_the_title() 返回值是一个字符串（文章标题），而 the_title() 就是该字符串通过 echo 输出后的值。<br />
实际上就是 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> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>代替了</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_the_title<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>除此之外这里还需要用到另外一个函数：mb_strimwidth(string str, int start, int width, [string trimmarker], [string encoding]);</p>
<blockquote><p>mb_strimwidth() truncates string str to specified width. It returns truncated string. </p>
<p>If trimmarker is set, trimmarker is appended to return value. </p>
<p>start is start position offset. Number of characters from the beginning of string. (First character is 0) </p>
<p>trimmarker is string that is added to the end of string when string is truncated. </p>
<p>encoding is <a href="http://zeuscn.net/archives/tag/character-encoding" class="st_tag internal_tag" rel="tag" title="标签 character encoding 下的日志">character encoding</a>. If it is omitted, internal encoding is used. </p></blockquote>
<p>现在大部分的 <a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a> 服务器都支持了 MB 库（mbstring 库 全称是 Multi-Byte String 即各种语言都有自己的编码，他们的字节数是不一样的，目前php内部的编码只支持ISO-8859-*, EUC-JP, <a href="http://zeuscn.net/archives/tag/utf-8" class="st_tag internal_tag" rel="tag" title="标签 utf-8 下的日志">UTF-8</a> 其他的编码的语言是没办法在 php 程序上正确显示的。解决的方法就是通过 php 的 mbstring 函数库来解决），所以我们可以放心的使用这个用于控制字符串长度的函数：</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;">echo</span> <span style="color: #990000;">mb_strimwidth</span><span style="color: #009900;">&#40;</span>get_the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">38</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'...'</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>那么我们只需要用上面这个函数替换 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> the_title<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>即可，这里我输出了字符串的<strong>第0位到第38位</strong>，根据主题的不同可以自行设置该数值，另外多余长度部分使用“&#8230;”代替。</p>
<div id="attachment_725" class="wp-caption aligncenter" style="width: 310px"><a href="http://zeuscn.net/wp-content/uploads/2009/12/wp-title-width.jpg"><img src="http://zeuscn.net/wp-content/uploads/2009/12/wp-title-width-300x130.jpg" alt="控制 WordPress 文章标题长度" title="点击放大" width="300" height="130" class="size-medium wp-image-725" /></a><p class="wp-caption-text">控制 WordPress 文章标题长度</p></div>
<p>其实我在控制文章摘要的时候也是使用的这个函数，比如我在 <a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" target="_blank">D&#038;Z Theme Pro CP</a> 主题的首页里使用的就是</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;">echo</span> <span style="color: #990000;">mb_strimwidth</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span>apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_content</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">470</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;......&quot;</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>来输出470个字符长度的摘要，并过滤了 HTML 标记。</p>
<p>虽然这是个很简单的方法，但我相信它对主题制作者而言还是相当实用的 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://www.life-studio.cn' rel='external nofollow' class='url'>万戈</a> writes: 一般超长，我用overflow:hidden;哈哈～
摘要截断输出用mb_strimwidth很不错，已经用到主题上了，自我升级，谢谢老大</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://www.digglife.cn' rel='external nofollow' class='url'>摩摩诘</a> writes: Z兄的技术贴写得都很通俗易懂。</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://louishan.com/' rel='external nofollow' class='url'>Louis Han</a> writes: 如果题目中有英文或者符号，会不会被截断？</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 它不考虑字符串里是中文还是英文还是符号，全部都可以截断</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，我觉得我比较啰嗦，想极力说得更明白 :-)</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: overflow:hidden 会把文字掐断，不是太美观，不过我以前也是用这个，呵呵</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://dogorgod.com/' rel='external nofollow' class='url'>Timer</a> writes: 实用！很久没看兄弟的技术型文章了，激动</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://www.mozin.org' rel='external nofollow' class='url'>默默</a> writes: 非常好，最近正好遇到了标题超长导致显示不正常的问题，非常感谢！</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 1日</a>, <a href='http://www.dgdxbxg.com/bb' rel='external nofollow' class='url'>大兴</a> writes: 实用，知识下！</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 2日</a>, <a href='http://wyshuo.com' rel='external nofollow' class='url'>星网</a> writes: ......我需不需要？问题是我还是不会~~~</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 2日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 基本上需要... 照着步骤做吧，其实很简单的...</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 2日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，不客气 :-)</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 2日</a>, <a href='http://blogmars.com/' rel='external nofollow' class='url'>Mars</a> writes: 不错，学习了，不过，如果作者能在写的时候，就精简下标题，会更好。</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 7日</a>, <a href='http://www.jutoy.net' rel='external nofollow' class='url'>Jutoy</a> writes: 一般情况下用不到这么长的标题，哈哈……</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 8日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 有时候 <a href="http://zeuscn.net/archives/tag/cms" class="st_tag internal_tag" rel="tag" title="标签 cms 下的日志">CMS</a> 主题需要这种方法 :-)</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 19日</a>, <a href='http://interjc.net' rel='external nofollow' class='url'>interjc</a> writes: http://codex.wordpress.org/Function_Reference/wp_trim_excerpt</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2009年, 十二月 27日</a>, <a href='http://www.180life.cn/archives/73.html' rel='external nofollow' class='url'>如何控制 WordPress 文章标题的长度 | 180度生活</a> writes: [...] | zEUS.’Blog » 如何控制 WordPress 文章标题的长度（顺带测试一下超长的标题输出）&#8221; /&gt;     Trackback URL | Say [...]</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2010年, 一月 3日</a>, <a href='http://%/spzasibsk' rel='external nofollow' class='url'>Shadow</a> writes: <strong><a href="http://z7k.cinemajokes.ru" rel="nofollow"> </a><a href="http://qh3.cinemajokes.ru" rel="nofollow"></a><a href="http://g5d.cinemajokes.ru" rel="nofollow"> </a><a href="http://qs4.cinemajokes.ru" rel="nofollow"> </a>...</strong>

Норм<b><a href="http://g7k.cinemajokes.ru" rel="nofollow"> </a><a href="http://qa3.cinemajokes.ru" rel="nofollow"> </a><a href="http://aad.cinemajokes.ru" rel="nofollow"> </a><a href="http://fs4.cinemajokes.ru" rel="nofollow"> </a>...</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2010年, 二月 8日</a>, <a href='http://www.jfond.com' rel='external nofollow' class='url'>像风一样自由</a> writes: 学习了，很强大</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2010年, 二月 25日</a>, <a href='http://www.jfond.com' rel='external nofollow' class='url'>像风一样自由</a> writes: Q群不让加？

请教博主，侧边栏最新日志的标题截断该如何做呢？
期待解答</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2010年, 三月 19日</a>, <a href='http://www.linuxhobby.com' rel='external nofollow' class='url'>麦叔</a> writes: 这个可以用CSS来实现吧!</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2011年, 二月 19日</a>, <a href='http://www.22frame.com/blog' rel='external nofollow' class='url'>22frame</a> writes: 侧边栏的标题可以设置截断吗?</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2011年, 二月 19日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 可以的，原理类似，但是具体要看输出什么内容了，最新文章？随机文章？
最新留言的截断效果可以参见我的侧栏。</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2011年, 二月 25日</a>, <a href='http://www.52digital.com' rel='external nofollow' class='url'>明月登楼</a> writes: 哈哈，不错，谢谢了，这个方法最科学了！</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2011年, 六月 13日</a>, bpm100 writes: 加到什么地方呢？</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2011年, 七月 10日</a>, 星仔 writes: 謝謝啦，研究很久了</li><li><a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html">2012年, 一月 18日</a>, <a href='http://www.swannwoodwork.com/' rel='external nofollow' class='url'>thanksgiving crafts for preschoolers and toddlers</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/12/01/wordpress-title-width-defined.html">http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html#comments"title="to the comments">发布评论</a>
      </p>
    <p>Copyright©<a href="%%blogurl%%">zEUScn.NET</a>.Some rights reserved.</p>
(Digital Fingerprint:<br /> 05538bd2e0492fe803256b5788cfa6fd)
	<ul class="st-related-posts">
	<li><a href="http://zeuscn.net/archives/2008/08/12/beta-diablo-iii-theme.html" title="大菠萝3 Diablo III WordPress 主题公开测试 (2008年, 八月 12日)">大菠萝3 Diablo III WordPress 主题公开测试</a> (36)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/07/blog-seo.html" title="针对博客的5招简单SEO优化方法 (2007年, 八月 7日)">针对博客的5招简单SEO优化方法</a> (28)</li>
	<li><a href="http://zeuscn.net/archives/2010/05/07/dz-theme-pro-cp-discontinued.html" title="D&#038;Z Theme Pro CP 即日起暂停出售 (2010年, 五月 7日)">D&#038;Z Theme Pro CP 即日起暂停出售</a> (121)</li>
	<li><a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html" title="WordPress 较常用的首页文章 CMS 排版方法 (2008年, 九月 11日)">WordPress 较常用的首页文章 CMS 排版方法</a> (108)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/13/plans-of-wordpress-themes.html" title="WordPress 主题计划 (2007年, 十二月 13日)">WordPress 主题计划</a> (100)</li>
	<li><a href="http://zeuscn.net/archives/2009/06/26/bbs-for-zeuscn.html" title="BBS.ZEUSCN.NET 上线试水 (2009年, 六月 26日)">BBS.ZEUSCN.NET 上线试水</a> (14)</li>
	<li><a href="http://zeuscn.net/archives/2006/11/25/mightyadsense.html" title="wordpress插件：MightyAdsense (2006年, 十一月 25日)">wordpress插件：MightyAdsense</a> (122)</li>
	<li><a href="http://zeuscn.net/archives/2007/06/28/livingtags.html" title="Let&#8217;s Move&#8230; Living Tags (2007年, 六月 28日)">Let&#8217;s Move&#8230; Living Tags</a> (5)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/15/2-english-themes-download.html" title="2款主题的英文版下载 (2008年, 二月 15日)">2款主题的英文版下载</a> (0)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2009/12/01/wordpress-title-width-defined.html/feed</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>使用自定义字段给 WordPress 添加日志图片</title>
		<link>http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html</link>
		<comments>http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html#comments</comments>
		<pubDate>Mon, 24 Nov 2008 14:13:04 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=531</guid>
		<description><![CDATA[自定义字段是 WordPress 的一个很强大的功能，但对于普通的使用者来说用处并不大&#8230; 关于如何通过自定义字段给 WordPress 博客首页中的每篇日志添加图片的方法，网上有不少介绍。我在给 www.vcbb.net 做模板时就用到了这个效果，方法是从 jinwen 的博客中（1、2、3、4）学到的，不过 jinwen 介绍的方法我在使用过程中遇到了问题，然后就对代码进行了小小的修正和修改，最终达到了自己想要的效果： 在博客首页的每一篇日志中都会显示一篇和内容相关的图片，该图片是我事先准备好的，而非日志中的缩略图，这张图片在单篇日志的内容中可以不予显示。如果我没有为日志指定一张图片，那么自动会有一张默认的图片进行“填充”。效果如下图所示： 这里分享一下我的制作经验，以及基于 jinwen 的方法并由我略做修改后的代码。 在 index.php 中找到如下或类似的代码 1 &#60;div class=&#34;post&#34; id=&#34;post-&#60;?php the_ID&#40;&#41;; ?&#62;&#34;&#62; 在它的后面紧接一段代码： 1 &#60;?php $image = get_post_meta&#40;$post-&#62;ID, 'index_image', true&#41;; ?&#62; 添加之后的效果如下： 1 2 &#60;div class=&#34;post&#34; id=&#34;post-&#60;?php the_ID&#40;&#41;; ?&#62;&#34;&#62; &#60;?php $image = get_post_meta&#40;$post-&#62;ID, 'index_image', true&#41;; ?&#62; 这其中的 index_image 这个新的变量就是我们即将在日志中用到的图片自定义字段。 继续往下，找到 1 &#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p>自定义字段是 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 的一个很强大的功能，但对于普通的使用者来说用处并不大&#8230;<br />
关于如何通过自定义字段给 WordPress 博客首页中的每篇日志添加图片的方法，网上有不少介绍。我在给 <a href="www.vcbb.net" target="_blank">www.vcbb.net</a> 做模板时就用到了这个效果，方法是从 <a href="http://smartr.cn/" target="_blank">jinwen </a>的博客中（<a href="http://smartr.cn/wordpress/adding-post-picture-with-wordpress-custum-fields-part-1.html" target="_blank">1</a>、<a href="http://smartr.cn/wordpress/adding-post-picture-with-wordpress-custum-fields-part-2-2.html" target="_blank">2</a>、<a href="http://smartr.cn/wordpress/adding-post-picture-with-wordpress-custum-fields-part-3.html" target="_blank">3</a>、<a href="http://smartr.cn/wordpress/adding-post-picture-with-wordpress-custum-fields-part-4.html" target="_blank">4</a>）学到的，不过 jinwen 介绍的方法我在使用过程中遇到了问题，然后就对代码进行了小小的修正和修改，最终达到了自己想要的效果：</p>
<p>在博客首页的每一篇日志中都会显示一篇和内容相关的图片，该图片是我事先准备好的，而非日志中的缩略图，<span id="more-531"></span>这张图片在单篇日志的内容中可以不予显示。如果我没有为日志指定一张图片，那么自动会有一张默认的图片进行“填充”。效果如下图所示：</p>
<p align=center><img class="img_border" src="http://pic.yupoo.com/zeuscn/2213868e1842/custom.jpg" alt="wordpress, 自定义字段" /></p>
<p>这里分享一下我的制作经验，以及基于 jinwen 的方法并由我略做修改后的代码。<br />
在 index.<a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">php</a> 中找到如下或类似的代码</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;">&lt;div class=&quot;post&quot; id=&quot;post-<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_ID<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>&quot;&gt;</pre></td></tr></table></div>

<p>在它的后面紧接一段代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #0000ff;">$image</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'index_image'</span><span style="color: #339933;">,</span> <span style="color: #000000; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>添加之后的效果如下：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;">&lt;div class=&quot;post&quot; id=&quot;post-<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_ID<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>&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #0000ff;">$image</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'index_image'</span><span style="color: #339933;">,</span> <span style="color: #000000; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>这其中的 index_image 这个新的变量就是我们即将在日志中用到的图片自定义字段。<br />
继续往下，找到</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>或</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>前者是输出摘要，后者是输出全文，了解 WordPress 的朋友肯定都知道，这里就不多说了。</p>
<p>找到这行代码后，我直接在它的前面添加如下代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php-brief" 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> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'index_image'</span><span style="color: #339933;">,</span> <span style="color: #000000; font-weight: bold;">true</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;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #0000ff;">$image</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<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>&quot; /&gt;&lt;/a&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'stylesheet_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/images/vc-default.png&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<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>&quot; /&gt;&lt;/a&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></td></tr></table></div>

<p>仔细看这段代码，这里我用了一个 if else 的条件判断语句：<br />
第一行中，if 括号里面的条件 &#8216;index_image&#8217; 如果为 true（真），也就是说，我在编辑文章时使用了这个自定义字段，那么就直接执行第二行代码：输出 index_image 这个值，index_image 的值是一张<strong>图片的绝对地址</strong>，所以我这里就直接输出了这张图片，并加上该篇日志的链接；<br />
第三行的 else 的意思是除了第一行条件 true（真）之外（那就是假了）的话就执行第四行的代码；<br />
第四行中我输出了一张位于主题文件夹的 images 目录下的默认的图片——vc-default.png ，同时也带上了文章的链接。</p>
<p>这样，必要的代码就添加完了，我们在编辑日志的时候，将页面的滚动条拉到位于页面下方的<strong>自定义字段</strong>一栏：</p>
<p align=center><img class="img_border" src="http://pic.yupoo.com/zeuscn/5231568e2484/m5i8qwf5.jpg" alt="wordpress, 自定义字段" /></p>
<p>根据上图步骤<br />
1、添加自定义字段名：index_image （添加过一次之后就直接能在下面的下拉菜单中选择了）；<br />
2、添加放在首页文章里的图片绝对地址；<br />
3、点击“添加自定义字段”的按钮。</p>
<p>这样，更新完日志之后就能在首页看到效果了～ 不过根据不同的博客主题，需要对这张图片进行不同的样式定义，比如 float:right 或 left ，亦或再给图片加个 border 等等，这就要看大家的想象力和喜好了。</p>
<p>另外在前文中提到的首页有可能是输出摘要，也有可能是全文输出，我个人的看法是：最好使用输出摘要——因为首页输出摘要时会省去文章中的图片，只保留文字内容，那么再配上这个自定义字段的图片，效果会更佳。</p>
<p>使用自定义字段给 WordPress 添加日志图片的方法就暂时介绍到这里，有兴趣的朋友不妨根据自己的主题模板也来折腾折腾这个效果～ 如有不清楚的地方，请在下面留言 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' /><br />
如果 <a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">CSS</a> 能力强的话，完全可以根据这个功能把 WordPress 的首页，或者某个特殊页面做成“画廊”式的风格～ 以后有机会的话咱也要试试看  <img src='http://zeuscn.net/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' />  </p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 24日</a>, <a href='http://www.1990y.com' rel='external nofollow' class='url'>yeasiz</a> writes: 学习了，我去k2主题里试试去。</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://smartr.cn' rel='external nofollow' class='url'>Jinwen</a> writes: 其实后来我也烦了加图片的事，所以自己把代码也改了，如果没有添加图片的话，就直接上google的广告！呵，挺不厚道的。哈哈。</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://www.leesum.com/blog' rel='external nofollow' class='url'>leesm</a> writes: :mrgreen: ZEUS越来越NB了，学习·············</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, sfb410 writes: 不错不错。多分享方法很好。</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 这个似乎很麻烦...考虑用options来解决菜鸟的问题 哈哈</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://humphreywong.cn' rel='external nofollow' class='url'>Humphrey</a> writes: 很好，现在就是需要这样的功能，稍后试试！谢谢！</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://humphreywong.cn' rel='external nofollow' class='url'>Humphrey</a> writes: 现在能看见了，呵呵……</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://smartr.cn' rel='external nofollow' class='url'>Jinwen</a> writes: 我有个问题，为什么我在ff和ie7下点击留言分布无效的？是不是只有我才有这种情况？</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 25日</a>, <a href='http://smartr.cn' rel='external nofollow' class='url'>Jinwen</a> writes: 是留言分页。</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 26日</a>, cynthia妮 writes: 觉得你写这种文文很能体现你细心的细腻风格 :lol:</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 26日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，我觉得我写这种文章挺罗嗦的...  叽里呱啦说了一大堆，也不知道别人看不看的懂...</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 26日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 你那篇文章非常不错呢～ 收藏先～ 以后肯定会用到这种效果的～</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 26日</a>, <a href='http://etian007.xintian.info/blog' rel='external nofollow' class='url'>etian007</a> writes: 这个步骤着实有些....</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 27日</a>, <a href='http://www.caxblog.com/' rel='external nofollow' class='url'>Stephen</a> writes: 这个功能是好，但发日志的时候都要做这样一个缩略图，有点麻烦！！</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 27日</a>, <a href='http://www.caxblog.com/' rel='external nofollow' class='url'>Stephen</a> writes: 其实我的意思是说，有没有这样一个插件，可以查找文章分类或tags，然后自动添加缩略图</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 27日</a>, <a href='http://www.notpig.com' rel='external nofollow' class='url'>NOTPIG</a> writes: 感觉如果假的话自定义字段，如果能根据文章分类显示图片就更好了</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: http://zeuscn.net/archives/2008/09/10/wordpress-category-icon/
你指的的是上面介绍的这种方法吗？</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 似乎功能不算太复杂，但是我不会... 哈哈～
也没听过有这样的插件...</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 28日</a>, <a href='http://hunterlog.com' rel='external nofollow' class='url'>Hunter</a> writes: :eek: 看了这篇文章如醍醐灌顶，茅塞顿开啊。。。感谢分享</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2008年, 十一月 29日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 不客气  :smile:</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2009年, 一月 14日</a>, <a href='http://xqr.co.cc' rel='external nofollow' class='url'>riant</a> writes: 有人分享过相关的教程啊，不过不是用自定义字段，自定义字段是针对单篇文章的吧，针对分类的话，使用的是一个动态的图片调用语句（希望这里看可以贴代码，下面的代码可以显示哈）：

<code>
category_nicename;
	echo "<a>";
	echo "</a>\n";  //分类图片的格式（图片地址的一部分）
	}
?&gt; 
</code></li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2009年, 一月 14日</a>, <a href='http://xqr.co.cc' rel='external nofollow' class='url'>riant</a> writes: 诶，我上面的代码没有全部显示出来，那篇文章也找不到了，看看下面这个我刚刚截的图吧。

<a href="http://www.flickr.com/photos/21411019@N08/3195608819/" title="Flickr 上 chriant 的 011405" rel="nofollow"></a></li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2009年, 一月 15日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 网上确实有实现这种效果的相关插件，呵呵，不过我还没来得及看...</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2010年, 一月 1日</a>, <a href='http://7che8.cn' rel='external nofollow' class='url'>聪壹艮</a> writes: 受益匪浅啊... 祝博主新年快乐，文章带回家了...</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2010年, 三月 9日</a>, <a href='http://%/112332' rel='external nofollow' class='url'>Derosa</a> writes: <strong><b><a href="http://www.foset.ru" rel="nofollow"> <a href="http://www.gerans.ru" rel="nofollow"> <a href="http://www.tialen.ru" rel="nofollow"> <a href="http://www.derost.ru" rel="nofollow"> </a></b>...</strong>

<b>Skoro eto sluchitsya<a href="http://www.tesam.ru" rel="nofollow"> <a href="http://www.waxen.ru" rel="nofollow"> <a href="http://www.festan.ru" rel="nofollow"> <a href="http://www.x-logers.net" rel="nofollow"> </a></b>...</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2011年, 二月 14日</a>, <a href='http://www.008m.cn' rel='external nofollow' class='url'>杨川小博</a> writes: 小弟还有一点不明白，就是小弟在后台没有找到自定义字段在哪，如果小哥看到了麻烦到小弟那给小弟说一下，谢谢了</li><li><a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">2011年, 二月 15日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 编辑文章的页面，自定义字段的官方翻译是“自定义栏目”，官方中文版下载是在 cn.wordpress.org
如今WP已经整合了缩略图的功能了，无需这么麻烦了，不过还是需要有主题支持。</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html">http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.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/04/03/fh-freedom-blue.html" title="wordpress模板 FH Freedom blue 0.2 (2007年, 四月 3日)">wordpress模板 FH Freedom blue 0.2</a> (10)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/04/2-0-1-version.html" title="博客版本升级 2.01 (2007年, 十一月 4日)">博客版本升级 2.01</a> (6)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/12/beta-diablo-iii-theme.html" title="大菠萝3 Diablo III WordPress 主题公开测试 (2008年, 八月 12日)">大菠萝3 Diablo III WordPress 主题公开测试</a> (36)</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/2007/09/15/my-favor-wordpress-plugins.html" title="我最喜欢的5个 wordpress 插件 (2007年, 九月 15日)">我最喜欢的5个 wordpress 插件</a> (81)</li>
	<li><a href="http://zeuscn.net/archives/2008/12/18/single-level-dropdowns-for-wordpress.html" title="针对 WordPress 模板导航栏2级悬浮菜单的一个很好的解决方案 (2008年, 十二月 18日)">针对 WordPress 模板导航栏2级悬浮菜单的一个很好的解决方案</a> (22)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/06/mistakes-i-made-in-blogging.html" title="响应“我在写博客过程中犯过的N个错误” (2007年, 八月 6日)">响应“我在写博客过程中犯过的N个错误”</a> (14)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/10/display-category-description.html" title="WordPress 如何调用分类描述 (2008年, 三月 10日)">WordPress 如何调用分类描述</a> (140)</li>
	<li><a href="http://zeuscn.net/archives/2007/07/04/blogbacktohome.html" title="博客胜利海归 (2007年, 七月 4日)">博客胜利海归</a> (16)</li>
	<li><a href="http://zeuscn.net/archives/2009/06/19/dz-theme-pro-cp-released.html" title="D&#038;Z Theme Pro CP 版正式（付费）发布 (2009年, 六月 19日)">D&#038;Z Theme Pro CP 版正式（付费）发布</a> (129)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/11/24/wordpress-custum-fields-pics.html/feed</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>又见日记</title>
		<link>http://zeuscn.net/archives/2008/10/26/diary-5.html</link>
		<comments>http://zeuscn.net/archives/2008/10/26/diary-5.html#comments</comments>
		<pubDate>Sun, 26 Oct 2008 15:35:47 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[与我有关]]></category>
		<category><![CDATA[变形金刚]]></category>
		<category><![CDATA[花花草草]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[动画]]></category>
		<category><![CDATA[大学]]></category>
		<category><![CDATA[奶粉]]></category>
		<category><![CDATA[玩具]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=514</guid>
		<description><![CDATA[周末转瞬即逝，明早去公司报销上次去十堰的费用后就要踏上去荆州征途了。由于手机不能漫游，所以今天去买了一张临时用的手机卡，亲朋好友若是要找我的话请见我的 QQ 签名里的临时手机号码。 上一次去十堰做测试计划只待5天，却因为移动迟迟不开通 APN 而耗费了我10天半的时间，这次去荆州也是做同样的事情，希望荆州市的移动公司办事效率能更高一些。 最近一段时间发现自己衣橱里的衣物有一大半都不是很适合现在的我了，随着年龄的增长，省美观也渐渐发生了变化。大学时期的我一直都是以运动休闲装为主，现在工作都一年半了，有必要慢慢转型了，不过我还是不喜欢太商务的服装，I hate 西裤&#038;皮鞋。 今天 SLL 以及她的 BF 还有 WQ 陪我出去街上逛了一圈，看了看衣裤以及手表，据我观察，今年秋冬季的休闲装较去年有近30%的涨幅，也就是去年 RMB 300+的衣裤现在都卖到了 RMB 400+，特别是一条 Lee 的牛仔裤竟然标到 RMB 1099 ！于是我开始怀疑金融危机真的来了吗？还是通货膨胀了？看到国外这些品牌衣物不可理喻的高暴利，我开始倾向于支持淘宝上的那些性价比更高的国产“作坊”了&#8230; 很早就想买手表了，但一直都很犹豫，为什么会这么犹豫呢？根本问题还是工资太少&#8230; 无论是工作，还是 WordPress，还是 PHP ，只能继续 Work hard 了&#8230; 进口手表暴不暴利我不清楚，我唯一知道的是关税很厉害，和汽车一样，国内进口手表的价格较之国外基本翻了一倍。中国用高关税的政策来保护民族企业，可民族企业带给国人的又是什么呢？不是我不支持国货，我只是被“三鹿奶粉”搞怕了&#8230; 出了近两周的差，回家后发现阳台上长满了辣椒&#8230; 可真把我吓了一跳，没想到辣椒的繁殖能力这么强！妈妈说种的是杭椒，咱吃的杭椒不都是绿色的吗？怎么现在不少辣椒都是红色的？而且从小都是红色的&#8230; （以下图片点击均可放大） 前几天看过一批很牛X的用变形金刚玩具制作的静帧动画后，真想自己也尝试一下，时间上到好说，挤一挤还是有的，但最无奈的是没有相机&#8230;可惜了这么帅的大黄蜂和擎天柱&#8230; 收工睡觉，希望明早能够顺利的报销&#8230; zEUS. 日志评论2008年, 十月 27日, wayne writes: 哈哈, 年纪大了, 也该打扮的成熟点了 :mrgreen:2008年, 十月 27日, Fiorano writes: 我迷上LEGO的玩具了，变形金刚暂时放弃了 －。－2008年, [...]]]></description>
			<content:encoded><![CDATA[<p>周末转瞬即逝，明早去公司报销上次去十堰的费用后就要踏上去荆州征途了。由于手机不能漫游，所以今天去买了一张临时用的手机卡，亲朋好友若是要找我的话请见我的 QQ 签名里的临时手机号码。</p>
<p>上一次去十堰做测试计划只待5天，却因为移动迟迟不开通 APN 而耗费了我10天半的时间，这次去荆州也是做同样的事情，希望荆州市的移动公司办事效率能更高一些。</p>
<p>最近一段时间发现自己衣橱里的衣物有一大半都不是很适合现在的我了，随着年龄的增长，省美观也渐渐发生了变化。<span id="more-514"></span>大学时期的我一直都是以运动休闲装为主，现在工作都一年半了，有必要慢慢转型了，不过我还是不喜欢太商务的服装，I hate 西裤&#038;皮鞋。</p>
<p>今天 SLL 以及她的 BF 还有 WQ 陪我出去街上逛了一圈，看了看衣裤以及手表，据我观察，今年秋冬季的休闲装较去年有近30%的涨幅，也就是去年 RMB 300+的衣裤现在都卖到了 RMB 400+，特别是一条 Lee 的牛仔裤竟然标到 RMB 1099 ！于是我开始怀疑金融危机真的来了吗？还是通货膨胀了？看到国外这些品牌衣物不可理喻的高暴利，我开始倾向于支持淘宝上的那些性价比更高的国产“作坊”了&#8230;</p>
<p>很早就想买手表了，但一直都很犹豫，为什么会这么犹豫呢？根本问题还是工资太少&#8230; 无论是工作，还是 <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/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a> ，只能继续 Work hard 了&#8230; 进口手表暴不暴利我不清楚，我唯一知道的是关税很厉害，和汽车一样，国内进口手表的价格较之国外基本翻了一倍。中国用高关税的政策来保护民族企业，可民族企业带给国人的又是什么呢？不是我不支持国货，我只是被“三鹿奶粉”搞怕了&#8230; </p>
<p>出了近两周的差，回家后发现阳台上长满了辣椒&#8230; 可真把我吓了一跳，没想到辣椒的繁殖能力这么强！妈妈说种的是杭椒，咱吃的杭椒不都是绿色的吗？怎么现在不少辣椒都是红色的？而且从小都是红色的&#8230; （以下图片点击均可放大）</p>
<p align=center>
<a href="http://pic.yupoo.com/zeuscn/35691667f839/5wzungv9.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/35691667f839/small.jpg" alt="杭椒" class="img_border" /></a><a href="http://pic.yupoo.com/zeuscn/60512667f83b/bnxgfdnk.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/60512667f83b/small.jpg" alt="杭椒" class="img_border" /></a><br />
<a href="http://pic.yupoo.com/zeuscn/32126667f837/16bkqunt.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/32126667f837/small.jpg" alt="杭椒" class="img_border" /></a><a href="http://pic.yupoo.com/zeuscn/50496667f836/tqwffjfk.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/50496667f836/small.jpg" alt="杭椒" class="img_border" /></a>
</p>
<p>前几天看过<a href="http://zeuscn.net/archives/2008/10/21/transformers-stop-motion/" target="_blank">一批很牛X的用变形金刚玩具制作的静帧动画</a>后，真想自己也尝试一下，时间上到好说，挤一挤还是有的，但最无奈的是没有相机&#8230;可惜了这么帅的大黄蜂和擎天柱&#8230;</p>
<p align=center>
<a href="http://pic.yupoo.com/zeuscn/36630667fcef/lwfayy6o.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/36630667fcef/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><a href="http://pic.yupoo.com/zeuscn/86325667fcef/bwh5aepc.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/86325667fcef/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><br />
<a href="http://pic.yupoo.com/zeuscn/08356667fced/x6zgrvcc.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/08356667fced/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><a href="http://pic.yupoo.com/zeuscn/36758667fcf0/u4ap2ug0.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/36758667fcf0/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><br />
<a href="http://pic.yupoo.com/zeuscn/50330667fced/fwmizdgn.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/50330667fced/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><a href="http://pic.yupoo.com/zeuscn/68425667fced/cat1m95q.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/68425667fced/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><br />
<a href="http://pic.yupoo.com/zeuscn/57251667fcea/d15r0v1j.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/57251667fcea/small.jpg" alt="变形金刚,玩具" class="img_border" /></a><a href="http://pic.yupoo.com/zeuscn/03651667fcea/wynvepoe.jpg" rel="lightbox"><img src="http://pic.yupoo.com/zeuscn/03651667fcea/small.jpg" alt="变形金刚,玩具" class="img_border" /></a>
</p>
<p>收工睡觉，希望明早能够顺利的报销&#8230;</p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://gopherwood.info' rel='external nofollow' class='url'>wayne</a> writes: 哈哈, 年纪大了, 也该打扮的成熟点了  :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.gtalkme.com' rel='external nofollow' class='url'>Fiorano</a> writes: 我迷上LEGO的玩具了，变形金刚暂时放弃了 －。－</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://ishawn.net' rel='external nofollow' class='url'>Shawn</a> writes: 那个擎天柱真帅～ :eek:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.yangfu.name/' rel='external nofollow' class='url'>Fufu</a> writes: 博客的风格真是不错。</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.xuchi.name' rel='external nofollow' class='url'>抽筋儿</a> writes: 我也想弄块手表爽哈子</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.johnzon.cn/' rel='external nofollow' class='url'>johnzon</a> writes: 又见家常，I hate 西裤&amp;皮鞋 too :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 这几个变形金刚似乎很逼真么...</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://54liby.cn' rel='external nofollow' class='url'>liby</a> writes: 原来你是去移动的公司....
   玩具是你的？</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 我不是去的移动公司，只是我们的业务跟移动有合作。
玩具是我的 :smile:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 是啊，孩之宝的产品嘛～ 不必真可不行  :cool:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 抽儿有没相中的？咱可以交流下～ :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，我觉得西裤皮鞋都是30+的人穿的，我还没到那年龄层次...</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，谢谢  :smile:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 是啊，所以我就抱了一个回来...</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: LEGO 和变形金刚的理念不同，也是很不错的玩具～</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: :cry: 看来是真的年纪大了...</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.xuchi.name' rel='external nofollow' class='url'>抽筋儿</a> writes: :?:  :?:  基本处于白日梦状态，没提上日程。</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.yellowall.net/blog' rel='external nofollow' class='url'>Sivan</a> writes: :?: 成像效果好像我以前用的MOTO E2</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://motoe2.blogbus.com' rel='external nofollow' class='url'>motoe2</a> writes: 还是用E2拍的吗？ 想知道你的E2在用什么刷机包呢 还是原版的</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://www.simpleseo.cn' rel='external nofollow' class='url'>simpleseo</a> writes: 手机不能漫游？？？你落后啦 :grin: 
这么喜欢玩具，童心未泯呀。 :smile:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 27日</a>, <a href='http://jobru.net' rel='external nofollow' class='url'>JoBru</a> writes: :mrgreen: 以前阳台上也种过辣椒～</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://3284265.cn' rel='external nofollow' class='url'>shamas</a> writes: I hate 西裤&amp;皮鞋……上班时间就是身不由己啊</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 是啊，不知道是西服糟蹋了我还是我糟蹋了西服...</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 我不是经常外面跑就懒得开通漫游了...
玩具我就比较喜欢变形金刚  :cool:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 都是 E2 拍的，刷机包忘记了... :???:  刷了很久了...</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 我确实就是用 E2 拍的，没相机，遭罪...  :oops:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://www.yellowall.net/blog' rel='external nofollow' class='url'>Sivan</a> writes: E2是个好手机呀好手机 :cool: 不过用了黑莓，对丢的E2倒没那么怀念了 :cry:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 28日</a>, <a href='http://www.panyuye.com' rel='external nofollow' class='url'>醉倚西风</a> writes: 一直钟情N95的
哈哈</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 29日</a>, <a href='http://www.simbaflooring.com' rel='external nofollow' class='url'>实木复合地板</a> writes: :mrgreen:  :lol: 我想去都没机会去哦。。。
http://www.simbaflooring.com</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 29日</a>, <a href='http://www.icerainbow.cn' rel='external nofollow' class='url'>icerain</a> writes: 虽然照的不清楚，不过看起来都很精致！ :smile:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 29日</a>, <a href='http://motoe2.blogbus.com' rel='external nofollow' class='url'>motoe2</a> writes: :neutral:兄弟的黑莓型号是？</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 29日</a>, <a href='http://www.yellowall.net/blog' rel='external nofollow' class='url'>Sivan</a> writes: :smile:  我的是8300Curve</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, <a href='http://an9.name' rel='external nofollow' class='url'>an9</a> writes: 嘿嘿，玩具不错。</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, <a href='http://www.panyuye.com' rel='external nofollow' class='url'>醉倚西风</a> writes: 晕死 到现在才看到
我评论平错了
应该是别人的博客
晕死</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, cynthia妮 writes: 我也N久米有买衣服了…… T - T</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, <a href='http://3284265.cn' rel='external nofollow' class='url'>shamas</a> writes: 都被公司糟蹋了 :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, <a href='http://km286.cn' rel='external nofollow' class='url'>猪猪</a> writes: 变形金刚很好玩哦~~~哈…… :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 哈哈，是啊，还是蛮有收藏价值的～ :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">2008年, 十月 30日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: :smile: 呵呵，今年我的衣柜估计要大换血...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/10/26/diary-5.html">http://zeuscn.net/archives/2008/10/26/diary-5.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/10/26/diary-5.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/05/05/0905-movies.html" title="2009年5月上映电影一览 (2009年, 五月 5日)">2009年5月上映电影一览</a> (12)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/13/my-brain-is-full-of-h.html" title="我满脑子的H&#8230; (2008年, 二月 13日)">我满脑子的H&#8230;</a> (77)</li>
	<li><a href="http://zeuscn.net/archives/2007/09/27/be-back-soon.html" title="Be Back Soon&#8230; (2007年, 九月 27日)">Be Back Soon&#8230;</a> (5)</li>
	<li><a href="http://zeuscn.net/archives/2009/06/23/501.html" title="501 (2009年, 六月 23日)">501</a> (20)</li>
	<li><a href="http://zeuscn.net/archives/2006/11/25/comingmovies.html" title="Comming Later&#8230; (2006年, 十一月 25日)">Comming Later&#8230;</a> (118)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/13/wow_theme_updata.html" title="WOW Theme 08年2月更新 (2008年, 二月 13日)">WOW Theme 08年2月更新</a> (139)</li>
	<li><a href="http://zeuscn.net/archives/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/10/25/community-cloud.html" title="Community Cloud—让评论者也“飘”起来 (2007年, 十月 25日)">Community Cloud—让评论者也“飘”起来</a> (96)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/13/wow-theme-cn.html" title="WOW Theme &mdash; 魔兽风格的 WordPress 主题模板！ (2007年, 十二月 13日)">WOW Theme &mdash; 魔兽风格的 WordPress 主题模板！</a> (28)</li>
	<li><a href="http://zeuscn.net/archives/2007/12/06/wordpress-install.html" title="WordPress 安装图文教程 (2007年, 十二月 6日)">WordPress 安装图文教程</a> (79)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/10/26/diary-5.html/feed</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>分享一套入门级 SEO PPT</title>
		<link>http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html</link>
		<comments>http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html#comments</comments>
		<pubDate>Thu, 09 Oct 2008 13:07:58 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[网络相关]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ppt]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[脑残]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=506</guid>
		<description><![CDATA[数日前这套 SEO PPT 被我遗落到电脑桌面的某个角落，直到昨日清理桌面时才又发现了它&#8230; 似乎早就应该拿出来和大家分享了～ 虽然这套 SEO 教程介绍的内容比较简单，但涵盖面很广，很全面，喜欢捣鼓个人博客的朋友一定不要错过它！ 该 PPT 的作者博客是：http://www.iwcn.net/ 和咱们玩基于 PHP 的 WordPress 不同，作者应该是玩 asp.net 的高手，但相同的是大家都热爱互联网～～ SEO 对于大家来说都一样重要！ 这套教程的主要内容有： SEO常用术语解释 如何让搜索引擎收录网站 SEO的目的 站点自身内部的优化 影响排名的外部因素 常见的黑盒SEO手法 参考文章及网站 下载猛击 这里 其中不少的内容我曾在我的博客中都有提到过，有兴趣的朋友不妨看看： 针对博客的5招简单SEO优化方法 再谈博客和 SEO 博客SEO优化技巧总结（一） 博客SEO优化技巧总结（二） 博客SEO优化技巧总结（三） 其实 SEO 是个很飘渺很纠结很怨念很脑残很百度很谷歌很不知所云的东东，对于个人博客而言做好一些基础工作就行了，不用花太多的功夫～ zEUS. 日志评论2008年, 十月 9日, MY-Hou writes: 下载同时SF :mrgreen:2008年, 十月 9日, 酋长 writes: 把算术题搞得有难度点吧。。 :mrgreen: :mrgreen: [...]]]></description>
			<content:encoded><![CDATA[<p>数日前这套 <a href="http://zeuscn.net/archives/tag/seo" class="st_tag internal_tag" rel="tag" title="标签 SEO 下的日志">SEO</a> <a href="http://zeuscn.net/archives/tag/ppt" class="st_tag internal_tag" rel="tag" title="标签 ppt 下的日志">PPT</a> 被我遗落到电脑桌面的某个角落，直到昨日清理桌面时才又发现了它&#8230; 似乎早就应该拿出来和大家分享了～ 虽然这套 SEO 教程介绍的内容比较简单，但涵盖面很广，很全面，喜欢捣鼓个人博客的朋友一定不要错过它！</p>
<p>该 PPT 的作者博客是：<a href="http://www.iwcn.net/" target="_blank">http://www.iwcn.net/</a> 和咱们玩基于 <a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a> 的 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 不同，作者应该是玩 asp.net 的高手，但相同的是大家都热爱互联网～～ SEO 对于大家来说都一样重要！</p>
<p>这套教程的主要内容有：<br />
<span id="more-506"></span></p>
<ul>
<li>SEO常用术语解释</li>
<li>如何让搜索引擎收录网站</li>
<li>SEO的目的</li>
<li>站点自身内部的优化</li>
<li>影响排名的外部因素</li>
<li>常见的黑盒SEO手法</li>
<li>参考文章及网站</li>
</ul>
<p>下载猛击 <a href="http://zeuscn.net/download/seo.zip">这里</a></p>
<p>其中不少的内容我曾在我的博客中都有提到过，有兴趣的朋友不妨看看：</p>
<ul>
<li><a href="http://zeuscn.net/archives/2007/08/07/blog-seo/">针对博客的5招简单SEO优化方法</a></li>
<li><a href="http://zeuscn.net/archives/2007/09/10/about-blog-seo/">再谈博客和 SEO</a></li>
<li><a href="http://zeuscn.net/archives/2008/06/28/blog-seo-summing-up-part-one/">博客SEO优化技巧总结（一）</a></li>
<li><a href="http://zeuscn.net/archives/2008/06/30/blog-seo-summing-up-part-two/">博客SEO优化技巧总结（二）</a></li>
<li><a href="http://zeuscn.net/archives/2008/07/01/blog-seo-summing-up-part-three/">博客SEO优化技巧总结（三）</a></li>
</ul>
<p>其实 SEO 是个很飘渺很纠结很怨念很脑残很百度很谷歌很不知所云的东东，对于个人博客而言做好一些基础工作就行了，不用花太多的功夫～</p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 9日</a>, <a href='http://myhou.org' rel='external nofollow' class='url'>MY-Hou</a> writes: 下载同时SF :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 9日</a>, <a href='http://www.qiuzhang.org' rel='external nofollow' class='url'>酋长</a> writes: 把算术题搞得有难度点吧。。 :mrgreen:  :mrgreen: 

好东西。。</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 10日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 何为 SF  :idea: ？</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 10日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，这个本来就是防止机器 SPAM 的，不是为了考评论者的智商啦... :grin:</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 10日</a>, <a href='http://myhou.org' rel='external nofollow' class='url'>MY-Hou</a> writes: SF=sofa，一种有弹簧衬垫的靠背椅，现多用弓状弯曲的弹簧与泡沫塑料，制作简便，可使体形轻巧，是我国目前常用的现代家具之一。</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 10日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 感谢分享, 基本了解,权当做备份了.</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 10日</a>, <a href='http://www.simpleseo.cn' rel='external nofollow' class='url'>simpleseo</a> writes: SEO，鸡肋 :???:</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 12日</a>, <a href='http://www.freerainbow.cn' rel='external nofollow' class='url'>freesky</a> writes: 评价这么高，一定要看看！ :smile:</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 13日</a>, <a href='http://www.iiren.org' rel='external nofollow' class='url'>IIREN</a> writes: seo搞得好的话是很有前途的, 就是实在是太花精力了</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 14日</a>, <a href='http://www.johnzon.cn/' rel='external nofollow' class='url'>johnzon</a> writes: 下来学学 :cool:</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2008年, 十月 15日</a>, <a href='http://jobru.net' rel='external nofollow' class='url'>JoBru</a> writes: :shock: 好东西当然要收藏了～</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2009年, 七月 22日</a>, aaaa writes: dddddddddddddddddddddddd</li><li><a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">2012年, 一月 15日</a>, <a href='http://www.dancersplus.com/' rel='external nofollow' class='url'>mp3 shakira full songs free download</a> writes: <strong>Check This Out...</strong>

[...]Here are some of the sites we recommend for our visitors[...]...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html">http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.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/06/19/dz-theme-pro-cp-released.html" title="D&#038;Z Theme Pro CP 版正式（付费）发布 (2009年, 六月 19日)">D&#038;Z Theme Pro CP 版正式（付费）发布</a> (129)</li>
	<li><a href="http://zeuscn.net/archives/2007/10/08/1-0-6-version.html" title="博客版本升级 1.06 (2007年, 十月 8日)">博客版本升级 1.06</a> (97)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/01/why-do-you-blog.html" title="如是博 (2007年, 八月 1日)">如是博</a> (10)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/26/diablo-iii-theme-released.html" title="WordPress 主题模板：大菠萝3 Diablo III (2008年, 八月 26日)">WordPress 主题模板：大菠萝3 Diablo III</a> (140)</li>
	<li><a href="http://zeuscn.net/archives/2006/12/26/sidebar.html" title="模板修改手札之分离Sidebar (2006年, 十二月 26日)">模板修改手札之分离Sidebar</a> (89)</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/23/ipple-lite-released.html" title="WordPress 主题模板：Ipple Lite (2008年, 三月 23日)">WordPress 主题模板：Ipple Lite</a> (154)</li>
	<li><a href="http://zeuscn.net/archives/2007/11/04/wordpress-plugins-for-alimama.html" title="阿里妈妈 WordPress 插件大赛 (2007年, 十一月 4日)">阿里妈妈 WordPress 插件大赛</a> (63)</li>
	<li><a href="http://zeuscn.net/archives/2007/09/02/messageboard-for-wordpress.html" title="2步创建留言本 (2007年, 九月 2日)">2步创建留言本</a> (36)</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>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/10/09/share-a-seo-ppt.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>给博客添加 Google 自定义搜索</title>
		<link>http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html</link>
		<comments>http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html#comments</comments>
		<pubDate>Thu, 18 Sep 2008 04:06:44 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[网络相关]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google 自定义搜索]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=493</guid>
		<description><![CDATA[何为“Google 自定义搜索”？ 创建根据自己的需求量身定制的搜索引擎：包括一个网站、多个网站或特定网页；将搜索框和搜索结果放入您自己的网站；自定义颜色和品牌以搭配您现有的网页。 Google 自定义搜索结果比博客默认的搜索结果要“更快，更准，更多”，无论是给读者还是管理员都提供了相当大的便利。 看猫猫用上了 Google 自定义搜索后我才想起来自己以前也搞过一个，不过不同的是之前我是让 Google 来托管搜索结果，而猫猫现在则是把搜索结果嵌入到了博客，恩，很好很强大，于是我自个儿就折腾了一下，将 Google 自定义搜索也嵌入到了博客里。具体效果您可以自行在搜索框内输入一个关键词（如：wordpress），然后回车，就能看到 Google 自定义搜索的结果了，也可以点击 这里 查看截图效果。 下面我就简单的介绍下如何为博客添加“Google 自定义搜索”功能。 访问：http://www.google.com/coop/cse/?hl=zh-CN 点击“创建自定义搜索引擎”的蓝色按钮，页面跳转之后根据页面上的要求填写各项基本信息，在最下方的“选择版本”中选择“标准版”： 点击“下一步”，页面跳转之后点击“完成”。然后回到 Google 自定义搜索首页，依次点击“管理您现有的搜索引擎”&#8211;“控制面板” 查看“基本信息”下的各个选项和“使用偏好”是否正确，点击“外观”后选择第一种无背景色的搜索框，该页面的下方可以设置“自定义搜索结果”的颜色样式，类似 Google Adsense 的广告设置，非常简单，设置成和博客相同的链接颜色即可，保存设置。 再点击“代码”，在“搜索结果托管选项”下选择“在您的网站上托管搜索结果：”&#8211;“iframe – 需要两个网页：一个网页提供搜索框，另一个提供结果”： “指定搜索结果详情”选项需要填写搜索结果所在的网页地址（例如我的是 http://zeuscn.net/search）： 该页面的下方提供了“搜索框代码”和“搜索结果代码”，记下这2段代码，接下来修改博客模板文件。 WordPress 博客模板里一般都会包含一个 searchform.php 的文件，该文件定义了博客的搜索框。我们打开这个文件，可以看到类似如下的代码： 1 2 3 &#60;form method=&#34;get&#34; class=&#34;searchform&#34; action=&#34;&#60;?php bloginfo('home'); ?&#62;/&#34;&#62; &#60;input type=&#34;text&#34; value=&#34;站内搜索&#34; name=&#34;s&#34; class=&#34;s&#34; onfocus=&#34;if (this.value == '站内搜索') [...]]]></description>
			<content:encoded><![CDATA[<p>何为“<a href="http://zeuscn.net/archives/tag/google" class="st_tag internal_tag" rel="tag" title="标签 google 下的日志">Google</a> 自定义搜索”？</p>
<blockquote><p>创建根据自己的需求量身定制的搜索引擎：包括一个网站、多个网站或特定网页；将搜索框和搜索结果放入您自己的网站；自定义颜色和品牌以搭配您现有的网页。</p></blockquote>
<p>Google 自定义搜索结果比博客默认的搜索结果要“更快，更准，更多”，无论是给读者还是管理员都提供了相当大的便利。</p>
<p>看<a href="http://www.pagemod.cn/" target="_blank" />猫猫</a>用上了 Google 自定义搜索后我才想起来自己以前也搞过一个，<span id="more-493"></span>不过不同的是之前我是让 Google 来托管搜索结果，而<a href="http://www.pagemod.cn/" target="_blank" />猫猫</a>现在则是把搜索结果嵌入到了博客，恩，很好很强大，于是我自个儿就折腾了一下，将  Google 自定义搜索也嵌入到了博客里。具体效果您可以自行在搜索框内输入一个关键词（如：<a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">wordpress</a>），然后回车，就能看到 Google 自定义搜索的结果了，也可以点击 <a href="http://pic.yupoo.com/zeuscn/62731635281a/15z1f3vi.jpg" rel="lightbox" />这里</a> 查看截图效果。</p>
<p>下面我就简单的介绍下如何为博客添加“<a href="http://zeuscn.net/archives/tag/google-%e8%87%aa%e5%ae%9a%e4%b9%89%e6%90%9c%e7%b4%a2" class="st_tag internal_tag" rel="tag" title="标签 Google 自定义搜索 下的日志">Google 自定义搜索</a>”功能。<br />
访问：<a href="http://www.google.com/coop/cse/?hl=zh-CN" target="_blank" />http://www.google.com/coop/cse/?hl=zh-CN</a><br />
点击“<strong>创建自定义搜索引擎</strong>”的蓝色按钮，页面跳转之后根据页面上的要求填写各项基本信息，在最下方的“<strong>选择版本</strong>”中选择“<strong>标准版</strong>”：</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/734816352ca4/medium.jpg" alt="Google 自定义搜索" title="Google 自定义搜索" class="img_border" /></p>
<p>点击“<strong>下一步</strong>”，页面跳转之后点击“<strong>完成</strong>”。然后回到 <a href="http://www.google.com/coop/cse/?hl=zh-CN" target="_blank" />Google 自定义搜索首页</a>，依次点击“<strong>管理您现有的搜索引擎</strong>”&#8211;“<strong>控制面板</strong>”</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/721386353028/pleby06q.jpg" alt="Google 自定义搜索" title="Google 自定义搜索" class="img_border" /></p>
<p>查看“<strong>基本信息</strong>”下的各个选项和“<strong>使用偏好</strong>”是否正确，点击“<strong>外观</strong>”后选择第一种无背景色的搜索框，该页面的下方可以设置“<strong>自定义搜索结果</strong>”的颜色样式，类似 Google <a href="http://zeuscn.net/archives/tag/adsense" class="st_tag internal_tag" rel="tag" title="标签 Adsense 下的日志">Adsense</a> 的广告设置，非常简单，设置成和博客相同的链接颜色即可，保存设置。<br />
再点击“<strong>代码</strong>”，在“<strong>搜索结果托管选项</strong>”下选择“<strong>在您的网站上托管搜索结果：</strong>”&#8211;“<strong>iframe – 需要两个网页：一个网页提供搜索框，另一个提供结果</strong>”：</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/8526263534cd/xt6k68tr.jpg" alt="Google 自定义搜索" title="Google 自定义搜索" class="img_border" /></p>
<p>“<strong>指定搜索结果详情</strong>”选项需要填写搜索结果所在的网页地址（例如我的是 <strong>http://zeuscn.net/search</strong>）：</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/238186353834/06a5uic5.jpg" alt="Google 自定义搜索" title="Google 自定义搜索" class="img_border" /></p>
<p>该页面的下方提供了“搜索框代码”和“搜索结果代码”，记下这2段代码，接下来修改博客模板文件。</p>
<p>WordPress 博客模板里一般都会包含一个 searchform.<a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">php</a> 的文件，该文件定义了博客的搜索框。我们打开这个文件，可以看到类似如下的代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;get&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;searchform&quot;</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&lt;?php bloginfo('home'); ?&gt;</span></span>/&quot;&gt;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;站内搜索&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;s&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;s&quot;</span> <span style="color: #000066;">onfocus</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;if (this.value == '站内搜索') {this.value = '';}&quot;</span> <span style="color: #000066;">onblur</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;if (this.value == '') {this.value = '站内搜索';}&quot;</span><span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;GO&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></td></tr></table></div>

<p>和 Google 自定义搜索提供的“<strong>搜索框代码</strong>”进行比较：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://zeuscn.net/search&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cse-search-box&quot;</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cx&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;012316757526287753200:595_iqfdr6q&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cof&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;FORID:11&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ie&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;UTF-8&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;q&quot;</span> <span style="color: #000066;">size</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;31&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sa&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;搜索&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=zh-Hans&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></td></tr></table></div>

<p>我将 Google 自定义搜索提供的“<strong>搜索框代码</strong>”中有，但是 searchform.php 中没有的代码添加到 searchform.php 中，然后另存为 google-searchform.php 文件，上传到主题目录下。修改后的代码如下：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;get&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;searchform&quot;</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://zeuscn.net/search&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cx&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;012316757526287753200:595_iqfdr6q&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cof&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;FORID:11&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ie&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;UTF-8&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;站内搜索&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;q&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;s&quot;</span> <span style="color: #000066;">onfocus</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;if (this.value == '站内搜索') {this.value = '';}&quot;</span> <span style="color: #000066;">onblur</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;if (this.value == '') {this.value = '站内搜索';}&quot;</span><span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sa&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;GO&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=zh-Hans&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></td></tr></table></div>

<p>其中我去掉了 Google 提供的搜索框的样式 <strong>id=”cse-search-box”</strong> 好让搜索框的样式更符合主题的效果。不少主题的搜索框都位于页面的头部（header），那么我们打开 header.php 文件，找到如下代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span> <span style="color: #009900;">&#40;</span>TEMPLATEPATH <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/searchform.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>将其修改为：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">include</span> <span style="color: #009900;">&#40;</span>TEMPLATEPATH <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/google-searchform.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>注：此搜索框的样式可能需要略微调整样式。</p>
<p>接下来需要做一个“<strong>搜索结果页</strong>”，先在本地打开主题文件夹中的 page.php，在文件顶部代码的前面添加：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
Template Name: Google自定义搜索结果
*/</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>然后找到类似如下的代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;entry&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;?php the_content<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'Continue reading &amp;raquo;'</span><span style="color: #66cc66;">&#41;</span>; ?&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--/entry --&gt;</span></pre></td></tr></table></div>

<p>使用 Google 自定义搜索提供的“<strong>搜索结果代码</strong>”将其替换掉。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cse-search-results&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span>
  var googleSearchIframeName = &quot;cse-search-results&quot;;
  var googleSearchFormName = &quot;cse-search-box&quot;;
  var googleSearchFrameWidth = 600;
  var googleSearchDomain = &quot;www.google.com&quot;;
  var googleSearchPath = &quot;/cse&quot;;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.google.com/afsonline/show_afs_search.js&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></td></tr></table></div>

<p>修改完毕，文件另存为：search_temp.php （需要是 <a href="http://zeuscn.net/archives/tag/utf-8" class="st_tag internal_tag" rel="tag" title="标签 utf-8 下的日志">utf-8</a> 的编码），FTP 上传至主题目录下。</p>
<p>进入 WordPress 后台，撰写一个新页面，命名为“搜索结果”，缩略名（slug name）为：search，页面模板选择刚刚上传的 “Google自定义搜索结果”（search_temp.php），发布该页面。<br />
此时你会发现这个页面出现在了博客导航菜栏里，一般来说我们不需要这个页面，所以就需要将其从导航栏中“隐藏”。进入 WordPress 后台，管理&#8211;页面，找到刚刚建立的“搜索结果”，将鼠标移动上去（不要点击），看浏览器状态栏的链接地址，地址的末尾有一个数字，此数字为该页面的 ID 号，例如我的是 491：</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/3215963544a2/bmbzudvh.jpg" alt="Google 自定义搜索" title="Google 自定义搜索" class="img_border" /></p>
<p>打开 header.php 文件，找到如下代码</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sort_column=menu_order&amp;depth=1&amp;title_li='</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>将其修改为：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php-brief" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'sort_column=menu_order&amp;depth=1&amp;exclude=491&amp;title_li='</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>exclude </strong>的值就是从 <strong>wp_list_pages() </strong>函数中去除指定的页面 ID 号。保存后回到首页，导航栏里就找不到“搜索结果”这个链接了。</p>
<p>大功基本告成，Google 自定义搜索的搜索框和结果页全部都嵌入到了博客里，也许还需要根据博客模板的样式稍作修改。<br />
现在你就可以直接进行搜索来看看效果了～ 以后凡是搜索的结果都会显示在 http://yourdomain/search 这个页面上，例如我的 http://zeuscn.net/search<br />
Google 自定义搜索 还能把你的 Google Adsense 嵌入到搜索结果中去，有兴趣的朋友不妨自己研究一下～<br />
Have fun <img src='http://zeuscn.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 18日</a>, <a href='http://gopherwood.info' rel='external nofollow' class='url'>wayne</a> writes: 这个不错, 还能减轻一下服务器的压力...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 18日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: :mrgreen: 呵呵，确实如此～～</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 18日</a>, <a href='http://myhou.org' rel='external nofollow' class='url'>MY-Hou</a> writes: 个个都用上Google了咯  :cool:</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 18日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，这么好的搜索服务，不用的话实在太浪费了...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 18日</a>, <a href='http://www.freerainbow.cn' rel='external nofollow' class='url'>freesky</a> writes: 有很多博客都放了google得搜索，有空我也尝试一下！</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 19日</a>, <a href='http://wpfans.net.cn' rel='external nofollow' class='url'>mylaner</a> writes: 很久以前在水煮鱼上就看到了。</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 19日</a>, <a href='http://www.dogorgod.com/' rel='external nofollow' class='url'>dogorgod</a> writes: 有点复杂啊，我先不尝试了...现在看代码比较眼晕..</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 19日</a>, <a href='http://jobru.net' rel='external nofollow' class='url'>JoBru</a> writes: :mrgreen: 很棒啊，多谢了～！</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 21日</a>, <a href='http://www.wodidai.com' rel='external nofollow' class='url'>花果山寨</a> writes: 这个我以前也弄过，的确非常不错！</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 九月 21日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 搞搞嫌累......虽然是个不错的技巧</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 十月 30日</a>, <a href='http://www.charlestang.cn/why-and-how-to-integrate-google-to-blog.htm' rel='external nofollow' class='url'>为何以及如何整合Google搜索到WP博客 at Becomin' Charles</a> writes: [...] 【4】網生@誌 | zEUS.'Blog：《给博客添加 Google 自定义搜索》 ：这篇文章介绍了整合Google搜索的详细步骤，包括申请，修改代码，等等，并且给出了代码范例。可操作性很强。 [...]</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 十一月 4日</a>, <a href='http://changsay.com/' rel='external nofollow' class='url'>死的蚊</a> writes: 有个问题，能不能在搜索结果页中点击链接后默认在原页面打开，而不新建页面呢？</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 十一月 9日</a>, <a href='http://www.aiyanblog.cn' rel='external nofollow' class='url'>爱燕博客</a> writes: 这样修改之后，不知道有没有违反GG的政策？</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 十一月 9日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 不会呀，GG 提供这么人性化的功能，就是给咱们改的啊～</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2008年, 十二月 3日</a>, <a href='http://18tvb.com' rel='external nofollow' class='url'>mr wu</a> writes: 呵呵，已经做好了。</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 一月 23日</a>, <a href='http://www.oshares.cn' rel='external nofollow' class='url'>LinuxWin</a> writes: 站长，您好！我看了这篇文章，认为很有特色。想学，但却做不出来。菜鸟特请教，我用的是revolution church 2.0主题，没有searchform.php,同时，我想把搜索放在侧边栏里，试了几下，结果不行，不知哪里有问题。希望能指点一二，谢谢！</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 一月 25日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 不同的主题修改起来也不一样，你用的主题我没有看过，所以也无法提供帮助.. 很抱歉..</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 二月 26日</a>, <a href='http://www.zhaocheng.org.cn/' rel='external nofollow' class='url'>赵成</a> writes: qweqwqw</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 四月 25日</a>, <a href='http://ublog.net.ru/' rel='external nofollow' class='url'>Ublog.Net.Ru</a> writes: 终于学会了，留言对zEUS.表示感谢！</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 四月 25日</a>, <a href='http://penpenguanguan.com/2009/04/139_add-google-custom-search-to-your-blog.html' rel='external nofollow' class='url'>给博客添加 Google 自定义搜索 | 盆盆罐罐</a> writes: [...] 给博客添加 Google 自定义搜索：http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog/ [...]</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 四月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，不客气！</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 十二月 8日</a>, <a href='http://blog.cybercn.net' rel='external nofollow' class='url'>don</a> writes: 文章很有好；不过跟主题稍微不兼容</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2009年, 十二月 8日</a>, <a href='http://blog.cybercn.net' rel='external nofollow' class='url'>don</a> writes: 文章很好；不过跟主题稍微不兼容</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.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/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 15日</a>, <a href='http://www.dancersplus.com/' rel='external nofollow' class='url'>michael jackson biography for children</a> writes: <strong>Recommended Websites...</strong>

[...]below you'll find the link to some sites that we think you should visit[...]...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 24日</a>, <a href='http://servinion.weebly.com' rel='external nofollow' class='url'>servinion</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 25日</a>, <a href='http://PromiseProductionsUSA.com' rel='external nofollow' class='url'>Dallas Marketing</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 26日</a>, <a href='http://community.atom.com/Post/James-Bond-Books/03EFBFFFF025821680008018434D5' rel='external nofollow' class='url'>James Bond Books</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 26日</a>, <a href='http://www.americanantigravity.com' rel='external nofollow' class='url'>American Antigravity</a> writes: <strong>Bing results...</strong>

While browsing Yahoo I found this page in the results and I didn't think it fit...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 27日</a>, <a href='http://www.colorado-unemployment.com/' rel='external nofollow' class='url'>colorado unemployment 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/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 27日</a>, <a href='http://alabama.local.dirtcheappayday.com/in/sheffield/' rel='external nofollow' class='url'>Low Interest Payday Loans</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 28日</a>, <a href='http://www.valueshop.co.uk/' rel='external nofollow' class='url'>inkjet cartridges</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 28日</a>, <a href='http://www.artslant.com/ew/groups/show/447698' rel='external nofollow' class='url'>Search Inmates</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 28日</a>, <a href='http://aacnwiki.org/index.php?title=User_talk:Sembto1234' rel='external nofollow' class='url'>article</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 28日</a>, <a href='http://www.quechup.com/blog/entry/view/id/876331' rel='external nofollow' class='url'>Sullair Air Compressor</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 28日</a>, <a href='http://www.iamsport.org/pg/blog/elijahsullivan33/read/1830877/europes-best-casino-hotels' rel='external nofollow' class='url'>Casino resorts in Europe</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 29日</a>, <a href='http://www.youtube.com/watch?v=4K3t-cfX9jU' rel='external nofollow' class='url'>Best Prenatal Massage NYC</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 29日</a>, <a href='http://billmyers0063241.blog.hr/2012/01/1629868283/celeste-hall.html' rel='external nofollow' class='url'>Celeste Hall Books</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 29日</a>, <a href='http://howtogetridofacneinoneday268.wordpress.com/2012/01/28/ways-to-get-rid-of-acne-in-only-eventually-the-secret-tips-which-have-allowed-me-for-stopping-acne-in-1-day/' rel='external nofollow' class='url'>acne</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://frankcomms.com/web/website-design-service' rel='external nofollow' class='url'>website design service essex</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://www.whats-shakn.com/' rel='external nofollow' class='url'>App</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://www.pokahontas.de' rel='external nofollow' class='url'>Burlesque Dessous</a> writes: <strong>Websites you should visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://uzernamezz.livejournal.com/' rel='external nofollow' class='url'>uzernamezz</a> writes: <strong>Blogs ou should be reading...</strong>

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://myagarcia679.posterous.com/cash-for-cars-obtaining-the-most-for-the-vehi' rel='external nofollow' class='url'>cash for junk cars los angeles</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://community.atom.com/Post/Furniture-Packs--Why-and-Why-Not/03EFBFFFF0258A78F000801853945' rel='external nofollow' class='url'>Furniture packs Mazarron</a> writes: <strong>Websites you should visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://www.anti-spam.nu/spamfilter-pa-svenska/' rel='external nofollow' class='url'>spamfilter</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://www.facebook.com/notes/build-lean-muscle-mass/tony-hortons-p90x-extreme-home-fitness-exercise-dvd-workout-program-review/242204622523536' rel='external nofollow' class='url'>home fitness workout</a> writes: <strong>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 30日</a>, <a href='http://www.securityguardtrainingdepot.com/security-training-courses/' rel='external nofollow' class='url'>security training courses</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://chloesimms614870.webs.com/apps/blog/show/11999676-a-guide-for-marketing-and-advertising-using-leaflet-printing' rel='external nofollow' class='url'>leaflet distribution Manchester</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://www.vilago21.com/event/Business+collection+agencies+and+Playing+By+the+Rules+_+Knowledge+Is+Power/332428/profile' rel='external nofollow' class='url'>credit card debt</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://hannahrobinson801758.blog.hr/2012/01/1629880953/salmon-pate-recipe.html' rel='external nofollow' class='url'>recipes</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://futurestrading055.wordpress.com/2012/01/30/treasury-bonds/' rel='external nofollow' class='url'>Treasury Bonds</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://hotelsnearukcities811.tumblr.com/post/16775056421/the-most-effective-uk-cities-to-make-your-hotel' rel='external nofollow' class='url'>hotels near uk cities</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://www.hugeyields.info' rel='external nofollow' class='url'>hugeyields</a> writes: <strong>Recent Blogroll Additions…...</strong>

[...]usually posts some very interesting stuff like this. If you’re new to this site[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://www.squirreltraining.co.uk' rel='external nofollow' class='url'>Marine Chua</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 一月 31日</a>, <a href='http://longhairpictures.blogspot.com' rel='external nofollow' class='url'>pin up girl hair</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 1日</a>, <a href='http://robertmontiel469707.webs.com/apps/blog/show/12030787-choosing-the-suitable-furniture-which-reflects-your-property-and-yourself' rel='external nofollow' class='url'>contract furniture</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 1日</a>, <a href='http://hotamateurcouple.com' rel='external nofollow' class='url'>Blog sex</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 1日</a>, <a href='http://action.ran.org/index.php?title=User:homelaserhairremoval223' rel='external nofollow' class='url'>Home Laser Hair Removal</a> writes: <strong>Recommeneded websites...</strong>

[...]Here are some of the sites we recommend for our visitors[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 2日</a>, <a href='http://www.motorsport.com/ferrari-challenge/news/scott-tucker-ready-for-toronto-event/' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.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>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.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>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 2日</a>, <a href='http://pennbadgleyweb.com/' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 3日</a>, <a href='http://www.hugeyield.us' rel='external nofollow' class='url'>passive income</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 3日</a>, <a href='http://mrvending.net/index.php/2011/12/cordless-drill-brands/' rel='external nofollow' class='url'>check out here for more info</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 3日</a>, <a href='http://1000calorieadaydiet.com/' rel='external nofollow' class='url'>Justin Bieber Baby</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 4日</a>, <a href='http://www.bankownedhomelistings.com' rel='external nofollow' class='url'>Bank Owned Homes</a> writes: <strong>Digg suggestion...</strong>

While checking out Digg today I noticed this...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 4日</a>, <a href='http://www.riskservers.net/?p=3437' rel='external nofollow' class='url'>football training</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 4日</a>, <a href='http://www.bpo-companies.com/appraisal.php' rel='external nofollow' class='url'>Appraisal Management Companies</a> writes: <strong>Related...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 4日</a>, <a href='http://www.bpo-university.com' rel='external nofollow' class='url'>broker price opinions</a> writes: <strong>Websites to visit...</strong>

[...]below you’ll find the link to some sites that we think you should visit[...]...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 5日</a>, <a href='http://www.articlecity.com/articles/recreation_and_sports/article_1562.shtml' rel='external nofollow' class='url'>sports training for speed and power sports</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://isp.pembinatrails.ca/member/37948' rel='external nofollow' class='url'>Consolidating Your Debts</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://banknotegallery.blogspot.com' rel='external nofollow' class='url'>money</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://gofreearticles.info/story.php?title=types-of-loans' rel='external nofollow' class='url'>unsecured loans</a> writes: <strong>Cool sites...</strong>

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://choiceconsolidation.com' rel='external nofollow' class='url'>credit card consolidation</a> writes: <strong>Online Article…...</strong>

[...]The information mentioned in the article are some of the best available [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://www.bud-rem.org.pl/' rel='external nofollow' class='url'>Pokrycia Dachowe</a> writes: <strong>Pokrycia Dachowe...</strong>

... sometimes I can't resist and link to ......</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://www.perfectdoorsuk.com' rel='external nofollow' class='url'>interior doors</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://www.articles411.com/article/Travel/Family-Destinations/59564-spend-your-holiday-in-luxury-villa-in-mougins-in-the-south-of-france.html' rel='external nofollow' class='url'>luxury villa France</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://www.youtube.com/watch?v=vrKOdsQPPMo' rel='external nofollow' class='url'>aldara precio</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 6日</a>, <a href='http://www.anglebuster.com/phpBB2/profile.php?mode=viewprofile&#038;u=811167' rel='external nofollow' class='url'>Yeast Infection Information</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.dietpillsjudged.com/dietpills/proactol' rel='external nofollow' class='url'>Proactol Review</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://habib666.posterous.com/97137457' rel='external nofollow' class='url'>sell gold</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.become-an-electrician.com/njatc.html' rel='external nofollow' class='url'>NJATC</a> writes: <strong>Great website...</strong>

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.riflescopes.net' rel='external nofollow' class='url'>rifle scope</a> writes: <strong>Superb website...</strong>

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://doorsavers.com' rel='external nofollow' class='url'>springfield door hangers</a> writes: <strong>Check this out...</strong>

[...] that is the end of this article. Here you’ll find some sites that we think you’ll appreciate, just click the links over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.buckettrucksonline.com' rel='external nofollow' class='url'>cheap viagra</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.vippleasuregirls.co.uk' rel='external nofollow' class='url'>escorts in london</a> writes: <strong>You should check this out...</strong>

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.faithwriters.com/article-details.php?id=130611' rel='external nofollow' class='url'>Milo Hennen</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://www.youtube.com/watch?v=gZlbwvD02-Q' rel='external nofollow' class='url'>Business Insurance Tampa</a> writes: <strong>Links...</strong>

[...]Sites of interest we have a link to[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 7日</a>, <a href='http://peterkphoto.com/client-resources/client-testimonials/' rel='external nofollow' class='url'>Montreal wedding photographer reviews</a> writes: <strong>Gems form the internet...</strong>

[...]very few websites that happen to be detailed below, from our point of view are undoubtedly well worth checking out[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 8日</a>, <a href='http://www.personaltrainertools.com' rel='external nofollow' class='url'>fitness business and marketing</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 8日</a>, <a href='http://articletrump.com/seo-terminology-5-items-to-learn-about-seo/' rel='external nofollow' class='url'>read more about seo</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 8日</a>, <a href='http://www.amazon.com/gp/product/B0075PD5V4' rel='external nofollow' class='url'>skate ski boot</a> writes: <strong>Sites we Like…...</strong>

[...] Every once in a while we choose blogs that we read. Listed below are the latest sites that we choose [...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 8日</a>, <a href='http://rakeatoufnvincehenza.newsvine.com/_news/2012/02/07/10343848-resume-guide' rel='external nofollow' class='url'>resume</a> writes: <strong>Sources...</strong>

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 8日</a>, <a href='http://paininkidney.com/ksrr' rel='external nofollow' class='url'>pass kidney stones</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 9日</a>, <a href='http://www.youtube.com/watch?v=qWgmmAhMuHU' rel='external nofollow' class='url'>Scott Tucker Racing</a> writes: <strong>Websites worth visiting...</strong>

[...]here are some links to sites that we link to because we think they are worth visiting[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.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>Visitor recommendations...</strong>

[...]one of our visitors recently recommended the following website[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 9日</a>, <a href='http://thecoolmag.com/2011/06/french-montana-feat-rick-ross-wiz-khalifa-choppa-choppa-down-remix/' rel='external nofollow' class='url'>Scott Tucker CBS</a> writes: <strong>Websites we think you should visit...</strong>

[...]although websites we backlink to below are considerably not related to ours, we feel they are actually worth a go through, so have a look[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 9日</a>, <a href='http://www.PERSONALTRAINERCERTIFICATIONPROGRAM.COM' rel='external nofollow' class='url'>personal trainer certification</a> writes: <strong>Read was interesting, stay in touch…...</strong>

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 9日</a>, <a href='http://www.quechup.com/blog/entry/view/id/946901' rel='external nofollow' class='url'>book publishing</a> writes: <strong>Related…...</strong>

[...]just beneath, are numerous totally not related sites to ours, however, they are surely worth going over[...]…...</li><li><a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">2012年, 二月 9日</a>, <a href='http://www.pennyauctioncustomers.com' rel='external nofollow' class='url'>zeek rewards log in</a> writes: <strong>Awesome website...</strong>

[...]the time to read or visit the content or sites we have linked to below the[...]…...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html">http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.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/07/25/plans-of-wordpress-themes-2.html" title="近期关于 WordPress 主题的一些计划 (2008年, 七月 25日)">近期关于 WordPress 主题的一些计划</a> (23)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/28/diary-3.html" title="八月二十八 星期四 阴转雨 (2008年, 八月 28日)">八月二十八 星期四 阴转雨</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html" title="无插件实现 WordPress Lightbox 特效 (2009年, 十一月 1日)">无插件实现 WordPress Lightbox 特效</a> (89)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/27/ipple-utral-beta.html" title="ipple utral beta 上线试运行 (2008年, 二月 27日)">ipple utral beta 上线试运行</a> (23)</li>
	<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/2009/06/02/d-z-theme-post-type.html" title="剔除 D&#038;Z Theme 主题“热评日志”列表中的页面 (2009年, 六月 2日)">剔除 D&#038;Z Theme 主题“热评日志”列表中的页面</a> (88)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html" title="解除 XAMPP 的 Memory 大小限制 (2008年, 二月 29日)">解除 XAMPP 的 Memory 大小限制</a> (8)</li>
	<li><a href="http://zeuscn.net/archives/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/10/making-another-wp-theme.html" title="又一个 WordPress 主题全力制作中&#8230; (2007年, 十一月 10日)">又一个 WordPress 主题全力制作中&#8230;</a> (9)</li>
	<li><a href="http://zeuscn.net/archives/2006/12/26/sidebar.html" title="模板修改手札之分离Sidebar (2006年, 十二月 26日)">模板修改手札之分离Sidebar</a> (89)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/09/18/google-custom-search-for-your-blog.html/feed</wfw:commentRss>
		<slash:comments>101</slash:comments>
		</item>
		<item>
		<title>WordPress 较常用的首页文章 CMS 排版方法</title>
		<link>http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html</link>
		<comments>http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html#comments</comments>
		<pubDate>Thu, 11 Sep 2008 14:41:23 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

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

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

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

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

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

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$do_not_duplicate</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span> update_post_caches<span style="color: #009900;">&#40;</span><span style="color: #000088;">$posts</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

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

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

<p>如果你在后台设置了首页显示5篇文章，那么以上将显示除第一篇外的其余4篇</li>
</ol>
<p>按照上述代码就能实现这种类CMS的排版方式，此时你可以向上图一样在第一篇文章的旁边放上一段 Flash 或者图片，你还可以修改后续文章的输出方式，使用</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>代替</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'继续阅读 &amp;raquo;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[...]we came across a cool site that you might enjoy. Take a look if you want[...]…...</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html">http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html#comments"title="to the comments">发布评论</a>
      </p>
    <p>Copyright©<a href="%%blogurl%%">zEUScn.NET</a>.Some rights reserved.</p>
(Digital Fingerprint:<br /> 05538bd2e0492fe803256b5788cfa6fd)
	<ul class="st-related-posts">
	<li><a href="http://zeuscn.net/archives/2007/09/13/better-feed-and-st-add-related-posts-to-feed.html" title="优化 Feed，你不应该错过的2个插件 (2007年, 九月 13日)">优化 Feed，你不应该错过的2个插件</a> (9)</li>
	<li><a href="http://zeuscn.net/archives/2007/10/15/more-text-modules.html" title="给 Widgets 增加更多的 TEXT 模块 (2007年, 十月 15日)">给 Widgets 增加更多的 TEXT 模块</a> (76)</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> (91)</li>
	<li><a href="http://zeuscn.net/archives/2009/11/01/lightbox-for-wordpress-without-plugins-2.html" title="无插件实现 WordPress Lightbox 特效 (2009年, 十一月 1日)">无插件实现 WordPress Lightbox 特效</a> (89)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/07/blog-seo.html" title="针对博客的5招简单SEO优化方法 (2007年, 八月 7日)">针对博客的5招简单SEO优化方法</a> (28)</li>
	<li><a href="http://zeuscn.net/archives/2008/09/16/syntax-plugins.html" title="三款引用代码语法高亮插件 (2008年, 九月 16日)">三款引用代码语法高亮插件</a> (90)</li>
	<li><a href="http://zeuscn.net/archives/2008/02/15/2-english-themes-download.html" title="2款主题的英文版下载 (2008年, 二月 15日)">2款主题的英文版下载</a> (0)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/25/join-wordpress-theme-cn.html" title="找了份兼职&#8230; (2007年, 八月 25日)">找了份兼职&#8230;</a> (8)</li>
	<li><a href="http://zeuscn.net/archives/2007/09/16/velle-elle.html" title="wordpress模板：VeLLe ELLe (2007年, 九月 16日)">wordpress模板：VeLLe ELLe</a> (7)</li>
	<li><a href="http://zeuscn.net/archives/2008/12/01/wordpress-blog-2009.html" title="关于 WordPress 和 Blog 的小展望 (2008年, 十二月 1日)">关于 WordPress 和 Blog 的小展望</a> (36)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/09/11/wordpress-cms-index.html/feed</wfw:commentRss>
		<slash:comments>108</slash:comments>
		</item>
		<item>
		<title>WordPress 显示分类图片的补充</title>
		<link>http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html</link>
		<comments>http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html#comments</comments>
		<pubDate>Wed, 10 Sep 2008 13:02:25 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[cat icons]]></category>
		<category><![CDATA[category icons]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[分类图标]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=485</guid>
		<description><![CDATA[骑车回家的路上突然冒出了个想法，回来一试还果真成功... 小有成就感 :grin: 

在 <a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon/" target="_blank" />Wordpress 技巧—显示分类图片</a> 一文中我大致介绍了如何让文章所属的分类图片显示在文章旁边的方法，其调用代码借鉴自国外的 Wordpress 高手：
虽然我不是很懂 PHP ，但大致能理解上述代码的作用（理解如果有误，请指正）：
第一行调用 Wordpress 默认的分类函数并起了一个别名 <strong>$cat</strong>
<p><span class="readmore"><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus/" title="Wordpress 显示分类图片的补充">阅读全文——共656字</a></span></p>]]></description>
			<content:encoded><![CDATA[<p>骑车回家的路上突然冒出了个想法，回来一试还果真成功&#8230; 小有成就感 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' />  </p>
<p>在 <a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon/" target="_blank" />WordPress 技巧—显示分类图片</a> 一文中我大致介绍了如何让文章所属的分类图片显示在文章旁边的方法，其调用代码借鉴自国外的 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 高手：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>get_the_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$cat</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$catname</span> <span style="color: #339933;">=</span><span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">category_nicename</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;</span>span id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;more-485&quot;</span><span style="color: #339933;">&gt;&lt;/</span>span<span style="color: #339933;">&gt;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;a href=/category/&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$catname</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;/&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;img src=http://yourdomain/wp-content/cat-icons/&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$catname</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;.jpg alt=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$catname</span> category <span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$catname</span> 分类 <span style="color: #000099; font-weight: bold;">\&quot;</span> /&gt;&lt;/a&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>虽然我不是很懂 <a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a> ，但大致能理解上述代码的作用（理解如果有误，请指正）：<br />
第一行调用 WordPress 默认的分类函数并起了一个别名 <strong>$cat</strong><br />
第三行将函数中的 <strong>category_nicename 分类缩略名变量</strong>赋值给 <strong>$catname</strong><br />
下面的几行就是输出图像链接和拼接。<br />
看到倒数第三行中的 <strong>title=\”$catname 分类 \”</strong> ，这是输出图片的 title 属性，也就是我们鼠标移动到图片上所出现的简介文字。<br />
由于我们使用中文分类名和英文缩略名，所以这里的 <strong>title 输出的并不是分类的名称，而是一串英文缩略名</strong>。这种效果对于中文来说这并不合适，所以我就想到何不仿造 $catname 来做个 $cattitle 以实现下图的效果呢？</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/2863162b31f1/medium.jpg" alt="wordpress, 分类图片" title="wordpress, 分类图片" /></p>
<p>那么现在的问题是如何获取 WordPress 分类函数里<strong>定义分类名称的变量</strong>呢？</p>
<p>此时就轮到 Firefox 的著名插件 Firebug 登场了～<br />
进入 WordPress 后台-管理-分类，使用 Firebug 查看元素属性和样式，于是我就轻而易举的得到了我想要的变量名：</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/9524762b3a1d/1ungb105.jpg" alt="wordpress, 分类图片" title="wordpress, 分类图片" /></p>
<p><strong>cat_name</strong> 这个变量即是我们的目标～ 找到对应的变量名之后，代码稍作修改即可（增加一个变量：$cattitle 和修改 title 的值：\”$cattitle\ ）：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>get_the_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$cat</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$catname</span> <span style="color: #339933;">=</span><span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">category_nicename</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$cattitle</span><span style="color: #339933;">=</span><span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_name</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;a href=/category/&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$catname</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;/&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;img src=http://yourdomain/wp-content/cat-icons/&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$catname</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;.jpg alt=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$catname</span> category <span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$cattitle</span><span style="color: #000099; font-weight: bold;">\&quot;</span> /&gt;&lt;/a&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Ok , that &#8216;s all~~ 修改完毕，这样整个效果就基本完美了</p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 10日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 据说是沙发么...好吧  继续学习
今天要写半年工作计划...明天交掉了慢慢学习
我要减少自己的首页图片量...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 10日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: @Yacca：还好～ 没有我的多  :razz:</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 11日</a>, <a href='http://www.gtalkme.com' rel='external nofollow' class='url'>fiorano</a> writes: 我已经没兴趣研究这东西了。。。不过好在你喜欢研究，哈哈！ :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 11日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: 呵呵，是啊，打算以后主攻这个了...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 11日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 测试是否会发送邮件～</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 11日</a>, <a href='http://www.wodidai.com' rel='external nofollow' class='url'>花果山寨</a> writes: PHP就是好，简单的几句代码就搞定！</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 12日</a>, <a href='http://www.freerainbow.cn' rel='external nofollow' class='url'>freesky</a> writes: 说实话，真没看懂，惭愧还要多学习！</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 12日</a>, <a href='http://zeuscn.net' rel='external nofollow' class='url'>zEUS.</a> writes: :?: 其实我觉得我的表达也不是很清楚...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 九月 19日</a>, <a href='http://seo-dic.com.cn' rel='external nofollow' class='url'>美丽星点</a> writes: zEus.真是把firebug的作用发挥到了极致了，</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 十月 30日</a>, <a href='http://www.mybudai.com/10-rare-classical-techniques-wordpress.html' rel='external nofollow' class='url'>10＋少见的Wordpress经典技巧 | 诸葛布袋</a> writes: [...] WordPress 显示分类图片的补充 [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 十一月 2日</a>, <a href='http://tailog.com' rel='external nofollow' class='url'>Centeur</a> writes: 这个方法还比较巧妙。 :mrgreen:</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 十二月 1日</a>, <a href='http://51blog.co.cc/2008/add-category-icon-for-template.html' rel='external nofollow' class='url'>我要博客 &raquo; 内容索引 &raquo; 为WordPress主题添加分类图标 - 网络 知识 分享 生活</a> writes: [...] 可正如原作者在Wordpress 显示分类图片的补充一文中所言，如上的代码还略有不足，主要是鼠标悬停于图标上时，显示的文字不是我们设置的汉字分类，而是我们设置的分类的英文缩写。原作者将上面的代码修改如下： [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2008年, 十二月 25日</a>, <a href='http://www.jie-meng.cn' rel='external nofollow' class='url'>周公解梦</a> writes: 谢谢你啊，这个我学习了。。</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2009年, 三月 5日</a>, <a href='http://wzhjk.420mb.com/?p=41' rel='external nofollow' class='url'>淘友 &raquo; 为WordPress主题添加分类图标</a> writes: [...] 可正如原作者在Wordpress 显示分类图片的补充一文中所言，如上的代码还略有不足，主要是鼠标悬停于图标上时，显示的文字不是我们设置的汉字分类，而是我们设置的分类的英文缩写。原作者将上面的代码修改如下： [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2009年, 四月 14日</a>, <a href='http://www.xsean.cn' rel='external nofollow' class='url'>Sean</a> writes: &lt;?php foreach((get_the_category()) as $cat) 这句不是起别名的，是用来遍历数组的 也就是说从数组 (get_the_category()中取数据。</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2009年, 四月 14日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 多谢指正，遍历应该是 foreach() 这句，as $cat 应该是把遍历的结果丢到 $cat 这个变量里了。不知道我这样理解对不对...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2009年, 四月 26日</a>, <a href='http://yangtx.com' rel='external nofollow' class='url'>Yangtx</a> writes: 正有此打算。很久没来了，变化不小。</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">2009年, 九月 30日</a>, <a href='http://blog.xbadan.cn/html/2009/09/30/507.html' rel='external nofollow' class='url'>WordPress 显示分类图片 &laquo; 居龙闲志</a> writes: [...] 显示分类图片    daitui.init();    转至 網生@誌網生@誌  WordPress 显示分类图片          [...]</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html">http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.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/2011/07/31/new-404-not-found-page.html" title="新 404 Not Found 页面上线 (2011年, 七月 31日)">新 404 Not Found 页面上线</a> (1)</li>
	<li><a href="http://zeuscn.net/archives/2011/07/23/flv-player-and-bitcomet-flv-converter.html" title="WordPress flv 视频播放插件：flv-player 的安装使用及下载 附带 BitComet FLV 转换器下载 (2011年, 七月 23日)">WordPress flv 视频播放插件：flv-player 的安装使用及下载 附带 BitComet FLV 转换器下载</a> (101)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/10/display-category-description.html" title="WordPress 如何调用分类描述 (2008年, 三月 10日)">WordPress 如何调用分类描述</a> (140)</li>
	<li><a href="http://zeuscn.net/archives/2009/11/23/dz-theme-pro-cp-update.html" title="加量不加价 D&#038;Z Theme Pro CP 升级 (2009年, 十一月 23日)">加量不加价 D&#038;Z Theme Pro CP 升级</a> (23)</li>
	<li><a href="http://zeuscn.net/archives/2011/08/09/windows2003-iis6-wordpress-and-discuz-static-permalink.html" title="Windows2003 IIS6.0 下 WordPress 和 DiscuzX2 的伪静态实现方法 (2011年, 八月 9日)">Windows2003 IIS6.0 下 WordPress 和 DiscuzX2 的伪静态实现方法</a> (99)</li>
	<li><a href="http://zeuscn.net/archives/2007/06/28/livingtags.html" title="Let&#8217;s Move&#8230; Living Tags (2007年, 六月 28日)">Let&#8217;s Move&#8230; Living Tags</a> (5)</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/12/13/plans-of-wordpress-themes.html" title="WordPress 主题计划 (2007年, 十二月 13日)">WordPress 主题计划</a> (100)</li>
	<li><a href="http://zeuscn.net/archives/2010/05/07/dz-theme-pro-cp-discontinued.html" title="D&#038;Z Theme Pro CP 即日起暂停出售 (2010年, 五月 7日)">D&#038;Z Theme Pro CP 即日起暂停出售</a> (121)</li>
	<li><a href="http://zeuscn.net/archives/2008/12/01/wordpress-blog-2009.html" title="关于 WordPress 和 Blog 的小展望 (2008年, 十二月 1日)">关于 WordPress 和 Blog 的小展望</a> (36)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>WordPress 技巧—显示分类图片</title>
		<link>http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html</link>
		<comments>http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html#comments</comments>
		<pubDate>Wed, 10 Sep 2008 06:12:06 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[cat icons]]></category>
		<category><![CDATA[category icons]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[分类图标]]></category>

		<guid isPermaLink="false">http://zeuscn.net/?p=483</guid>
		<description><![CDATA[何为分类图片？——我们的每篇日志都有自己的分类，一般来说在文章栏中我们会用文字链接来描述文章所属分类，但有时候出于美观和页面整体效果的需要我们要用不同的图片来代替各种分类。那么如何来达到这种效果呢？ 其实 WordPress 已经有了个叫做 Category Icons 的插件可以帮助我们在文章需要的地方显示分类图片，并且还能显示在 Feed 中，该插件还提供一些其它的功能。可惜的是插件作者主页国内无法访问，我找不到详细的使用说明文档，无奈只有放弃这款插件。 在继续搜寻互联网之后，我寻找到了另外一种同样非常有效方法——不用插件也能显示分类图片！该方法基于 Styling Posts by Category and Category-Specific Images 并修改自 Very Easy WordPress Theme Hack: Show Category Images ，下面我来谈谈我是如何在博客首页上实现这个效果的，效果如下图： 准备好各个对应分类的图片，并且图片的名称需要和分类名一致！比如我有一个 “与我有关” 的文章分类，其缩略名是 “sth-about-me” ，那么我就将对应的分类图片命名为 “sth-about-me.jpg” （进入 WordPress 后台-管理-分类，即可修改分类缩略名，最好使用英文）。 使用 FTP 在你的 /wp-contant/ 目录下建立一个 cat-icons 目录，将所有分类图片上传至该目录下。 打开你的 index.php 文件，在 post 容器内，即 1 2 &#60;div class=&#34;post&#34; id=&#34;post-&#60;?php the_ID(); ?&#62;&#34;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>何为分类图片？——我们的每篇日志都有自己的分类，一般来说在文章栏中我们会用文字链接来描述文章所属分类，但有时候出于美观和页面整体效果的需要我们要用不同的图片来代替各种分类。那么如何来达到这种效果呢？</p>
<p>其实 <a href="http://zeuscn.net/archives/tag/wordpress" class="st_tag internal_tag" rel="tag" title="标签 wordpress 下的日志">WordPress</a> 已经有了个叫做 <a href="http://wordpress.org/extend/plugins/category-icons/" target="_blank" />Category Icons</a> 的插件可以帮助我们在文章需要的地方显示分类图片，并且还能显示在 Feed 中，该插件还提供一些其它的功能。可惜的是插件作者主页国内无法访问，我找不到详细的使用说明文档，无奈只有放弃这款插件。</p>
<p>在继续搜寻互联网之后，我寻找到了另外一种同样非常有效方法——不用插件也能显示分类图片！<span id="more-483"></span>该方法基于 <a href="http://www.wpdesigner.com/2007/06/22/styling-posts-by-category-and-category-specific-images/" target="_blank" />Styling Posts by Category and Category-Specific Images</a> 并修改自 <a href="http://www.jtpratt.com/very-easy-wordpress-theme-hack-show-category-images/" target="_blank" />Very Easy WordPress Theme Hack: Show Category Images</a> ，下面我来谈谈我是如何在博客首页上实现这个效果的，效果如下图：</p>
<p align=center><img src="http://pic.yupoo.com/zeuscn/1577362acf96/medium.jpg" alt="ZEUS." class="img_border" /></p>
<ol>
<li>准备好各个对应分类的图片，并且<strong>图片的名称需要和分类名一致</strong>！比如我有一个 “与我有关” 的文章分类，其缩略名是 “sth-about-me” ，那么我就将对应的分类图片命名为 “sth-about-me.jpg” （进入 WordPress 后台-管理-分类，即可修改分类缩略名，<strong>最好使用英文</strong>）。</li>
<li>使用 FTP 在你的 /wp-contant/ 目录下建立一个 cat-icons 目录，将所有分类图片上传至该目录下。</li>
<li>打开你的 index.<a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">php</a> 文件，在 post 容器内，即

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">&lt;div class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;post&quot;</span> id<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;post-&lt;?php the_ID(); ?&gt;&quot;</span><span style="color: #00AA00;">&gt;</span>
&lt;/div<span style="color: #00AA00;">&gt;</span></pre></td></tr></table></div>

<p>之中的适当位置添加如下代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>get_the_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$cat</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$catname</span> <span style="color: #339933;">=</span><span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">category_nicename</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;a href=/category/&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$catname</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;/&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;img src=http://yourdomain/wp-content/cat-icons/&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$catname</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;.jpg alt=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$catname</span> category <span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$catname</span> 分类 <span style="color: #000099; font-weight: bold;">\&quot;</span> /&gt;&lt;/a&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>我想稍懂 HTML 和 PHP 的朋友应该能理解上述语句的含义，但请注意，倘若你的分类永久链接形式不是默认的： “<strong>http://yourdomain/category/分类名称/</strong>” 那么你就需要根据自己的链接形式修改第四行的 “<strong>/category/</strong>” </li>
<li>最后你还需要有一定的 HTML/<a href="http://zeuscn.net/archives/tag/css" class="st_tag internal_tag" rel="tag" title="标签 css 下的日志">CSS</a> 的知识来将上述代码进行定位，你可以让它在 “entry 容器” 旁 float left 或者 right ，如果图片较小的话还能放到文章标题 H2 的旁边等等，这就要看大家的想象力和页面的排版方式了。</li>
</ol>
<p>完成上述步骤后，分类图片就能自动的添加在文章旁了。有个问题还需要注意，如果你的文章不止属于一个分类，此时对应的所有分类图片都会显示，如果你的版式和我一样只想让它显示一个分类图标的话就需要用 CSS 技巧来 hiden 多余的图片了。根据不同的样式其方法也不一样，所以我也不进行说明了。</p>
<p>比起安装插件，这个方法要更加简洁！也更推荐大家使用～ 不过如果你对 PHP HTML/CSS 相关知识还一无所知的话，就需要慎用了&#8230;</p>
<p align=right>zEUS.</P></p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 10日</a>, <a href='http://www.dogorgod.com/' rel='external nofollow' class='url'>dogorgod</a> writes: 哈哈，这么快就制作好了啊～效果不错
真是骇客的技巧，好好学习一下 :smile:</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 10日</a>, <a href='http://booto.net' rel='external nofollow' class='url'>Love CJ</a> writes: :mrgreen: 顶老大哈。。。这个好教程！</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 10日</a>, <a href='http://zeuscn.net/archives/2008/09/10/wordpress-category-icon-plus/' rel='external nofollow' class='url'>WordPress 显示分类图片的补充 | 網生@誌 | zEUS.'Blog</a> writes: [...] WordPress 技巧—显示分类图片 [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 10日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: @dogorgod：是啊，呵呵，可是样式我觉得还不是很完美，dogorogod 兄何时设计一下？
@Love CJ：不敢当啊... 我还不是很老呢...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 10日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 最近考虑着要更新首页...嗯 分类图片的确是个办法...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 11日</a>, <a href='http://www.wodidai.com' rel='external nofollow' class='url'>花果山寨</a> writes: 这样的效果还真不错</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 11日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 不过分类图片会增加首页的负担哦～</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 12日</a>, <a href='http://www.eemir3.com' rel='external nofollow' class='url'>Yacca</a> writes: 对我而言...我本来就在首页加图滴,无所谓了...

昨天考虑了下,找不到浑然统一的分类图...郁闷 先不换了...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 九月 15日</a>, <a href='http://jobru.net' rel='external nofollow' class='url'>JoBru</a> writes: :mrgreen: 很好很强大～～！！

Category Icons用代理倒可以上，不过还是大大说的方法简便～～</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 十月 9日</a>, <a href='http://www.appinn.com' rel='external nofollow' class='url'>scavin</a> writes: 主页打不开可以翻墙啊。。。

这年头上网，什么不会，不能不会翻墙啊

去 <a href="http://zeuscn.net/archives/tag/google" class="st_tag internal_tag" rel="tag" title="标签 google 下的日志">google</a> 搜索 tor 就有结果了</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 十月 9日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: 哈哈，前2天我就是在你那边找到的 tor 下载地址呢～
无界我也有用，不过我这人怕麻烦，懒得翻墙...</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 十二月 1日</a>, <a href='http://51blog.co.cc/2008/add-category-icon-for-template.html' rel='external nofollow' class='url'>我要博客 &raquo; 内容索引 &raquo; 为WordPress主题添加分类图标 - 网络 知识 分享 生活</a> writes: [...] 但搞了半天没有成功，在网上搜了一下，发现是用的这样的方法，原文请见：Wordpress 技巧—显示分类图片，代码如下： [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 十二月 19日</a>, <a href='http://www.yanjiecao.com' rel='external nofollow' class='url'>沿阶草</a> writes: 还可以尝试为这篇文章的div创建一个class名字，然后CSS加入背景不是更好么？</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2008年, 十二月 25日</a>, <a href='http://www.lalazhu.com/' rel='external nofollow' class='url'>l啦啦猪娱乐</a> writes: 恩，看起来很不错的样子</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2009年, 十月 21日</a>, <a href='http://t9labs.net.ru/wei-wordpress-tianjiafenleitubiao-er/' rel='external nofollow' class='url'>为WordPress添加分类图标(二) &#8211; T9Labs</a> writes: [...] 但搞了半天没有成功，在网上搜了一下，发现是用的这样的方法，原文请见：Wordpress 技巧—显示分类图片，代码如下： &lt;?php foreach((get_the_category()) as $cat) { $catname =$cat-&gt;category_nicename; echo &quot;&lt;a href=/category/&quot;; echo $catname; echo &quot;/&gt;&quot;; echo &quot;&lt;img src=http://yourdomain/wp-content/cat-icons/&quot;; echo $catname; echo &quot;.jpg alt=&quot;$catname category &quot; title=&quot;$catname 分类 &quot; /&gt;&lt;/a&gt;n&quot;; } ?&gt; [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2010年, 一月 7日</a>, <a href='http://www.canfree.com' rel='external nofollow' class='url'>左手烟</a> writes: 确实是个好方法，难道这就是传说中的日志缩略图么</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2010年, 七月 9日</a>, <a href='http://www.hongbaoshu.net/dev20100709.html' rel='external nofollow' class='url'>开发日志20100709洪宝书 | 洪宝书</a> writes: [...] WordPress 技巧-显示分类图片 [...]</li><li><a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">2011年, 三月 11日</a>, <a href='http://www.fouhe.com' rel='external nofollow' class='url'>否何</a> writes: 不错哦，我来试试，体验一下。</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html">http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.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/03/25/verse-o-matic.html" title="WordPress 插件：Verse-O-Matic (2008年, 三月 25日)">WordPress 插件：Verse-O-Matic</a> (189)</li>
	<li><a href="http://zeuscn.net/archives/2007/04/03/fh-freedom-blue.html" title="wordpress模板 FH Freedom blue 0.2 (2007年, 四月 3日)">wordpress模板 FH Freedom blue 0.2</a> (10)</li>
	<li><a href="http://zeuscn.net/archives/2008/10/31/chrome-googletoolbar.html" title="Chrome 竟无法安装 GoogleToolbar (2008年, 十月 31日)">Chrome 竟无法安装 GoogleToolbar</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2011/08/09/windows2003-iis6-wordpress-and-discuz-static-permalink.html" title="Windows2003 IIS6.0 下 WordPress 和 DiscuzX2 的伪静态实现方法 (2011年, 八月 9日)">Windows2003 IIS6.0 下 WordPress 和 DiscuzX2 的伪静态实现方法</a> (99)</li>
	<li><a href="http://zeuscn.net/archives/2008/03/10/display-category-description.html" title="WordPress 如何调用分类描述 (2008年, 三月 10日)">WordPress 如何调用分类描述</a> (140)</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> (184)</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/2009/06/23/501.html" title="501 (2009年, 六月 23日)">501</a> (20)</li>
	<li><a href="http://zeuscn.net/archives/2008/08/28/diary-3.html" title="八月二十八 星期四 阴转雨 (2008年, 八月 28日)">八月二十八 星期四 阴转雨</a> (19)</li>
	<li><a href="http://zeuscn.net/archives/2009/07/15/css-opacity.html" title="CSS opacity 实例页面 (2009年, 七月 15日)">CSS opacity 实例页面</a> (79)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/09/10/wordpress-category-icon.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>解除 XAMPP 的 Memory 大小限制</title>
		<link>http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html</link>
		<comments>http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html#comments</comments>
		<pubDate>Fri, 29 Feb 2008 03:25:38 +0000</pubDate>
		<dc:creator>zEUS.</dc:creator>
				<category><![CDATA[Wordpress研究]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[memory size]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp/</guid>
		<description><![CDATA[想必不少玩 WordPress 的朋友都有用 XAMPP 搭建本地 PHP+Mysql 的环境用于 WordPress 主题模板和插件的测试。但是一直以来我都遇到一个问题：远程服务器上的 WordPress 后台导出的“文章、评论、分类”(XML)文件在导入到本地 WordPress 时出现下面的报错（可能是文章等内容比较多）： Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 320160 bytes) in D:\xampp\htdocs\wp-admin\import\wordpress.php on line 125 从字面上理解应该是 memory size 的限制，前2日在 JC 的提示下终于找到解决办法（假设 XAMPP 安装在D盘根目录）： 1、打开 D:\xampp\apache\bin 目录； 2、找到并打开 php.ini 配置文件； 3、搜索 memory，找到如下内容： ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; max_execution_time [...]]]></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/xampp" class="st_tag internal_tag" rel="tag" title="标签 XAMPP 下的日志">XAMPP</a> 搭建本地 <a href="http://zeuscn.net/archives/tag/php" class="st_tag internal_tag" rel="tag" title="标签 php 下的日志">PHP</a>+<a href="http://zeuscn.net/archives/tag/mysql" class="st_tag internal_tag" rel="tag" title="标签 mysql 下的日志">Mysql</a> 的环境用于 WordPress 主题模板和插件的测试。但是一直以来我都遇到一个问题：远程服务器上的 WordPress 后台导出的“文章、评论、分类”(XML)文件在导入到本地 WordPress 时出现下面的报错（可能是文章等内容比较多）：</p>
<blockquote><p>Fatal error: Allowed <a href="http://zeuscn.net/archives/tag/memory-size" class="st_tag internal_tag" rel="tag" title="标签 memory size 下的日志">memory size</a> of 33554432 bytes exhausted (tried to allocate 320160 bytes) in D:\xampp\htdocs\wp-admin\import\wordpress.php on line 125</p></blockquote>
<p><span id="more-341"></span><br />
从字面上理解应该是 memory size 的限制，前2日在 <a href="http://interjc.net">JC</a> 的提示下终于找到解决办法（假设 XAMPP 安装在D盘根目录）：<br />
1、打开 <strong>D:\xampp\<a href="http://zeuscn.net/archives/tag/apache" class="st_tag internal_tag" rel="tag" title="标签 apache 下的日志">apache</a>\bin</strong> 目录；<br />
2、找到并打开 <strong>php.ini</strong> 配置文件；<br />
3、搜索 memory，找到如下内容：<br />
<coolcode linenum="off" lang="html">;;;;;;;;;;;;;;;;;;;<br />
; Resource Limits ;<br />
;;;;;;;;;;;;;;;;;;;<br />
max_execution_time = 60     ; Maximum execution time of each script, in seconds<br />
max_input_time = 60	; Maximum amount of time each script may spend parsing request data<br />
memory_limit = 32M      ; Maximum amount of memory a script may consume (16MB)</coolcode><br />
<strong>memory_limit</strong> 即是用于设定 memory size 大小的参数，<strong>将其值修改为64M或更大</strong>。另外2个参数 max_execution_time 和 max_input_time 字面理解应该是超时和导入时间的设定，也可以根据需要进行调整。最后保存；<br />
5、回到 XAMPP 的根目录下，双击 <strong>xampp_restart.exe</strong> 重启 Apache 和 Mysql 。<br />
That&#8217;s all. 回到 WordPress 后台，即可顺利导入XML文件了 <img src='http://zeuscn.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /><br />
很 easy 吧～ 以后再也不用担心 memory size 的问题了！</p>
<p align=right>zEUS.</p>
<hr /><h2>日志评论</h2><ul><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 二月 29日</a>, <a href='http://www.gtalkme.com' rel='external nofollow' class='url'>fiorano</a> writes: 我到还没碰见过这个问题 :cool:</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 二月 29日</a>, zEUS. writes: @fiorano：我一开始就遇到了这个问题  :???:</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 二月 29日</a>, <a href='http://aboutrss.cn/' rel='external nofollow' class='url'>抽筋儿</a> writes: 好文，换版了哦。。还是小露的头。。</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 三月 1日</a>, <a href='http://www.lidiy.com' rel='external nofollow' class='url'>lidiy</a> writes: 呵呵，真的弄出像CMS的效果了哦呵呵不错啊！！呵呵</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 三月 2日</a>, <a href='http://gangege.com' rel='external nofollow' class='url'>GanGeGe</a> writes: 我刚一提供下载你这就来个技术支持了......</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 四月 27日</a>, <a href='http://caitou.com' rel='external nofollow' class='url'>大猫</a> writes: 我x啊,php.ini在apache里面,我还去php那里设....
多谢多谢</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 四月 27日</a>, <a href='http://caitou.com' rel='external nofollow' class='url'>大猫</a> writes: 我是discuzEXP的...似乎apache里没...php.ini改了还是不行....Fatal error: Maximum execution time of 30 seconds exceeded in D:\Discuz!EXP\wwwroot\wordpress\wp-includes\wp-db.php on line 144</li><li><a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">2008年, 四月 27日</a>, <a href='http://zeuscn.net/' rel='external nofollow' class='url'>zEUS.</a> writes: @大猫： :roll: 没用过Discuz!EXP，所以我也不是很清楚... 我想，<a href="http://zeuscn.net/archives/tag/google" class="st_tag internal_tag" rel="tag" title="标签 google 下的日志">google</a> 能帮你找到答案的 :arrow:</li></ul><hr /><p>本文地址：<a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html">http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html</a>，转载原创文章请注明 <a href="http://zeuscn.net/">zEUScn.NET</a> ‖
      您可以直接 <a href="http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.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/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/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/09/11/wordpress-cms-index.html" title="WordPress 较常用的首页文章 CMS 排版方法 (2008年, 九月 11日)">WordPress 较常用的首页文章 CMS 排版方法</a> (108)</li>
	<li><a href="http://zeuscn.net/archives/2007/08/02/wp-background-chinese.html" title="wordpress后台无法汉化的解决办法 (2007年, 八月 2日)">wordpress后台无法汉化的解决办法</a> (11)</li>
	<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/2008/08/28/diary-3.html" title="八月二十八 星期四 阴转雨 (2008年, 八月 28日)">八月二十八 星期四 阴转雨</a> (19)</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/07/11/wordpress-theme-diablo-iii.html" title="敬请期待七月主题—Diablo III (2008年, 七月 11日)">敬请期待七月主题—Diablo III</a> (139)</li>
	<li><a href="http://zeuscn.net/archives/2008/10/26/diary-5.html" title="又见日记 (2008年, 十月 26日)">又见日记</a> (39)</li>
	<li><a href="http://zeuscn.net/archives/2011/07/23/flv-player-and-bitcomet-flv-converter.html" title="WordPress flv 视频播放插件：flv-player 的安装使用及下载 附带 BitComet FLV 转换器下载 (2011年, 七月 23日)">WordPress flv 视频播放插件：flv-player 的安装使用及下载 附带 BitComet FLV 转换器下载</a> (101)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zeuscn.net/archives/2008/02/29/set-more-memory-size-for-xampp.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

