﻿<?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>学习日记 &#187; wordpress</title>
	<atom:link href="https://www.softwareace.cn/?cat=22&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>https://www.softwareace.cn</link>
	<description>时刻想着为自己的产品多做一些对他好的事情</description>
	<lastBuildDate>Fri, 20 Mar 2026 06:58:28 +0000</lastBuildDate>
	<language>zh-CN</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>WORDPRESS如何控制首页文章显示数目</title>
		<link>https://www.softwareace.cn/?p=639</link>
		<comments>https://www.softwareace.cn/?p=639#comments</comments>
		<pubDate>Tue, 05 Nov 2013 01:02:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.softwareace.cn/?p=639</guid>
		<description><![CDATA[那么如何控制首页文章显示数目类？在wodpress里面实现起来很简单，不要你去修改php代码，不用你去修改模版 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>那么如何控制首页文章显示数目类？在wodpress里面实现起来很简单，不要你去修改php代码，不用你去修改模版文件，你只需要在登录wp后台，设置一下就搞定问题。具体设置步骤如下：</p>
<p>登录wp网站后台-&gt;设置-&gt;阅读-&gt;博客页面至多显示-&gt;设置显示数目（如20）</p>
<p>然后保存，刷新首页，设置就生效了！</p>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=639</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress设置摘要字数的几种方法</title>
		<link>https://www.softwareace.cn/?p=638</link>
		<comments>https://www.softwareace.cn/?p=638#comments</comments>
		<pubDate>Tue, 05 Nov 2013 00:58:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.softwareace.cn/?p=638</guid>
		<description><![CDATA[wordpress是大家比较喜欢的CMS建站程序之一，不论是博客，还是小型网站大家都喜欢用上。今天帮助一个朋友 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>wordpress是大家比较喜欢的CMS建站程序之一，不论是博客，还是小型网站大家都喜欢用上。今天帮助一个朋友解决了关于摘要显示字数的问题。这几天也没有特别的主机和<a href="http://www.yd631.com/" target="_blank">域名优惠码</a>信息，所以整理这些知识类的内容出来与大家分享。</p>
<p>第一种方法，手工定义。我们在编写文章的时候，在默认编辑框上有”插入更多分隔符”的标签，我们在希望分段摘要的位置直接点击插入就可以实现首页或者目录页面的该篇文章的摘要显示。</p>
<p>第二种方法，插件方法。下载wp-utf8-excerpt插件，安装激活，我们可以根据自己的字符需要数进行设置显示的字符数摘要。</p>
<p>第三种方法，修改代码。一般默认的模板中调用首页摘要的都是用the_content函数，如果我们没有用更多分隔符就显示全文。我们需要在这里下工夫了。</p>
<blockquote><p>&lt;?php echo mb_strimwidth(strip_tags(apply_filters(‘the_content’, $post-&gt;post_content)), 0, 200,”…”); ?&gt;</p></blockquote>
<p>这样，替换成上面的调用200个字符，根据自己的需要可以设置多少。</p>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=638</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 3.5 增加链接管理器恢复友情链接的方法</title>
		<link>https://www.softwareace.cn/?p=484</link>
		<comments>https://www.softwareace.cn/?p=484#comments</comments>
		<pubDate>Tue, 25 Jun 2013 10:04:04 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.softwareace.cn/?p=484</guid>
		<description><![CDATA[WordPress 3.5正式版本发布了，去掉了我们常用的链接管理器（Link Manager）功能，用惯了这 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>WordPress 3.5正式版本发布了，去掉了我们常用的链接管理器（Link Manager）功能，用惯了这个功能的朋友可能要郁闷了，虽然3.5中停用了此功能，但是在插件中还是可以安装的。</p>
<p>方法一、在主题functions.php文件中加入以下代码：</p>
<blockquote><p>add_filter( &#8216;pre_option_link_manager_enabled&#8217;, &#8216;__return_true&#8217; );</p></blockquote>
<p>方法二、使用“<a title="WordPress官方友情链接插件：Link Manager" href="http://www.jeffstudio.net/library/1948/">Link Manager</a>”插件开启：(实际上这个插件只有上面一句代码)</p>
<p>http://wordpress.org/extend/plugins/link-manager/</p>
<p>使用方法，请前往“仪表盘” → “插件” → “安装插件”，然后搜索“Link Manager”，来安装由“WordPress”或“nacin”开发的“Link Manager”插件以启用该功能。本站在另一文中有<a title="WordPress官方友情链接插件：Link Manager" href="http://www.jeffstudio.net/library/1948/">详细介绍</a>。</p>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=484</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>百度的UEditor</title>
		<link>https://www.softwareace.cn/?p=213</link>
		<comments>https://www.softwareace.cn/?p=213#comments</comments>
		<pubDate>Tue, 26 Feb 2013 05:37:05 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.softwareace.cn/?p=213</guid>
		<description><![CDATA[之前已经折腾过，在本地的wordpress中，尝试百度的UEditor了： 【记录】在wordpress中，折 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	之前已经折腾过，在本地的wordpress中，尝试百度的UEditor了：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/wordpress_ueditor_text_editor/" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;">【记录】在wordpress中，折腾百度开源富文本编辑器UEditor</a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	现在，打算把其弄在在线网站crifan.com中去。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	其中，目前的crifan.com中的wordpress后台，用的是默认的3.4.9 的TinyMCE：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/default-tinymce-3.4.9_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank"><img alt="default tinymce 3.4.9" border="0" height="496" src="http://www.crifan.com/files/pic/uploads/2012/12/default-tinymce-3.4.9_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="default tinymce 3.4.9" width="640" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<hr style="color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; background-color: rgb(255, 255, 255);" />
<span style="color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; background-color: rgb(255, 255, 255);">1.参考上面自己的帖子，去：</span></p>
<p>
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://ueditor.baidu.com/website/document.html" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank">UEditor &ndash; 文档</a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	中的</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<strong style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline;">教程 -&gt; UEditor若干专题 -&gt;&nbsp;</strong><strong style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline;">在wordpress中集成UEditor</strong></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	中，下载了</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://ueditor.baidu.com/website/download/wp-ueditor.zip" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank">专门针对于wordpress版本的UEditor</a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	得到了wp-ueditor.zip。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	2.然后解压wp-ueditor.zip，把解压后的整个wp-ueditor文件夹的内容，共122个文件，通过FTP，上传到自己的网站的wordpress根目录下的</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	/wp-content/plugins</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	中。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	提示：不了解的，可以参考：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/how_to_manage_remote_online_wordpress_website_on_hostmonster_virtual_host_machine/" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank">【整理】如何管理远程（HostMonster上的）虚拟主机上的在线WordPress网站</a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	和</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/what_is_cpanel_and_summary_usage_of_cpanel_control_remote_virtual_host/" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank">【整理】什么是Cpanel，以及如何通过Cpanel管理远程主机</a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	3.然后进入在线的wordpress网站后台的插件中，的确可以看到UEditor了：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/can-see-ueditor-in-plugin_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank"><img alt="can see ueditor in plugin" border="0" height="121" src="http://www.crifan.com/files/pic/uploads/2012/12/can-see-ueditor-in-plugin_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="can see ueditor in plugin" width="640" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	然后再去启用UEditor。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	疑问：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	其中，不小心，注意到了一个小事情，</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	UEditor的&ldquo;访问插件主页&rdquo;的地址，竟然是：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://wordpress.org/extend/plugins/ck-and-syntaxhighlighter/" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank">CK and SyntaxHighlighter</a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	话说，这个插件，我之前是用过的。觉得还是不是很爽，所以就没继续用的。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	但是UEditor的插件主页，竟然是这个地址，所以觉得很诡异。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	难道UEditor，是从CK and SyntaxHighlighter演变过来的？</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	暂时没搞懂。知情的，可以回复一下。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	4.再去将本地的</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	ue3.3.2-edit-form-advanced.php</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	改名为</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	edit-form-advanced.php</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	并顺便<a href="http://www.crifan.com/files/doc/docbook/rec_soft_npp/release/html/rec_soft_npp.html#npp_diff_enc_conversion" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank">用Notepad++将其编码转为UTF-8</a>：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/change-edit-form-advanced-php-to-utf8_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank"><img alt="change edit form advanced php to utf8" border="0" height="468" src="http://www.crifan.com/files/pic/uploads/2012/12/change-edit-form-advanced-php-to-utf8_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="change edit form advanced php to utf8" width="624" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	然后再上传并覆盖在线wordpress中的</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	/wp-admin/edit-form-advanced.php</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	5.去在线wordpress中，新建文章：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/article-write-article_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank"><img alt="article write article" border="0" height="185" src="http://www.crifan.com/files/pic/uploads/2012/12/article-write-article_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="article write article" width="394" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	看看编辑器是否改变成UEditor没。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	然后看到果然，默认的编辑器，从TinyMCE变成了UEditor。</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	6.虽然折腾了试试，效果的确还是很不错的：</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/set-text-color_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank"><img alt="set text color" border="0" height="425" src="http://www.crifan.com/files/pic/uploads/2012/12/set-text-color_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="set text color" width="640" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/set-text-background_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue;" target="_blank"><img alt="set text background" border="0" height="425" src="http://www.crifan.com/files/pic/uploads/2012/12/set-text-background_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="set text background" width="640" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	<a href="http://www.crifan.com/files/pic/uploads/2012/12/test-ueditor-edit-text-effect-is-good_thumb.png" style="margin: 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; color: blue; outline: none;" target="_blank"><img alt="test ueditor edit text effect is good" border="0" height="421" src="http://www.crifan.com/files/pic/uploads/2012/12/test-ueditor-edit-text-effect-is-good_thumb.png" style="margin: 0px 0px 1.5em; padding: 0px 0px 5px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; background-image: none; -webkit-box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; box-shadow: rgba(50, 50, 50, 0.74902) 0px 1px 4px; max-width: 100%; overflow: hidden; display: inline;" title="test ueditor edit text effect is good" width="640" /></a></p>
<p style="margin: 1.5em 0px; padding: 0px; border: 0px; font-size: 12px; font: inherit; vertical-align: baseline; line-height: 18px; color: rgb(102, 102, 102); font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">
	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=213</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>手工升级wordpress的方法步骤</title>
		<link>https://www.softwareace.cn/?p=189</link>
		<comments>https://www.softwareace.cn/?p=189#comments</comments>
		<pubDate>Sun, 24 Feb 2013 03:51:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.softwareace.cn/?p=189</guid>
		<description><![CDATA[wordpress 是很好用的blog程序，在线升级往往会失败，原因有很多，很多人以为手工安装太复制，就放弃了 [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="exp-content-block exp-content-block-1">
<div class="exp-content-body">
<div class="exp-content-listblock">
<div class="content-listblock-text">
				wordpress 是很好用的blog程序，在线升级往往会失败，原因有很多，很多人以为手工安装太复制，就放弃了，那我帮大家梳理一下步骤，其实很简单，只要别忘记备份，很容易就搞定！</div>
</p></div>
</p></div>
</div>
<div class="exp-content-block exp-content-block-2">
<h2 class="exp-content-head">
		步骤/方法</h2>
<div class="exp-content-body">
<ol class="exp-conent-orderlist">
<li class="exp-content-list-under20 list-item-1">
<div class="content-list-text">
					第一：首先就是备份旧版wordpress资料，包括数据库和服务器内的文件。</div>
</li>
<li class="exp-content-list-under20 list-item-2">
<div class="content-list-text">
					第二：从WP中文官网下载最新版WordPress3.1.2，链接：http://cn.wordpress.org/wordpress-3.1.2-zh_CN.zip下载完毕解压到你电脑上。</div>
</li>
<li class="exp-content-list-under20 list-item-3">
<div class="content-list-text">
					第三：删除博客主机上的wp-includes和wp-admin目录。</div>
<div class="content-list-media">
<div class="content-list-image">
						<img alt="手工升级wordpress的方法步骤" class="exp-image-default" src="http://hiphotos.baidu.com/exp/pic/item/3c2c4bfba595494c6c22eb6d.jpg" /></div>
</p></div>
</li>
<li class="exp-content-list-under20 list-item-4">
<div class="content-list-text">
					第四：将解压在本地电脑的wordpress文件夹中除了wp-content目录外的所有文件都上传并覆盖到你博客主机相对应的位置。</div>
<div class="content-list-media">
<div class="content-list-image">
						<img alt="手工升级wordpress的方法步骤" class="exp-image-default" src="http://hiphotos.baidu.com/exp/pic/item/b3ba5d1674f9451021a4e912.jpg" /></div>
</p></div>
</li>
<li class="exp-content-list-under20 list-item-5">
<div class="content-list-text">
					第五：执行升级步骤，运行http://你的博客地址/wp-admin/upgrade.php，将你的博客地址填入路径中执行升级程序。</div>
</li>
</ol></div>
</div>
<div class="exp-content-block exp-content-block-3">
<h2 class="exp-content-head">
		注意事项</h2>
<div class="exp-content-body">
<ul class="exp-content-unorderlist">
<li class="exp-content-list list-item-1">
<div class="content-list-text">
					一定要备份数据库和blog程序，防止万一</div>
</li>
<li class="exp-content-list list-item-2">
<div class="content-list-text">
					升级是为了完善wordpress程序，不是一定要升级，但是升级了程序更优化、更安全！</div>
</li>
</ul></div>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=189</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解决WordPress Thread Comment的“Can’t find the “commentformID” div错误</title>
		<link>https://www.softwareace.cn/?p=176</link>
		<comments>https://www.softwareace.cn/?p=176#comments</comments>
		<pubDate>Tue, 19 Feb 2013 09:52:31 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.softwareace.cn/?p=176</guid>
		<description><![CDATA[找了好久，终于还是让我找到了，安装WordPress Thread Comment插件之后，发现回复评论出现C [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><span style="background-color: rgb(254, 254, 254); color: rgb(73, 73, 73); font-family: simsun; font-size: 14px; line-height: 21px;">找了好久，终于还是让我找到了，安装WordPress Thread Comment插件之后，发现回复评论出现Can&rsquo;t find the &ldquo;commentformID&rdquo; div错误提示，在google上查了以下，发现需要编辑主题文件 ，找到comments.php，但是我的iStudio Theme在comments.php根本 就找不到div id，但是可以在内容页面的源码中找到，如下：</span></p>
<div style="color: rgb(73, 73, 73); font-family: simsun; font-size: 14px; line-height: 21px; background-color: rgb(254, 254, 254);">
	然后打开WP Thread Comment的设置页面 ，在 &ldquo;编辑评论的Form ID&rdquo; Comment Form ID: 中填上respond即可！ 更新选项！</div>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=176</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>本地安装WordPress</title>
		<link>https://www.softwareace.cn/?p=12</link>
		<comments>https://www.softwareace.cn/?p=12#comments</comments>
		<pubDate>Tue, 15 Jan 2013 03:32:48 +0000</pubDate>
		<dc:creator><![CDATA[littlesu]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://127.0.0.1/?p=12</guid>
		<description><![CDATA[无论是老鸟菜鸟、大虾小虾，凡是在Wordpress有一片小天地的，我认为都有必要在本地给自己的Wordpres [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>无论是老鸟菜鸟、大虾小虾，凡是在Wordpress有一片小天地的，我认为都有必要在本地给自己的Wordpress安个家，这里我说的不是简单地给Wordpress备份，而是在本地架设Wordpress。<br />
一直以来我都想在本地安装Wordpress，但是苦于没有找到合适的方法和软件，屡屡失败。今天终于修得正果，所以就分享下我在本地安装Wordpress的方法、过程以及经验。这篇文章不只是写给还未在本地架设Wordpress的朋友看的，最重要是写给自己看的，以后若是忘记了还可以翻出来回顾一下。<br />
为什么要在本地安装Wordpress呢？我总结了一个，主要原因有三：1.方便对主题和插件的调试。在本地修改满意之后再上传，这不是一劳永逸嘛。有些朋友和我一样安装了Wp Super Cashe插件，如果每次在线上调试，那上传之后还要先清除缓存才能看到修改后的效果，挺累人的。2.节约流量。或许你觉得才几百K的文件占用不了多少流量，但是聚少成多，经常上上下下传载文件，浪费时间的同时也无谓地浪费了宝贵的流量。3.减轻数据库负担。在线编辑不可避免地会在数据库中留下一些痕迹，久而久之也就加重了数据库的负担，更何况吹牛还得打打草稿不是嘛。<br />
下面切入正题，哪怕你是和我一样菜的菜鸟，只要按部就班，相信你也能做的到。<br />
一.配置本地服务器<br />
1.下载Xampplite。下载后解压到某一个硬盘上即可，免安装。<br />
2.双击打开setup_xampp.bat，稍等片刻，会出现“请按任意键继续……”的字样，照做。</p>
<p>3.接着再双击打开xampp_control.exe，分别点击Apache和Mysql后面的“运行”(Start)。</p>
<p>4.在浏览器地址栏上输入localhost，并按回车键，选择语言，然后进入数据库的安装界面。</p>
<p>二.安装数据库<br />
5.点击左侧栏中的phpMyAdmin，在“创建一个新的数据库”下输入数据库名称，例如life-studio，点击“创建”按钮。</p>
<p>6.在新页面中找到“权限”，并点击进入。单击“操作”下的“编辑权限”按钮。</p>
<p>7.在“更改登录信息/复制用户”模块中创建新的用户信息。按“执行”按钮确认。</p>
<p>三.安装Wordpress<br />
8.将解压后的Wordpress安装程序复制到/xampplite/htdocs文件夹下。<br />
9.修改wp-config-sample.php中的数据库名称、数据库用户名及密码，另存为wp-config.php。<br />
10.在浏览器地址栏中访回http://localhost/wp-admin/install.php<br />
大功告成，接下来就和在线安装的Wordpress的过程一样了，然后你就可以尽情地无所顾及地在你本地Wordpress上折腾了。为了尽可能写得详细，此教程有些啰索，各位多多包涵，如果有写错或不恰当之处，还望指出。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
创建数据库时 新建一用户；</p>
<p>http://www.alibuybuy.com/posts/58146.html</p>
<p>回复 div 错误 http://blog.sina.com.cn/s/blog_568f35c70100r9xf.html</p>
]]></content:encoded>
			<wfw:commentRss>https://www.softwareace.cn/?feed=rss2&#038;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
