<?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>WordPress主题 &#124; 设计,制作,定制WP主题 &#187; 常见问题</title>
	<atom:link href="http://www.lizus.com/cat/faq/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lizus.com</link>
	<description>个人,团队,企业 &#124; WordPress模板</description>
	<lastBuildDate>Thu, 02 Feb 2012 07:42:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>18条WordPress SQL查询语句</title>
		<link>http://www.lizus.com/blog/2010/05/12/18tiao-wordpress-sqlcha-xun-yu/</link>
		<comments>http://www.lizus.com/blog/2010/05/12/18tiao-wordpress-sqlcha-xun-yu/#comments</comments>
		<pubDate>Wed, 12 May 2010 12:00:48 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=173</guid>
		<description><![CDATA[不要轻易折腾你的SQL。但有的时候 ，使用SQL能大大提高你的办事效率，或者有的时候，你不得不用SQL来改变一些东西，比如把让你老是觉得不安全的admin这几个字换成其它的，比如你 想收集所]]></description>
			<content:encoded><![CDATA[<p>不要轻易折腾你的SQL。但有的时候  ，使用SQL能大大提高你的办事效率，或者有的时候，你不得不用SQL来改变一些东西，比如把让你老是觉得不安全的admin这几个字换成其它的，比如你 想收集所有留言者的邮箱地址来实现你的垃圾营销目的.</p>
<p>本文为大家介绍<strong>19条<a href="http://lizus.com">wordpress</a> SQL查询</strong>，你可能啥时候就会需要到。</p>
<p><strong>使用方法：</strong></p>
<p>进入你主机的phpmyadmin，选择你的WordPress数据，点击SQL选项卡，在文本框中输入SQL查询语句，执行！</p>
<p><strong>高度注意：</strong></p>
<p>在每次执行SQL语句前，请<strong>勿必备份你的WordPress数据库</strong>。</p>
<h3>1. 删除所有未使用的标签</h3>
<pre><code>DELETE a,b,c
FROM wp_terms AS a
LEFT JOIN wp_term_taxonomy AS c ON a.term_id = c.term_id
LEFT JOIN wp_term_relationships AS b ON b.term_taxonomy_id = c.term_taxonomy_id
WHERE c.taxonomy = 'post_tag' AND c.count = 0</code></pre>
<h3>2. 删除所有文章修订版本(Revisions)以及它们的Meta数据</h3>
<pre><code>DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = 'revision'</code></pre>
<h3>3. 更改WordPress地址和首页地址</h3>
<pre><code>UPDATE wp_options
SET option_value = replace(option_value, 'http://www.旧网址.com', 'http://www.新网址.com')
WHERE option_name = 'home' OR option_name = 'siteurl'</code></pre>
<h3>4. 更改文章的GUID</h3>
<pre><code>UPDATE wp_posts
SET guid = REPLACE (guid, 'http://www.旧网址.com', 'http://www.新网址.com')</code></pre>
<h3>5. 更改正文中的链接地址</h3>
<pre><code>UPDATE wp_posts
SET post_content = REPLACE (post_content, 'http://www.旧网址.com', 'http://www.新网址.com')</code></pre>
<h3>6. 更新文章的Meta值</h3>
<pre><code>UPDATE wp_postmeta
SET meta_value = REPLACE (meta_value, 'http://www.旧网址.com', 'http://www.新网址.com'</code></pre>
<h3>7. 重设Admin密码</h3>
<pre><code>UPDATE wp_users
SET user_pass = MD5( 'new_password' )
WHERE user_login = 'admin'</code></pre>
<h3>8. 重设admin的用户名</h3>
<pre><code>UPDATE wp_users
SET user_login = 'newname'
WHERE user_login = 'admin'</code></pre>
<h3>9. 将作者a的文章全部转移到作者b</h3>
<pre><code>UPDATE wp_posts
SET post_author = 'b'
WHERE post_author = 'a'</code></pre>
<h3>10. 删除文章的meta标签</h3>
<pre><code>DELETE FROM wp_postmeta
WHERE meta_key = 'your-meta-key'
</code>
</pre>
<h3>11. 导出所有评论中的邮件地址</h3>
<pre><code>SELECT DISTINCT comment_author_email
FROM wp_comments</code></pre>
<h3>12. 删除所有的Pingback</h3>
<pre><code>DELETE FROM wp_comments
WHERE comment_type = 'pingback'</code></pre>
<h3>13. 删除所有的垃圾评论</h3>
<pre><code>DELETE FROM wp_comments
WHERE comment_approved = 'spam'</code></pre>
<h3>14. 禁用所有激活的插件</h3>
<pre><code>UPDATE wp_options
SET option_value = ''
WHERE option_name = 'active_plugins'</code></pre>
<h3>15. 罗列所有未使用的Meta标签</h3>
<pre><code>SELECT *
FROM wp_postmeta pm
LEFT JOIN wp_posts wp ON wp.ID = pm.post_id
WHERE  wp.ID IS NULL</code></pre>
<h3>16. 关闭旧文章的留言</h3>
<pre><code>UPDATE wp_posts
SET comment_status = 'closed'
WHERE post_date &lt; '2009-01-01' AND post_status = 'publish'</code></pre>
<h3>17. 更新留言者的网址</h3>
<pre><code>UPDATE wp_comments
SET comment_author_url = REPLACE( comment_author_url, 'http://旧网址.com', 'http://新网址.com' )</code></pre>
<h3>18. 更新正文内所有的’target=”_blank”‘为’rel=”nofollow”‘</h3>
<pre><code>UPDATE wp_posts
SET post_content = REPLACE (post_content, 'target="_blank',  'rel="nofollow')</code></pre>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2011/03/30/wordpress-host-faq/" title="空间上安装使用WordPress常见问题小结">空间上安装使用WordPress常见问题小结</a></li><li><a href="http://www.lizus.com/blog/2009/12/06/wordpressxu-ni-zhu-ji-plan-1-zhi-chi-drupal-shopex-discuz-deng/" title="WordPress虚拟主机 Plan-1 支持 WordPress Drupal ShopEX Discuz 等">WordPress虚拟主机 Plan-1 支持 WordPress Drupal ShopEX Discuz 等</a></li><li><a href="http://www.lizus.com/blog/2009/12/11/wordpressfa-bu-de-wen-zhang-ru-he-bei-kuai-su-shou-lu/" title="WordPress发布的文章如何被快速收录?">WordPress发布的文章如何被快速收录?</a></li><li><a href="http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh/" title="WordPress伪静态如何实现.html结尾?">WordPress伪静态如何实现.html结尾?</a></li><li><a href="http://www.lizus.com/blog/2009/12/11/c4work/" title="c4work">c4work</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/05/12/18tiao-wordpress-sqlcha-xun-yu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>哪些网站在使用WordPress</title>
		<link>http://www.lizus.com/blog/2010/02/02/na-xie-wang-zhan-zai-shi-yong/</link>
		<comments>http://www.lizus.com/blog/2010/02/02/na-xie-wang-zhan-zai-shi-yong/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 07:20:01 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress博客]]></category>
		<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[wordpress站点]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=152</guid>
		<description><![CDATA[WordPress作为全球流行的CMS布署工具,因其轻量,灵活,易布署,易优化等特点早已渗透到CMS的各种领域.以下列表展示在全球范围内的各类以WordPress搭建的网站(列表随时可能更新,且排名不分先后.): 黑]]></description>
			<content:encoded><![CDATA[<p>WordPress作为全球流行的CMS布署工具,因其轻量,灵活,易布署,易优化等特点早已渗透到CMS的各种领域.以下列表展示在全球范围内的各类以WordPress搭建的网站(列表随时可能更新,且排名不分先后.):</p>
<ul>
<li><a href="http://blogs.blackberry.com/" target="_blank">黑莓手机官 方博客</a></li>
</ul>
<p>如果你也知道WordPress做的站点,请发邮件告诉我吧,谢谢:)</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2011/04/20/10-after-install-wp/" title="10件安装WordPress后需要做的事">10件安装WordPress后需要做的事</a></li><li><a href="http://www.lizus.com/blog/2011/04/17/wordpress-custom-function-is-local-url/" title="WordPress自制函数is_local_url判断是否是本地链接">WordPress自制函数is_local_url判断是否是本地链接</a></li><li><a href="http://www.lizus.com/blog/2011/04/28/plugins-wumii/" title="插件推荐：无觅相关文章插件">插件推荐：无觅相关文章插件</a></li><li><a href="http://www.lizus.com/blog/2009/12/05/hi-low-gallery-artdesign-photograph-gallery/" title="HI-LOW GALLERY | Art^Design Photograph Gallery">HI-LOW GALLERY | Art^Design Photograph Gallery</a></li><li><a href="http://www.lizus.com/blog/2012/01/18/%e5%bd%a2%e6%91%84%e5%bd%b1%e5%b7%a5%e4%bd%9c%e5%ae%a4/" title="形摄影工作室">形摄影工作室</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/02/02/na-xie-wang-zhan-zai-shi-yong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress后台上传了图片为什么找不到?</title>
		<link>http://www.lizus.com/blog/2010/01/13/wordpresshou-tai-shang-chuan-l/</link>
		<comments>http://www.lizus.com/blog/2010/01/13/wordpresshou-tai-shang-chuan-l/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 02:48:44 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[WordPress常见问题]]></category>
		<category><![CDATA[图片上传]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=134</guid>
		<description><![CDATA[一般全新安装WordPress主题并不会出现后台上传了图片找不到的问题,但如果使用了导入的数据的话就有可能发生这样的情况.那么问题出在哪里呢? 试着点击后台设置中的杂项设置这一栏,可以看到]]></description>
			<content:encoded><![CDATA[<p>一般全新安装WordPress主题并不会出现后台上传了图片找不到的问题,但如果使用了导入的数据的话就有可能发生这样的情况.那么问题出在哪里呢?</p>
<p>试着点击后台设置中的杂项设置这一栏,可以看到<span style="color: #ff0000;">上传文件保存在此目录</span>这一项中所写的内容如果不是<span style="color: #ff0000;">wp-content/uploads</span>这个的话,只要改成<span style="color: #ff0000;">wp-content/uploads</span>这样就可以了.</p>
<p>怎么样,简单吧.呵呵,试着享受WordPress</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2011/04/09/post_is_in_under_category/" title="判断文章是否属于某分类的WordPress函数">判断文章是否属于某分类的WordPress函数</a></li><li><a href="http://www.lizus.com/blog/2009/12/11/pei-meng-fu-shi/" title="培蒙服饰">培蒙服饰</a></li><li><a href="http://www.lizus.com/blog/2009/12/14/wordpressshi-shi-me/" title="wordpress是什么?">wordpress是什么?</a></li><li><a href="http://www.lizus.com/blog/2010/04/22/takit-me/" title="takit.me">takit.me</a></li><li><a href="http://www.lizus.com/blog/2009/12/05/hi-low-gallery-artdesign-photograph-gallery/" title="HI-LOW GALLERY | Art^Design Photograph Gallery">HI-LOW GALLERY | Art^Design Photograph Gallery</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/01/13/wordpresshou-tai-shang-chuan-l/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress伪静态如何实现目录+文章形式?</title>
		<link>http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh-2/</link>
		<comments>http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh-2/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 02:23:24 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[URL静态化]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=132</guid>
		<description><![CDATA[WordPress的伪静态实现通常都是在永久链接中设置,相应参考WordPress伪静态如何实现.html结尾?这个文章. 在永久链接设置这个栏中无法找到实现目录名+文章名这样的URL形式,我们知道凡是自定义URL这]]></description>
			<content:encoded><![CDATA[<p id="crumbs">WordPress的伪静态实现通常都是在永久链接中设置,相应参考<a href="http://lizus.com/faq/wordpresswei-jing-tai-ru-he-sh/"><strong></strong><strong>WordPress伪静态如何实现.html结尾?</strong></a>这个文章.</p>
<p>在永久链接设置这个栏中无法找到实现目录名+文章名这样的URL形式,我们知道凡是自定义URL这一类都是在自定义结构里操作的,那么怎么写才能实现目录名+文章名这样的URL形式呢?</p>
<p>这就是答案: <span style="color: #ff0000;">/%category%/%postname%/ </span>同样,基于.html的需求也可以写成这样: <span style="color: #ff0000;">/%category%/%postname%/</span></p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2009/12/06/phpxu-ni-zhu-ji-plan-5-zhi-chi-wordpress-drupal-shopex-discuz-deng/" title="WordPress虚拟主机 Plan-5 支持 WordPress Drupal ShopEX Discuz 等">WordPress虚拟主机 Plan-5 支持 WordPress Drupal ShopEX Discuz 等</a></li><li><a href="http://www.lizus.com/blog/2009/12/11/wordpressfa-bu-de-wen-zhang-ru-he-bei-kuai-su-shou-lu/" title="WordPress发布的文章如何被快速收录?">WordPress发布的文章如何被快速收录?</a></li><li><a href="http://www.lizus.com/blog/2011/04/28/plugins-wumii/" title="插件推荐：无觅相关文章插件">插件推荐：无觅相关文章插件</a></li><li><a href="http://www.lizus.com/blog/2012/01/18/%e5%bd%a2%e6%91%84%e5%bd%b1%e5%b7%a5%e4%bd%9c%e5%ae%a4/" title="形摄影工作室">形摄影工作室</a></li><li><a href="http://www.lizus.com/blog/2011/04/13/wordpress-functions-post-page-category/" title="WordPress函数自制之关于Post,Page,Category之间关系的函数">WordPress函数自制之关于Post,Page,Category之间关系的函数</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress伪静态如何实现.html结尾?</title>
		<link>http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh/</link>
		<comments>http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 02:10:27 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[html结尾的URL]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=128</guid>
		<description><![CDATA[要开启WordPress的伪静态功能,通常只需要服务器支持PHP的rewrite模块即可. 而打开WordPress的伪静态也很简单,只要在后台的设置中的永久链接子栏目点进去在通用设置中随意选择除默认之外的项即可]]></description>
			<content:encoded><![CDATA[<p>要开启WordPress的伪静态功能,通常只需要服务器支持PHP的rewrite模块即可.</p>
<p>而打开WordPress的伪静态也很简单,只要在后台的设置中的永久链接子栏目点进去在通用设置中随意选择除默认之外的项即可.</p>
<p>但通常WordPress的伪静态都是以目录形式来做的,也就是即使是文章内页也不带任何后缀的,这样就给有些朋友造成误会,以为WordPress的伪静态做不到使用文件后缀结尾.其实要实现这个很简单,比如说选择&#8217;月份和名称&#8217;这一项时马上就可以看到在自定义结构的Input中看到<span style="color: #ff0000;">/%year%/%monthnum%/%postname%/</span>,我们只要在这里更改为<span style="color: #ff0000;">/%year%/%monthnum%/%postname%.html</span>即实现了以.html为后缀的URL形式.简单吧.同样,原则上,你可以根据自己的需要改成任何其他的形式.</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2009/12/14/wordpressfei-guan-fang-zhong-wen-zhan/" title="WordPress非官方中文站">WordPress非官方中文站</a></li><li><a href="http://www.lizus.com/blog/2010/01/25/loris/" title="loris">loris</a></li><li><a href="http://www.lizus.com/blog/2012/02/02/wordpress-3-3%e8%83%8c%e6%99%af%e5%8a%9f%e8%83%bd%e5%a4%b1%e6%95%88%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/" title="WordPress 3.3背景功能失效解决方案">WordPress 3.3背景功能失效解决方案</a></li><li><a href="http://www.lizus.com/blog/2009/12/11/wopuszhong-wen-bo-ke-ping-tai/" title="Wopus中文博客平台">Wopus中文博客平台</a></li><li><a href="http://www.lizus.com/blog/2011/04/28/plugins-wumii/" title="插件推荐：无觅相关文章插件">插件推荐：无觅相关文章插件</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>怎样换WordPress主题显示的Logo?</title>
		<link>http://www.lizus.com/blog/2010/01/12/zen-yang-huan-wordpresszhu-ti/</link>
		<comments>http://www.lizus.com/blog/2010/01/12/zen-yang-huan-wordpresszhu-ti/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:09:03 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[常见问题]]></category>
		<category><![CDATA[Logo更换]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=125</guid>
		<description><![CDATA[通常网站都会做一个Logo用以表现自己,展示自己,并借此作为客户识别网站的标志.为了给客户加深印象,或者业务变化,或者更换主题,等等,无论怎么样的原因,总之,有时候,我们需要更换Logo.那么Logo]]></description>
			<content:encoded><![CDATA[<p>通常网站都会做一个Logo用以表现自己,展示自己,并借此作为客户识别网站的标志.为了给客户加深印象,或者业务变化,或者更换主题,等等,无论怎么样的原因,总之,有时候,我们需要更换Logo.那么Logo该怎么换呢?</p>
<p>有的主题会在网站的后台上显示一个主题特定的设置选项,可能位于后台的外观子栏目列表中,其实也许会有更换Logo的相应设定.但通常考虑到Logo不会常常换的原因,主题制作时不会特意的去写到后台中.这时候更换Logo就必须使用到FTP了.</p>
<p><del>Lizus制作的WordPress主题相应的Logo一般放在主题相应文件夹的images文件夹中叫logo.gif或logo.png之类的文件,只要上传替换一般就可以完成Logo更换了.不过最好更换之间记得备份喔.</del></p>
<p>从Spark Core 11.03开始,Logo图标只需在后台的主题设置中进行更换即可.</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2011/03/30/wordpress-3-2-plan/" title="WordPress 3.2计划：更快，更轻？">WordPress 3.2计划：更快，更轻？</a></li><li><a href="http://www.lizus.com/blog/2009/12/06/wordpressxu-ni-zhu-ji-plan-1-zhi-chi-drupal-shopex-discuz-deng/" title="WordPress虚拟主机 Plan-1 支持 WordPress Drupal ShopEX Discuz 等">WordPress虚拟主机 Plan-1 支持 WordPress Drupal ShopEX Discuz 等</a></li><li><a href="http://www.lizus.com/blog/2009/12/11/shang-hai-tian-wo-beng-fa/" title="上海天沃泵阀">上海天沃泵阀</a></li><li><a href="http://www.lizus.com/blog/2011/03/30/wordpress-editor/" title="WordPress编辑器全攻略">WordPress编辑器全攻略</a></li><li><a href="http://www.lizus.com/blog/2010/04/20/ijiayu-com/" title="ijiayu.com">ijiayu.com</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/01/12/zen-yang-huan-wordpresszhu-ti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>碰到Fatal error: Allowed memory size of&#8230;.这个问题怎么办?</title>
		<link>http://www.lizus.com/blog/2010/01/12/peng-dao-fatal-error-allowed-memory-size-of-zhe-ge-wen-ti-zen-me-ban/</link>
		<comments>http://www.lizus.com/blog/2010/01/12/peng-dao-fatal-error-allowed-memory-size-of-zhe-ge-wen-ti-zen-me-ban/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 12:25:06 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=122</guid>
		<description><![CDATA[在使用WordPress的过程中,有时候会碰到这个问题: Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes) 通常会在2个时候碰到: WordPress程序更新过后. 安装新插件启用的时候. 不过]]></description>
			<content:encoded><![CDATA[<p>在使用WordPress的过程中,有时候会碰到这个问题:</p>
<p>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes)</p>
<p>通常会在2个时候碰到:</p>
<ol>
<li>WordPress程序更新过后.</li>
<li>安装新插件启用的时候.</li>
</ol>
<p>不过不要紧,一般这个不是致命错误,所以不必担心程序坏掉,或是数据丢失,文件丢失之类的问题.而且一般不去修复这个错误,程序也是可以正常使用的.那么如果想修复一下怎么办呢?Lizus在这里提供一个很简单的办法,就是用你的FTP登录到你的WP站点,从WP安装的根目录中找到wp-setting.php,用记事本打开,然后找到:</p>
<pre>define('WP_MEMORY_LIMIT', '32M');</pre>
<p>把其中的32修改成64或128即可.</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2009/12/11/wordpresswang-zhan-di-zhi-lan-qian-mian-de-tu-biao-zen-me-nong/" title="WordPress网站地址栏前面的图标怎么弄?">WordPress网站地址栏前面的图标怎么弄?</a></li><li><a href="http://www.lizus.com/blog/2010/10/23/wu-tuo-feng-yi-shu-she-ji/" title="乌托风艺术设计">乌托风艺术设计</a></li><li><a href="http://www.lizus.com/blog/2010/01/13/wordpresswei-jing-tai-ru-he-sh/" title="WordPress伪静态如何实现.html结尾?">WordPress伪静态如何实现.html结尾?</a></li><li><a href="http://www.lizus.com/blog/2009/12/14/wordpressshi-shi-me/" title="wordpress是什么?">wordpress是什么?</a></li><li><a href="http://www.lizus.com/blog/2010/07/12/samanthass-com/" title="samanthass.com">samanthass.com</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2010/01/12/peng-dao-fatal-error-allowed-memory-size-of-zhe-ge-wen-ti-zen-me-ban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress是什么?</title>
		<link>http://www.lizus.com/blog/2009/12/14/wordpressshi-shi-me/</link>
		<comments>http://www.lizus.com/blog/2009/12/14/wordpressshi-shi-me/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 02:35:31 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=112</guid>
		<description><![CDATA[WordPress是一种使用 PHP 语言和MySQL 数据库开发的开源、免费的CMS(内容发布)及Blog （博客，网志）程序，用户可以在支持 PHP 和 MySQL 数据库的服务器上建立自己的 Blog。WordPress 是一个功能非常强]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;"><span style="font-family: 宋体;"><strong>WordPress</strong>是一种使用 PHP 语言和MySQL 数据库开发的开源、免费的CMS(内容发布)及Blog （博客，网志）程序，用户可以在支持 PHP 和 MySQL 数据库的服务器上建立自己的 Blog。<strong>WordPress</strong> 是一个功能非常强大的博客系统，插件众多，易于扩充功能。安装和使用都非常方便。目前 WordPress 已经成为主流的Blog 搭建平台。</span></span></p>
<p><span style="font-size: small;"><span style="font-family: 宋体;">加上WordPress成千上万的插件,WordPress几乎能做任何事,Blog,企业站点,产品展示,照相册等等等等.<br />
</span></span></p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2010/01/25/loris/" title="loris">loris</a></li><li><a href="http://www.lizus.com/blog/2011/03/30/wordpress-editor/" title="WordPress编辑器全攻略">WordPress编辑器全攻略</a></li><li><a href="http://www.lizus.com/blog/2009/12/05/hi-low-gallery-artdesign-photograph-gallery/" title="HI-LOW GALLERY | Art^Design Photograph Gallery">HI-LOW GALLERY | Art^Design Photograph Gallery</a></li><li><a href="http://www.lizus.com/blog/2011/04/28/plugins-wumii/" title="插件推荐：无觅相关文章插件">插件推荐：无觅相关文章插件</a></li><li><a href="http://www.lizus.com/blog/2009/12/06/wordpressxu-ni-zhu-ji-plan-2-zhi-chi-wordpress-drupal-shopex-discuz-deng/" title="WordPress虚拟主机 Plan-2 支持 WordPress Drupal ShopEX Discuz 等">WordPress虚拟主机 Plan-2 支持 WordPress Drupal ShopEX Discuz 等</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2009/12/14/wordpressshi-shi-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress网站地址栏前面的图标怎么弄?</title>
		<link>http://www.lizus.com/blog/2009/12/11/wordpresswang-zhan-di-zhi-lan-qian-mian-de-tu-biao-zen-me-nong/</link>
		<comments>http://www.lizus.com/blog/2009/12/11/wordpresswang-zhan-di-zhi-lan-qian-mian-de-tu-biao-zen-me-nong/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:31:52 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[常见问题]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=104</guid>
		<description><![CDATA[通常Lizus.com制作的WordPress主题中,地址栏前面的图标文件都是命名为favicon.ico并要求放在主题包下的images文件夹下的. 你只要制作一个16*16或32*32大小的ICO格式图标命名为favicon.ico并放在相应主题包]]></description>
			<content:encoded><![CDATA[<p><del>通常Lizus.com制作的<a href="http://lizus.com">WordPress</a>主题中,地址栏前面的图标文件都是命名为favicon.ico并要求放在主题包下的images文件夹下的.</del></p>
<p><del>你只要制作一个16*16或32*32大小的ICO格式图标命名为favicon.ico并放在相应主题包的images文件夹下就OK了.</del></p>
<p>从Spark Core 11.03开始,地址栏图标只需在后台的主题设置中进行更换即可.</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2009/12/11/ceramic-tileporcelain-tilepolished-tile/" title="Ceramic tile,Porcelain tile,Polished tile">Ceramic tile,Porcelain tile,Polished tile</a></li><li><a href="http://www.lizus.com/blog/2010/10/23/wu-tuo-feng-yi-shu-she-ji/" title="乌托风艺术设计">乌托风艺术设计</a></li><li><a href="http://www.lizus.com/blog/2010/01/12/peng-dao-fatal-error-allowed-memory-size-of-zhe-ge-wen-ti-zen-me-ban/" title="碰到Fatal error: Allowed memory size of&#8230;.这个问题怎么办?">碰到Fatal error: Allowed memory size of&#8230;.这个问题怎么办?</a></li><li><a href="http://www.lizus.com/blog/2011/04/17/wordpress-custom-function-is-local-url/" title="WordPress自制函数is_local_url判断是否是本地链接">WordPress自制函数is_local_url判断是否是本地链接</a></li><li><a href="http://www.lizus.com/blog/2011/04/26/liuliang/" title="换角度理解网站流量">换角度理解网站流量</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2009/12/11/wordpresswang-zhan-di-zhi-lan-qian-mian-de-tu-biao-zen-me-nong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress发布的文章如何被快速收录?</title>
		<link>http://www.lizus.com/blog/2009/12/11/wordpressfa-bu-de-wen-zhang-ru-he-bei-kuai-su-shou-lu/</link>
		<comments>http://www.lizus.com/blog/2009/12/11/wordpressfa-bu-de-wen-zhang-ru-he-bei-kuai-su-shou-lu/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:09:31 +0000</pubDate>
		<dc:creator>Lizus</dc:creator>
				<category><![CDATA[WordPress知识]]></category>
		<category><![CDATA[常见问题]]></category>
		<category><![CDATA[WordPress常见问题]]></category>

		<guid isPermaLink="false">http://lizus.com/?p=101</guid>
		<description><![CDATA[WordPress在后台的设置中的撰写选项里提供了一项更新通知服务,这个服务会在发表文章的时候启动,将你发表的文章同时通知到你在更新通知服务列表中输入的网址,这样,据说Google可以在你发表1分]]></description>
			<content:encoded><![CDATA[<p>WordPress在后台的设置中的撰写选项里提供了一项更新通知服务,这个服务会在发表文章的时候启动,将你发表的文章同时通知到你在更新通知服务列表中输入的网址,这样,据说Google可以在你发表1分钟内将你的内容呈现在搜索引擎的结果列表中.所以这一项服务对于各位希望被快速收录的WordPress使用者来说,无疑是相当重要的.</p>
<p>那么这个更新通知服务列表中该填些什么呢?</p>
<p>试试这些吧:</p>
<p>http://blogsearch.google.com/ping/RPC2</p>
<p>http://1470.net/api/ping</p>
<p>http://api.feedster.com/ping</p>
<p>http://api.moreover.com/RPC2</p>
<p>http://api.moreover.com/ping</p>
<p>http://api.my.yahoo.com/RPC2</p>
<p>http://api.my.yahoo.com/rss/ping</p>
<p>http://bblog.com/ping.php</p>
<p>http://bitacoras.net/ping</p>
<p>http://blog.goo.ne.jp/XMLRPC</p>
<p>http://blogdb.jp/xmlrpc</p>
<p>http://blogmatcher.com/u.php</p>
<p>http://bulkfeeds.net/rpc</p>
<p>http://coreblog.org/ping/</p>
<p>http://mod-pubsub.org/kn_apps/blogchatt</p>
<p>http://www.lasermemory.com/lsrpc/</p>
<p>http://ping.amagle.com/</p>
<p>http://ping.bitacoras.com</p>
<p>http://ping.blo.gs/</p>
<p>http://ping.bloggers.jp/rpc/</p>
<p>http://ping.cocolog-nifty.com/xmlrpc</p>
<p>http://ping.blogmura.jp/rpc/</p>
<p>http://ping.exblog.jp/xmlrpc</p>
<p>http://ping.feedburner.com</p>
<p>http://ping.myblog.jp</p>
<p>http://ping.rootblog.com/rpc.php</p>
<p>http://ping.syndic8.com/xmlrpc.php</p>
<p>http://ping.weblogalot.com/rpc.php</p>
<p>http://ping.weblogs.se/</p>
<p>http://pingoat.com/goat/RPC2</p>
<p>http://rcs.datashed.net/RPC2/</p>
<p>http://rpc.blogbuzzmachine.com/RPC2</p>
<p>http://rpc.blogrolling.com/pinger/</p>
<p>http://rpc.icerocket.com:10080/</p>
<p>http://rpc.newsgator.com/</p>
<p>http://rpc.pingomatic.com</p>
<p>http://rpc.technorati.com/rpc/ping</p>
<p>http://rpc.weblogs.com/RPC2</p>
<p>http://topicexchange.com/RPC2</p>
<p>http://trackback.bakeinu.jp/bakeping.php</p>
<p>http://www.a2b.cc/setloc/bp.a2b</p>
<p>http://www.bitacoles.net/ping.php</p>
<p>http://www.blogdigger.com/RPC2</p>
<p>http://www.blogoole.com/ping/</p>
<p>http://www.blogoon.net/ping/</p>
<p>http://www.blogpeople.net/servlet/weblogUpdates</p>
<p>http://www.blogroots.com/tb_populi.blog?id=1</p>
<p>http://www.blogshares.com/rpc.php</p>
<p>http://www.blogsnow.com/ping</p>
<p>http://www.blogstreet.com/xrbin/xmlrpc.cgi</p>
<p>http://www.mod-pubsub.org/kn_apps/blogchatter/ping.php</p>
<p>http://www.newsisfree.com/RPCCloud</p>
<p>http://www.newsisfree.com/xmlrpctest.php</p>
<p>http://www.popdex.com/addsite.php</p>
<p>http://www.snipsnap.org/RPC2</p>
<p>http://www.weblogues.com/RPC/</p>
<p>http://xmlrpc.blogg.de</p>
<p>http://xping.pubsub.com/ping/</p>
<p>几个中文网站Ping清单：</p>
<p>http://www.feedsky.com/api/RPC2</p>
<p>http://www.zhuaxia.com/rpc/server.php</p>
<p>http://www.xianguo.com/xmlrpc/ping.php</p>
<p>http://blog.iask.com/RPC2</p>
<p>http://ping.blog.qikoo.com/rpc2.php</p>
<div class="related"><h2>最新WordPress主题推荐:</h2><ul><li><div class="item"><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/09/simple.gif&w=&h=&zc=1" alt="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题" /></a><h4><a href="http://www.lizus.com/blog/2010/09/11/da-dao-zhi-jian-sampleda-qi/" title="大道至简(Sample),大气,经典,简洁,企业网站WordPress主题">大道至简(Sample),大气,经典,简洁,企业网站WordPress主题</a></h4><div>

主题名称: 大道至简(Sample)

主题编号: LBWP20100911

预览地址: http://wordpress.lizus.com/simple/

主题详细功能及说明见预览主题内文章

帮助文档地址: http://wordpress.lizus.com/doc/simple_wordpress_theme_help_doc_cn.html

	中...</div></div></li><li><div class="item"><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售" class="fl thumbnail"><img src="http://www.lizus.com/wp-content/themes/Lizus/timthumb.php?src=/wp-content/uploads/2010/08/01_Home_134.jpg&w=&h=&zc=1" alt="黑白印画(Black&#038;White)-WordPress主题出售" /></a><h4><a href="http://www.lizus.com/blog/2010/08/23/hei-bai-yin-hua-blackwhite/" title="黑白印画(Black&#038;White)-WordPress主题出售">黑白印画(Black&#038;White)-WordPress主题出售</a></h4><div>

主题名称: 黑白印画 (英文名: Black&amp;White)

主题编号: LZWP20100823

预览地址: http://wordpress.lizus.com/blackwhite/ 英文版: http://demo.atozwordpress.com/black_white/

主题详细功能及说明地址: http://wordpress.lizus.com/blackwhite/pro...</div></div></li></ul></div><div class="related"><h3>随便看看别的:</h3><ul><li><a href="http://www.lizus.com/blog/2010/07/12/samanthass-com/" title="samanthass.com">samanthass.com</a></li><li><a href="http://www.lizus.com/blog/2011/12/19/wordpress-del-pingbacks/" title="WordPress中如何清除讨厌的广告pingbacks">WordPress中如何清除讨厌的广告pingbacks</a></li><li><a href="http://www.lizus.com/blog/2009/12/06/phpxu-ni-zhu-ji-plan-5-zhi-chi-wordpress-drupal-shopex-discuz-deng/" title="WordPress虚拟主机 Plan-5 支持 WordPress Drupal ShopEX Discuz 等">WordPress虚拟主机 Plan-5 支持 WordPress Drupal ShopEX Discuz 等</a></li><li><a href="http://www.lizus.com/blog/2010/09/02/han-guo-jin-da-lai-lian-suo-di/" title="韩国金达莱连锁店">韩国金达莱连锁店</a></li><li><a href="http://www.lizus.com/blog/2009/12/14/wordpressfei-guan-fang-zhong-wen-zhan/" title="WordPress非官方中文站">WordPress非官方中文站</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.lizus.com/blog/2009/12/11/wordpressfa-bu-de-wen-zhang-ru-he-bei-kuai-su-shou-lu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

