<?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>TEANIE &#187; WordPress</title>
	<atom:link href="http://www.teanie.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.teanie.com</link>
	<description>MY LIFE MY STYLE</description>
	<lastBuildDate>Tue, 07 Feb 2012 02:20:27 +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>让WordPress上传文件自动重命名</title>
		<link>http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=let-wordpress-upload-files-to-be-automatic-rename</link>
		<comments>http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html#comments</comments>
		<pubDate>Mon, 30 Jan 2012 03:30:08 +0000</pubDate>
		<dc:creator>Hugo</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.teanie.com/?p=1503</guid>
		<description><![CDATA[WordPress上传文件默认是不改变文件名称的，可对中文文件名而言，某些系统、某些浏览器访问是会出现问题滴，那么怎样让Wordpress上传文件自动重命名呐？

以wordpress 3.2.1为例，打开&#8220;wp-admin/includes/file.php&#8221;文件，找到第327行这段代码：



<span class="readmore"><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让WordPress上传文件自动重命名">阅读全文——共753字</a></span>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.teanie.com/wp-content/uploads/2012/01/post-icon-wordpress-logo.gif"><img alt="" class="alignright size-full wp-image-1509" height="90" src="http://www.teanie.com/wp-content/uploads/2012/01/post-icon-wordpress-logo.gif" title="post-icon-wordpress-logo" width="90" /></a></p>
<p><span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span>上传文件默认是不改变文件名称的，可对中文文件名而言，某些系统、某些浏览器访问是会出现问题滴，那么怎样让Wordpress上传文件自动重命名呐？</p>
<p>以wordpress 3.2.1为例，打开<span style="color: #3366ff">&ldquo;wp-admin/includes/file.php&rdquo;</span>文件，找到第327行这段代码：</p>
<p><span id="more-1503"></span></p>
<p style="margin-left: 40px"><span style="color: #ff6600">// Move the file to the uploads dir</span><br />
	<span style="color: #3366ff">$new_file = $uploads['path'] . &quot;/$filename&quot;;</span><br />
	<span style="color: #339966">if ( false === @ move_uploaded_file( $file['tmp_name'], $new_file ) )<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return $upload_error_handler( $file, sprintf( __(&#39;The uploaded file could not be moved to %s.&#39; ), $uploads['path'] ) );</span></p>
<p>将其修改为</p>
<p style="margin-left: 40px"><span style="color: #ff6600">// Move the file to the uploads dir</span><br />
	<span style="color: #3366ff">$new_file = $uploads['path'] . &quot;/&quot;.date(&quot;YmdHis&quot;).floor(microtime()*1000).&quot;.&quot;.$ext;&nbsp;</span><br />
	<span style="color: #339966">if ( false === @ move_uploaded_file( $file['tmp_name'], $new_file ) )<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return $upload_error_handler( $file, sprintf( __(&#39;The uploaded file could not be moved to %s.&#39; ), $uploads['path'] ) );</span></p>
<p>保存，重新上传文件。这样，新上传的文件，就会自动保存为&ldquo;<span style="color: #3366ff">年月日时分秒+千位毫秒整数</span>&rdquo;的新文件名，并保存到相应的年月文件夹之下了。</p>
<h3>Related Posts</h3><ul><li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 Wordpress for iPhone 2011.10.9">测试 Wordpress for iPhone</a>(1)</li>
<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 2011.09.1">轻松实现WordPress评论倒序排列的2个方法</a>(0)</li>
<li><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步 2011.08.26">WP博客的微博同步</a>(0)</li>
<li><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版 2011.08.8">WordPress SEO 插件 All In One SEO Pack PRO 破解版</a>(0)</li>
</ul>
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 (2011 年 9 月 1 日)">轻松实现WordPress评论倒序排列的2个方法</a> (0)</li>
	<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 WordPress for iPhone (2011 年 10 月 9 日)">测试 WordPress for iPhone</a> (1)</li>
	<li><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步 (2011 年 8 月 26 日)">WP博客的微博同步</a> (0)</li>
	<li><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版 (2011 年 8 月 8 日)">WordPress SEO 插件 All In One SEO Pack PRO 破解版</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试 WordPress for iPhone</title>
		<link>http://www.teanie.com/test-wordpress-for-iphone.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=test-wordpress-for-iphone</link>
		<comments>http://www.teanie.com/test-wordpress-for-iphone.html#comments</comments>
		<pubDate>Sun, 09 Oct 2011 06:17:42 +0000</pubDate>
		<dc:creator>Hugo</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.teanie.com/?p=947</guid>
		<description><![CDATA[WordPress出了一个在iPhone上管理博客的App，今天就安装试用了一下。



WordPress for iPhone

<span class="readmore"><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 WordPress for iPhone">阅读全文——共948字</a></span>]]></description>
			<content:encoded><![CDATA[<p><span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span>出了一个在<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/iphone" title="查看 iPhone 中的全部文章" target="_blank">iPhone</a></span>上管理博客的App，今天就安装试用了一下。</p>
<p><img class="alignnone size-full wp-image-968" title="201110091009111609" src="http://www.teanie.com/wp-content/uploads/2011/10/201110091009111609.jpg" alt="TEANIE.com | MY LIFE MY STYLE" width="100" height="102" /></p>
<h2><span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span> for <span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/iphone" title="查看 iPhone 中的全部文章" target="_blank">iPhone</a></span></h2>
<p>WP给出了官方网站<a title="WordPress for iPhone" href="http://iphone.wordpress.org/" target="_blank">iphone.wordpress.org</a> 或者直接在iTunes里面搜索<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span>。</p>
<p>这个软件可以从<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/iphone" title="查看 iPhone 中的全部文章" target="_blank">iPhone</a></span>上方便的发布日志到自己的WordPress博客，并对已发布的文章进行管理操作，同时还可添加管理博客上的图片，把 iPhone上存储的图片发布到博客上，还能进行标签管理，文章加密等简单设置，并且在发布后还可以内部调用Safari浏览器预览文章。<span id="more-947"></span></p>
<p>可能考虑到兼容性和安全性的关系，WP for iPhone并不能对博客站点进行设置，也不能配置插件或者在发布文章时使用插件功能等，但在小小的手机屏幕上实现博客文章管理的诸多功能也很不错了，毕 竟比直接在Safari上写博客要方便很多。第一次使用要设置自己博客的地址，用户名，密码等，特别注意一点：使用前要先上WordPress后台“设置–撰写–”把远程发布的XML-RPC功能打开，否则无法通过验证。</p>
<p><img title="WP-for-iPhone01" src="http://farm4.static.flickr.com/3658/3316855210_13a76b29bc.jpg" alt="TEANIE.com" width="290" height="416" /></p>
<h3>其他iPhone博客管理软件</h3>
<p>WordPress for iPhone 免费，简洁，支持多博客，同时又是官方出品，但并不是每个Blogger都用WordPress。iTunes Store上还有几款博客管理软件，不过都是要美元滴~~</p>
<p><img title="BlogPress" src="http://farm4.static.flickr.com/3321/3316756768_a1ef36f8f6_o.jpg" alt="TEANIE.com" width="100" height="102" /><br />
<strong>BlogPress</strong><br />
<a title="BlogPress" href="http://blogpress.coollittlethings.com/" target="_blank">blogpress.coollittlethings.com</a><br />
支持：所见即所得编辑，照片管理，多博客管理，自动保存草稿等。<br />
- Blogger / BlogSpot<br />
- MSN Live Spaces<br />
- WordPress<br />
- Movable Type<br />
- TypePad<br />
- LiveJournal<br />
- Drupal<br />
- Joomla<br />
<img title="BlogPress01" src="http://farm4.static.flickr.com/3541/3316855586_b965bfdef7_o.jpg" alt="TEANIE.com" width="290" height="416" /></p>
<p><img title="iBlogger" src="http://farm4.static.flickr.com/3653/3316756708_a28c735ab4_o.jpg" alt="TEANIE.com" width="100" height="102" /><br />
<strong>iBlogger</strong><br />
<a title="iBlogger" href="http://illuminex.com/iphone/iBlogger/index.html" target="_blank">illuminex.com/iphone/iBlogger/index.html </a>偶尔有免费促销<br />
支持：图片管理，分类管理，标签管理，多博客管理，同时支持HTTPS链接。<br />
* Blojsom<br />
* Drupal<br />
* ExpressionEngine<br />
* MovableType<br />
* TypePad<br />
* WordPress<br />
* LifeType<br />
* LivingDot<br />
* My.Opera.com<br />
* SquareSpace<br />
* TypePad<br />
* WordPress<br />
* Xanga<br />
* Blogspot/Blogger<br />
<img title="iBlogger01" src="http://farm4.static.flickr.com/3503/3316855674_ddfa7d8507_o.jpg" alt="TEANIE.com" width="288" height="432" /></p>
<h3>Related Posts</h3><ul><li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让Wordpress上传文件自动重命名 2012.01.30">让Wordpress上传文件自动重命名</a>(0)</li>
<li><a href="http://www.teanie.com/iworld-2012-recommend-to-iphone-photographers-applications.html" title="iWorld 2012: 推荐给iPhone摄影者的后期编辑应用 2012.01.29">iWorld 2012: 推荐给iPhone摄影者的后期编辑应用</a>(0)</li>
<li><a href="http://www.teanie.com/ios-a4-jailbreak-release.html" title="除iPad 2和iPhone 4S外的iOS设备 5.0.1完美越狱放出 2011.12.27">除iPad 2和iPhone 4S外的iOS设备 5.0.1完美越狱放出</a>(0)</li>
<li><a href="http://www.teanie.com/pod2g-said-release-the-a4-jb-asap.html" title="A4设备的完美越狱发布已近 2011.12.23">A4设备的完美越狱发布已近</a>(0)</li>
<li><a href="http://www.teanie.com/tiny-tower.html" title="Tiny Tower 新手指引 2011.12.15">Tiny Tower 新手指引</a>(1)</li>
<li><a href="http://www.teanie.com/if-you-lost-china-unicoms-iphone.html" title="联通iPhone机卡绑定之遗失补救注意事项 2011.11.28">联通iPhone机卡绑定之遗失补救注意事项</a>(0)</li>
<li><a href="http://www.teanie.com/open-ios-5-panoramic-camera.html" title="【无需越狱】开启 iOS 5 自带的全景拍照功能 2011.11.8">【无需越狱】开启 iOS 5 自带的全景拍照功能</a>(0)</li>
<li><a href="http://www.teanie.com/box-net-gift-ipad-iphone-users-50gb-space.html" title="Box.net 送 iPad、iPhone 用户终身免费50GB空间 2011.10.14">Box.net 送 iPad、iPhone 用户终身免费50GB空间</a>(0)</li>
<li><a href="http://www.teanie.com/the-king-iphone-4s.html" title="新机皇 iPhone 4S 2011.10.11">新机皇 iPhone 4S</a>(0)</li>
<li><a href="http://www.teanie.com/imessage-have-a-big-dream.html" title="iMessage 不会仅存在于 iOS 2011.10.10">iMessage 不会仅存在于 iOS</a>(1)</li>
</ul>
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.teanie.com/ios-a4-jailbreak-release.html" title="除iPad 2和iPhone 4S外的iOS设备 5.0.1完美越狱放出 (2011 年 12 月 27 日)">除iPad 2和iPhone 4S外的iOS设备 5.0.1完美越狱放出</a> (0)</li>
	<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 (2011 年 9 月 1 日)">轻松实现WordPress评论倒序排列的2个方法</a> (0)</li>
	<li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让WordPress上传文件自动重命名 (2012 年 1 月 30 日)">让WordPress上传文件自动重命名</a> (0)</li>
	<li><a href="http://www.teanie.com/apple-iphone5-conceptual-model-of-the-real-machine.html" title="苹果iPhone5概念真机 (2011 年 10 月 2 日)">苹果iPhone5概念真机</a> (0)</li>
	<li><a href="http://www.teanie.com/if-you-lost-china-unicoms-iphone.html" title="联通iPhone机卡绑定之遗失补救注意事项 (2011 年 11 月 28 日)">联通iPhone机卡绑定之遗失补救注意事项</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.teanie.com/test-wordpress-for-iphone.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>轻松实现WordPress评论倒序排列的2个方法</title>
		<link>http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=easy-wordpress-comments-in-reverse-order-of-the-two-methods</link>
		<comments>http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html#comments</comments>
		<pubDate>Thu, 01 Sep 2011 03:38:23 +0000</pubDate>
		<dc:creator>Hugo</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.teanie.com/?p=459</guid>
		<description><![CDATA[默认情况下，Wordpress的评论是按照时间顺序升序来显示的，即最新发表的评论会被显示在最下面。

这对那些评论稍多的页面来说并不太好，因为最先发表的评论一直显示在最前面，新的评论则显示在页面的最底部，这会显得页面缺乏活力，互动不够。

其实，要解决这一问题也不难，仅需改变一下评论的显示顺序，将其更改为倒序显示即可。下面给出2个实现评论倒序排列的方法：

<span class="readmore"><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法">阅读全文——共592字</a></span>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.teanie.com/wp-content/uploads/2011/09/wordpress-201109010949114349.jpg"><img src="http://www.teanie.com/wp-content/uploads/2011/09/wordpress-201109010949114349.jpg" alt="" title="wordpress-201109010949114349" width="550" height="275" class="alignnone size-full wp-image-460" /></a><br />
默认情况下，Wordpress的评论是按照时间顺序升序来显示的，即最新发表的评论会被显示在最下面。</p>
<p>这对那些评论稍多的页面来说并不太好，因为最先发表的评论一直显示在最前面，新的评论则显示在页面的最底部，这会显得页面缺乏活力，互动不够。</p>
<p>其实，要解决这一问题也不难，仅需改变一下评论的显示顺序，将其更改为倒序显示即可。下面给出2个实现评论倒序排列的方法：<span id="more-459"></span></p>
<p><strong>1、修改comments-template.php文件</strong></p>
<p>通过修改comments-template的代码可以实现倒序显示评论，从而将最新发表的评论显示在最前面。</p>
<p><strong>步骤： </strong></p>
<p>a：进入Wordpress安装目录下的wp-includes目录；</p>
<p>b：用文本编辑器打开comment-template.php文件；</p>
<p>c：按快捷键CTRL+F，找到如下代玛：ORDER BY comment_date_gmt；</p>
<p>d：将ORDER BY comment_date_gmt替换成ORDER BY comment_date DESC（共两处）；</p>
<p>e：保存文件并上传覆盖先前文件即可。<span style="color: #ff0000;"></p>
<p></span></p>
<p><strong>2、修改评论模板comments.php文件 </strong></p>
<p><strong>步骤：</strong></p>
<p>a：在评论模板comments.php中找到下列语句：</p>
<p>&lt;?php if ($comments) : ?&gt;</p>
<p>b：在其后面添加上让评论倒序的代码：</p>
<p>&lt;?php $comments = array_reverse($comments) ?&gt;</p>
<p>c：保存文件并上传覆盖先前文件即可。</p>
<h3>Related Posts</h3><ul><li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让Wordpress上传文件自动重命名 2012.01.30">让Wordpress上传文件自动重命名</a>(0)</li>
<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 Wordpress for iPhone 2011.10.9">测试 Wordpress for iPhone</a>(1)</li>
<li><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步 2011.08.26">WP博客的微博同步</a>(0)</li>
<li><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版 2011.08.8">WordPress SEO 插件 All In One SEO Pack PRO 破解版</a>(0)</li>
</ul>
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让WordPress上传文件自动重命名 (2012 年 1 月 30 日)">让WordPress上传文件自动重命名</a> (0)</li>
	<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 WordPress for iPhone (2011 年 10 月 9 日)">测试 WordPress for iPhone</a> (1)</li>
	<li><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步 (2011 年 8 月 26 日)">WP博客的微博同步</a> (0)</li>
	<li><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版 (2011 年 8 月 8 日)">WordPress SEO 插件 All In One SEO Pack PRO 破解版</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP博客的微博同步</title>
		<link>http://www.teanie.com/wordpress-connect-social-network.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-connect-social-network</link>
		<comments>http://www.teanie.com/wordpress-connect-social-network.html#comments</comments>
		<pubDate>Fri, 26 Aug 2011 05:37:24 +0000</pubDate>
		<dc:creator>Hugo</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.teanie.com/?p=401</guid>
		<description><![CDATA[由于独立博客的交互性差，微博推广博客是很多博主的一个重要手段，wordpress的各种插件使这种推广变得非常方便。

当发布一篇文章的时候，以博文题目、关键字和链接作为内容自动同步发表一条微博，借助微博庞大的人流量来赚点击机会，事实上自从用了这个同步功能之后，猫猫就养成了不再胡乱起博文名字的习惯…

毕竟有实际内容的微博才能吸引人点进来吧~

<span class="readmore"><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步">阅读全文——共1419字</a></span>]]></description>
			<content:encoded><![CDATA[<p>由于独立博客的交互性差，微博推广博客是很多博主的一个重要手段，wordpress的各种插件使这种推广变得非常方便。</p>
<p>当发布一篇文章的时候，以博文题目、关键字和链接作为内容自动同步发表一条微博，借助微博庞大的人流量来赚点击机会，事实上自从用了这个同步功能之后，猫猫就养成了不再胡乱起博文名字的习惯…</p>
<p>毕竟有实际内容的微博才能吸引人点进来吧~<span id="more-401"></span></p>
<p>于是在微博发布的时候，下面会有显示“来自XX”，网页直接写的会是来自网页，手机的会有来自iPhone客户端、来自S60客户端等等，从博客同步的文章往往显示的是插件的名称，比如“来自tsina”，曾经见过月光博客的微博显示的是“来自月光博客”，很想弄一个但是一直不知道怎么弄，不过最近猫猫用的同步插件增加了这个功能，所以不弄一个貌似很对不起自己啊~</p>
<p>所以，附上步骤~</p>
<p>首先，推荐插件，水脉烟香的wordpress连接微博，非常好用的同步插件，可以使用腾讯微博、新浪微博、搜狐微博、网易微博、人人帐号、豆瓣帐号、Twitter登录<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span>博客，支持同步评论到相对应的微博。 (捐赠版还支持QQ、开心网、Google、Yahoo等登录<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span>博客)。发布或更新文章时同步一条该文章信息到Twitter、腾讯微博、新浪微博、网易微博、搜狐微博、人人网，开心网，嘀咕、豆瓣、百度说吧、饭否、人间网、做啥、雷猴、Follow5、享拍微博通等。重点是可以实现“来自XX”啊~目前仅支持新浪、搜狐、腾讯微博</p>
<p>首先打开新浪微博开放平台，选择顶部的“网站接入”，申请网站APPKEY，然后是这样<br />
<a href="http://www.teanie.com/wp-content/uploads/2011/08/201108260837112937.jpg"><img src="http://www.teanie.com/wp-content/uploads/2011/08/201108260837112937.jpg" alt="" title="201108260837112937" width="756" height="609" class="alignnone size-full wp-image-402" /></a></p>
<p>然后是这么个界面<br />
<a href="http://www.teanie.com/wp-content/uploads/2011/08/201108260843112843.jpg"><img src="http://www.teanie.com/wp-content/uploads/2011/08/201108260843112843.jpg" alt="" title="201108260843112843" width="895" height="486" class="alignnone size-full wp-image-403" /></a></p>
<p>把appkey和appsecret复制下来，打开wordpress连接微博插件设置，同步设置的下面有个开放平台的设定，选择新浪微博把这两个码粘进去保存</p>
<p>然后把微博账号授权绑定到wordpress，多用户可以到用户资料里去绑，如果是个人博客的话直接在插件设置界面绑也是可以的，之前绑定过的要解除重新绑定</p>
<p>插件的说明里有一句“(以上设置是为了显示微博的“来自XXX”，如果没有申请和审核通过千万不要填写)”，但事实上如果不填是没办法调用授权的，而没有调用授权就不能通过审核，所以还是要填上去，这时候应用是没有审核的，所以还不能显示“来自XX”，甚至在猫猫的试用过程中发现同步功能也会因此受到影响，所以还要继续</p>
<p>“您的应用需满足创建时间超过3天、接口调用量累计超过500次、用户授权数量超过10人方可提交审核。”看起来很困难是不是？不过猫猫尝试了一下，绑定账号算一次授权，在博客评论上用了一次使用微博账号登陆又算一次授权，然后……提交审核那个按钮就亮起来了……发现这个方法的时候创建应用已经满了3天，所以不确定这条是不是要强制，多登录几个小号然后等上3天吧</p>
<p>点击“提交审核”就可以进入审核期，这时的微博同步功能就已经恢复了，不过显示的是“来自未审核的应用”……囧</p>
<p>2天后收到邮件，审核已通过，OK大功告成~现在同步的微博已经会显示“来自彩虹尽头的眷恋”了，至于最后那个申请推荐的按钮……我们只是需要一个来源而已又没有程序推荐上去干嘛？</p>
<p>嗯总体上就这样了，搜狐和腾讯微博的方法也是类似，不过腾讯要申请成为开发者需要提供好多资料，甚至还要身份证和所属机构，麻烦得很；搜狐微博则是使用Consumer Key和Consumer secret来绑定插件。</p>
<p>本文文字出自：http://rainbowends.info/454.html</p>
<h3>Related Posts</h3><ul><li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让Wordpress上传文件自动重命名 2012.01.30">让Wordpress上传文件自动重命名</a>(0)</li>
<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 Wordpress for iPhone 2011.10.9">测试 Wordpress for iPhone</a>(1)</li>
<li><a href="http://www.teanie.com/google-plus-now-allows-you-to-share-your-circles-with-others.html" title="Google+让用户“共享”彼此的圈子 2011.09.27">Google+让用户“共享”彼此的圈子</a>(0)</li>
<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 2011.09.1">轻松实现WordPress评论倒序排列的2个方法</a>(0)</li>
<li><a href="http://www.teanie.com/ifttt-example-and-invite.html" title="ifttt 图解实例（不定时发放邀请） 2011.08.22">ifttt 图解实例（不定时发放邀请）</a>(0)</li>
<li><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版 2011.08.8">WordPress SEO 插件 All In One SEO Pack PRO 破解版</a>(0)</li>
</ul>
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 (2011 年 9 月 1 日)">轻松实现WordPress评论倒序排列的2个方法</a> (0)</li>
	<li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让WordPress上传文件自动重命名 (2012 年 1 月 30 日)">让WordPress上传文件自动重命名</a> (0)</li>
	<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 WordPress for iPhone (2011 年 10 月 9 日)">测试 WordPress for iPhone</a> (1)</li>
	<li><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版 (2011 年 8 月 8 日)">WordPress SEO 插件 All In One SEO Pack PRO 破解版</a> (0)</li>
	<li><a href="http://www.teanie.com/ifttt-example-and-invite.html" title="ifttt 图解实例（不定时发放邀请） (2011 年 8 月 22 日)">ifttt 图解实例（不定时发放邀请）</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.teanie.com/wordpress-connect-social-network.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress SEO 插件 All In One SEO Pack PRO 破解版</title>
		<link>http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-all-in-one-seo-pack-pro</link>
		<comments>http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html#comments</comments>
		<pubDate>Mon, 08 Aug 2011 05:34:21 +0000</pubDate>
		<dc:creator>Hugo</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.teanie.com/?p=76</guid>
		<description><![CDATA[All In One SEO是被WordPress普遍应用的SEO插件，它可以自定义页面的标题、描述、关键词，不过它的免费版已经停止更新。

现在的All In One SEO Pack PRO官方报价高达$39.00，由此可见它的受追捧程度。



<span class="readmore"><a href="http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html" title="WordPress SEO 插件 All In One SEO Pack PRO 破解版">阅读全文——共403字</a></span>]]></description>
			<content:encoded><![CDATA[<p>All In One <span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/seo" title="查看 SEO 中的全部文章" target="_blank">SEO</a></span>是被<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/wordpress" title="查看 WordPress 中的全部文章" target="_blank">WordPress</a></span>普遍应用的<span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/seo" title="查看 SEO 中的全部文章" target="_blank">SEO</a></span><span class='wp_keywordlink_affiliate'><a href="http://www.teanie.com/tag/%e6%8f%92%e4%bb%b6" title="查看 插件 中的全部文章" target="_blank">插件</a></span>，它可以自定义页面的标题、描述、关键词，不过它的免费版已经停止更新。<br />
现在的All In One SEO Pack PRO官方报价高达$39.00，由此可见它的受追捧程度。<span id="more-76"></span><br />
<a href="http://www.teanie.com/wp-content/uploads/2011/08/all-in-one-seo-pack-pro-purchase.png"><img src="http://www.teanie.com/wp-content/uploads/2011/08/all-in-one-seo-pack-pro-purchase.png" alt="" title="all-in-one-seo-pack-pro-purchase" width="703" height="554" class="alignnone size-full wp-image-77" /></a></p>
<p>关于All In One SEO Pack PRO与免费版的区别：<br />
1）免费版早就已经停止升级，这个专业版为最新升级的版本，更稳定更专业；<br />
2）免费版有广告内容，专业版界面无任何广告；<br />
3）支持自定义分类<br />
4）版本更新，功能增强提示功能等</p>
<p>如果你使用wordpress，那么赶紧下载安装试试吧。<br />
网盘下载：http://dl.dbank.com/s0zci6q2p2</p>
<p>【免责声明】本站收集整理的资料（包括但不限于下载资源）均自于网络，仅供个人学习与研究之用，严禁用于商业用途，版权归原作者。所有下载的资源请在下载后24小时内删除。如果您觉得满意,请向原作者购买正版产品，否则由此产生的一切后果由使用者承担。</p>
<h3>Related Posts</h3><ul><li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让Wordpress上传文件自动重命名 2012.01.30">让Wordpress上传文件自动重命名</a>(0)</li>
<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 Wordpress for iPhone 2011.10.9">测试 Wordpress for iPhone</a>(1)</li>
<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 2011.09.1">轻松实现WordPress评论倒序排列的2个方法</a>(0)</li>
<li><a href="http://www.teanie.com/how-to-do-seo-effectively-to-external-links.html" title="SEO如何做有效的外链 2011.09.1">SEO如何做有效的外链</a>(0)</li>
<li><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步 2011.08.26">WP博客的微博同步</a>(0)</li>
</ul>
	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.teanie.com/easy-wordpress-comments-in-reverse-order-of-the-two-methods.html" title="轻松实现WordPress评论倒序排列的2个方法 (2011 年 9 月 1 日)">轻松实现WordPress评论倒序排列的2个方法</a> (0)</li>
	<li><a href="http://www.teanie.com/let-wordpress-upload-files-to-be-automatic-rename.html" title="让WordPress上传文件自动重命名 (2012 年 1 月 30 日)">让WordPress上传文件自动重命名</a> (0)</li>
	<li><a href="http://www.teanie.com/test-wordpress-for-iphone.html" title="测试 WordPress for iPhone (2011 年 10 月 9 日)">测试 WordPress for iPhone</a> (1)</li>
	<li><a href="http://www.teanie.com/wordpress-connect-social-network.html" title="WP博客的微博同步 (2011 年 8 月 26 日)">WP博客的微博同步</a> (0)</li>
	<li><a href="http://www.teanie.com/how-to-do-seo-effectively-to-external-links.html" title="SEO如何做有效的外链 (2011 年 9 月 1 日)">SEO如何做有效的外链</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.teanie.com/wordpress-plugin-all-in-one-seo-pack-pro.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

