﻿<?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="http://minibird.com/blog/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://minibird.com</link>
	<description>学会飞翔，飞向更高</description>
	<lastBuildDate>Thu, 03 May 2012 14:18:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>wordpress更换域名及重定向操作</title>
		<link>http://minibird.com/blog/20100330750</link>
		<comments>http://minibird.com/blog/20100330750#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:06:56 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[鸡零狗碎]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[重定向]]></category>

		<guid isPermaLink="false">http://minibird.com/?p=750</guid>
		<description><![CDATA[今天将域名从MINIBIRD.NET更换到MINIBIRD.COM，将过程记录下来，供有需要者参考。 一、启用MINIBIRD.COM域名，架设新主机。 二、复制MINIBIRD.NET中所有程序文件到MINIBIRD.COM目录下。 三、修改MINIBIRD.COM中配置文件wp-config.php中的数据库配置信息。 四、使用phpmyadmin，从MINIBIRD.NET导出数据库，导入到MINIBIRD.COM。 五、修正MINIBIRD.COM中数据库的信息。 在phpmyadmin中执行SQL替换命令。 ?查看代码 SQL1 2 3 4 5 6 UPDATE wp_options SET option_value = replace&#40;option_value, 'http://www.minibird.net', 'http://minibird.com'&#41; WHERE option_name = 'home' OR option_name = 'siteurl'; /*修改站点url和主页地址*/ UPDATE wp_posts SET post_content = replace&#40;post_content, 'http://www.minibird.net', 'http://minibird.com'&#41;; /*修改文章中内部链接及附件地址*/ UPDATE wp_posts SET guid = replace&#40;guid, 'http://www.minibird.net','http://minibird.com'&#41;; /*修改文章默认的永久链接*/ 六、测试MINIBIRD.COM，没有错误，修改成功。 七、设置301 永久重定向，将对旧站点的访问转移到新站点。 修改MINIBIRD.NET中根目录下的.htaccess文件。 首先删除下列信息： ?查看代码 APACHE1 [...]]]></description>
		<wfw:commentRss>http://minibird.com/blog/20100330750/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>wordpress迁移uploads目录</title>
		<link>http://minibird.com/blog/20100306607</link>
		<comments>http://minibird.com/blog/20100306607#comments</comments>
		<pubDate>Fri, 05 Mar 2010 16:15:31 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[学电脑]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://minibird.com/?p=607</guid>
		<description><![CDATA[修改了wordpress 下的几个自定义目录，发现引用文件无法显示。开始以为是缓存问题，后来发现不是，原来数据库里将链接写死了。没办法，只好手动修改数据库。 一、媒体库的目录由“/wp-content/uploads”迁移到“/uploads”。 进入表wp_posts，执行下列语句： ?查看代码 SQL1 update wp_posts set post_content = replace&#40;post_content,'wp-content/uploads','uploads/'&#41; 二、NextGen Gallery 的目录由“/wp-content/gallery”迁移到“/gallery”。 进入表wp_posts，执行下列语句： ?查看代码 SQL1 update wp_posts set post_content = replace&#40;post_content,'wp-content/gallery/','gallery/'&#41; 进入表wp_ngg_gallery，执行下列语句： ?查看代码 SQL1 update wp_ngg_gallery set path = replace&#40;path,'wp-content/gallery/','gallery/'&#41;]]></description>
		<wfw:commentRss>http://minibird.com/blog/20100306607/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 插件 audio player的调用参数</title>
		<link>http://minibird.com/blog/20100228557</link>
		<comments>http://minibird.com/blog/20100228557#comments</comments>
		<pubDate>Sun, 28 Feb 2010 09:30:36 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[学电脑]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://minibird.com/?p=557</guid>
		<description><![CDATA[插件：audio player 版本：2.0.4.1 调用命令如下： 远程调用：&#91;audio:http://url/name.mp3&#93; 本地调用：&#91;audio:name.mp3&#93; 播放多首：&#91;audio:http://url/name.mp3,http://url/name.mp3&#93; 循环播放：&#91;audio:http://url/name.mp3&#124;loop=yes&#93; 自动播放：&#91;audio:http://url/name.mp3&#124;autostart=yes&#93;]]></description>
		<wfw:commentRss>http://minibird.com/blog/20100228557/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 插件 NextGEN Gallery 的调用参数</title>
		<link>http://minibird.com/blog/20090426268</link>
		<comments>http://minibird.com/blog/20090426268#comments</comments>
		<pubDate>Sat, 25 Apr 2009 16:16:58 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[学电脑]]></category>
		<category><![CDATA[NGG]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://minibird.com/?p=268</guid>
		<description><![CDATA[正式使用时注意方括号前后不要有空格。 1、列出指定相册中的图集，并显示图集的说明文字。 [ album id=x template=extend ] 2、列出指定相册中的图集，不显示图集的说明文字。 [ album id=x template=compact ] 3、列出指定图集中的图片 [ nggallery id=x ] 4、幻灯片播放指定图集中的图片，需要flash支持。 [ slideshow id=x w=width h=height ] 5、使用图片浏览器播放 [ imagebrowser id=x ] 6、使用图片浏览器播放时输出exif信息 [ imagebrowser id=28 template=exif ] 7、显示指定单张图片 [ singlepic id=x ] [ singlepic id=x w=width h=height mode=web20&#124;watermark float=left&#124;right ] id : this is the image [...]]]></description>
		<wfw:commentRss>http://minibird.com/blog/20090426268/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>翻译完成NextGEN Gallery 1.2.1的简体中文语言包</title>
		<link>http://minibird.com/blog/20090406147</link>
		<comments>http://minibird.com/blog/20090406147#comments</comments>
		<pubDate>Mon, 06 Apr 2009 10:28:08 +0000</pubDate>
		<dc:creator>robin</dc:creator>
				<category><![CDATA[学电脑]]></category>
		<category><![CDATA[NGG]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://minibird.com/?p=147</guid>
		<description><![CDATA[此次翻译基于aleX Zhang 和 Carlale 于2008年3月30日发布的 0.92 版本。这个版本里本来就有不少词汇未翻译，包括一些单、复数的词汇，再加上新添加的，量很大，花了我多半天的时间。 我胆子大些，不管翻译得合适不合适。除了100%翻译完成所有的词汇外，还修改了其中的一些翻译方法，修正了其中的单复数的翻译。 中文包已经通过邮件提交给了NextGEN Gallery 的作者，另一个alex。并给aleX Zhang留言告知，Carlale不知道如何联系，其网站我也打不开。 下载用于NGG 1.2.1版本的中文语言包：nggallery-zh_cn.zip]]></description>
		<wfw:commentRss>http://minibird.com/blog/20090406147/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

