<?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://www.wenzk.com/archives/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wenzk.com</link>
	<description>http://www.wenzk.com</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:57:28 +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>20 Free WordPress Business &amp; Corporate Themes for 2011</title>
		<link>http://www.wenzk.com/archives/1290</link>
		<comments>http://www.wenzk.com/archives/1290#comments</comments>
		<pubDate>Fri, 29 Jul 2011 05:50:36 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂项]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[公司]]></category>
		<category><![CDATA[商业]]></category>
		<category><![CDATA[模板]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=1290</guid>
		<description><![CDATA[From: http://wplift.com/20-free-business-corporate-themes-for-2011/ 几个老外的WP模板，适合公司、商业用户 相关文章CMS主题使用方法 (0)Wordpress中与分类、标签有关的几个数据表 (0)Wordpress数据库使用非默认端口[非3306端口] (2)更新了Wordpress for Blacberry客户端 (0)Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】 (0)]]></description>
			<content:encoded><![CDATA[<p>From: http://wplift.com/20-free-business-corporate-themes-for-2011/</p>
<p>几个老外的WP模板，适合公司、商业用户</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/23" title="CMS主题使用方法">CMS主题使用方法</a> (0)</li><li><a href="http://www.wenzk.com/archives/1078" title="Wordpress中与分类、标签有关的几个数据表">Wordpress中与分类、标签有关的几个数据表</a> (0)</li><li><a href="http://www.wenzk.com/archives/1055" title="Wordpress数据库使用非默认端口[非3306端口]">Wordpress数据库使用非默认端口[非3306端口]</a> (2)</li><li><a href="http://www.wenzk.com/archives/737" title="更新了Wordpress for Blacberry客户端">更新了Wordpress for Blacberry客户端</a> (0)</li><li><a href="http://www.wenzk.com/archives/642" title="Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】">Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/1290/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress中与分类、标签有关的几个数据表</title>
		<link>http://www.wenzk.com/archives/1078</link>
		<comments>http://www.wenzk.com/archives/1078#comments</comments>
		<pubDate>Sat, 13 Nov 2010 11:24:37 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂项]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[数据结构]]></category>
		<category><![CDATA[数据表]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=1078</guid>
		<description><![CDATA[通过Google搜索“WordPress”、“数据表结构”可以查到一些关于MySQL数据表结构的介绍，但是对于“wp_terms”、“wp_term_taxonomy”、“wp_term_relationships”三个表的内在关系没有太详细的说明，起码如果你要写个小程序发表一篇文章，怎么更新这三个表的记录都没有介绍。 wp_terms: 记录分类，链接分类，标签的一些简要信息，包括名称，缩写。 从这个表可以获得：链接、分类及标签对应的ID，这个ID将在“wp_term_taxonomy”表中使用。 wp_term_taxonomy: 对wp_terms中的信息的关系信息补充，有所属类型（category,link_category,tag），详细描述，父类，所拥有文章（链接）数量。 从这个表可以获得：wp_terms中的term_id对应的“标签”、“链接”或“分类”所对应的一个“term_taxonomy_id”，这个“term_taxonomy_id”将在“wp_term_relationships”表中使用，本表还记录一些描述及记录对应的文章数等，（发文章时需要更新这个count）。 wp_term_relationships：关系表，多对多的，object_id是与不同的对象关联。 从这个表可以获得一篇文章与标签、分类之间的关系，object_id为博文的ID，term_taxonomy_id为wp_term_taxonomy表中相应的标签、分类的ID。 综上，发表一篇博文需要以下几个步骤： 首先需要获得当前博文的ID，然后根据文章所在的分类及拥有的标签从“wp_terms”获得相应的“term_id”。 然后根据“term_id”从“wp_term_taxonomy”中查找对应的“term_taxonomy_id”并更新相应的count，使其+1。 最后增加object_id（文章ID）、term_taxonomy_id（从wp_term_taxonomy获得标签、分类对应的term_taxonomy_id）到“wp_term_relationships”表中。 相关文章20 Free WordPress Business &#038; Corporate Themes for 2011 (0)Wordpress数据库使用非默认端口[非3306端口] (2)更新了Wordpress for Blacberry客户端 (0)Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】 (0)测试手机客户端发图片 (0)]]></description>
			<content:encoded><![CDATA[<p>通过Google搜索“WordPress”、“数据表结构”可以查到一些关于MySQL数据表结构的介绍，但是对于“wp_terms”、“wp_term_taxonomy”、“wp_term_relationships”三个表的内在关系没有太详细的说明，起码如果你要写个小程序发表一篇文章，怎么更新这三个表的记录都没有介绍。</p>
<p><span id="more-1078"></span>wp_terms: 记录分类，链接分类，标签的一些简要信息，包括名称，缩写。</p>
<p>从这个表可以获得：链接、分类及标签对应的ID，这个ID将在“wp_term_taxonomy”表中使用。</p>
<p>wp_term_taxonomy: 对wp_terms中的信息的关系信息补充，有所属类型（category,link_category,tag），详细描述，父类，所拥有文章（链接）数量。</p>
<p>从这个表可以获得：wp_terms中的term_id对应的“标签”、“链接”或“分类”所对应的一个“term_taxonomy_id”，这个“term_taxonomy_id”将在“wp_term_relationships”表中使用，本表还记录一些描述及记录对应的文章数等，（发文章时需要更新这个count）。</p>
<p>wp_term_relationships：关系表，多对多的，object_id是与不同的对象关联。</p>
<p>从这个表可以获得一篇文章与标签、分类之间的关系，object_id为博文的ID，term_taxonomy_id为wp_term_taxonomy表中相应的标签、分类的ID。</p>
<p>综上，发表一篇博文需要以下几个步骤：</p>
<p>首先需要获得当前博文的ID，然后根据文章所在的分类及拥有的标签从“wp_terms”获得相应的“term_id”。</p>
<p>然后根据“term_id”从“wp_term_taxonomy”中查找对应的“term_taxonomy_id”并更新相应的count，使其+1。</p>
<p>最后增加object_id（文章ID）、term_taxonomy_id（从wp_term_taxonomy获得标签、分类对应的term_taxonomy_id）到“wp_term_relationships”表中。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/1290" title="20 Free WordPress Business &#038; Corporate Themes for 2011">20 Free WordPress Business &#038; Corporate Themes for 2011</a> (0)</li><li><a href="http://www.wenzk.com/archives/1055" title="Wordpress数据库使用非默认端口[非3306端口]">Wordpress数据库使用非默认端口[非3306端口]</a> (2)</li><li><a href="http://www.wenzk.com/archives/737" title="更新了Wordpress for Blacberry客户端">更新了Wordpress for Blacberry客户端</a> (0)</li><li><a href="http://www.wenzk.com/archives/642" title="Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】">Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】</a> (0)</li><li><a href="http://www.wenzk.com/archives/384" title="测试手机客户端发图片">测试手机客户端发图片</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/1078/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress数据库使用非默认端口[非3306端口]</title>
		<link>http://www.wenzk.com/archives/1055</link>
		<comments>http://www.wenzk.com/archives/1055#comments</comments>
		<pubDate>Fri, 29 Oct 2010 16:15:58 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂项]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[修改]]></category>
		<category><![CDATA[端口]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=1055</guid>
		<description><![CDATA[在Wrodpress的配置文件中只有定义数据库服务器地址，并没有填写端口的地方 如果你的机器运行了多个MySQL数据库（新版本WP只能运行在4.x以上的MySQL上）。 此时，只能通过本地的socks文件来连接数据库了，格式如下： 不知道这个地址是否有需要改进，如果数据库不是运行在本机，难道只能靠iptables的NAT来搞定了？ 相关文章Zimbra管理员总是能收到MySQL检查出错的邮件 (0)20 Free WordPress Business &#038; Corporate Themes for 2011 (0)黑莓8310修改IMEI简单步骤 (0)Postfix:BOTH mydestination and virtual_mailbox_domains (0)Wordpress中与分类、标签有关的几个数据表 (0)]]></description>
			<content:encoded><![CDATA[<p>在Wrodpress的配置文件中只有定义数据库服务器地址，并没有填写端口的地方</p>
<pre class="brush: plain; title: ; notranslate">define('DB_HOST', 'localhost');</pre>
<p>如果你的机器运行了多个MySQL数据库（新版本WP只能运行在4.x以上的MySQL上）。</p>
<p>此时，只能通过本地的socks文件来连接数据库了，格式如下：</p>
<pre class="brush: plain; title: ; notranslate">define('DB_HOST', 'localhost:/tmp/mysql.sock');</pre>
<p>不知道这个地址是否有需要改进，如果数据库不是运行在本机，难道只能靠iptables的NAT来搞定了？</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/1447" title="Zimbra管理员总是能收到MySQL检查出错的邮件">Zimbra管理员总是能收到MySQL检查出错的邮件</a> (0)</li><li><a href="http://www.wenzk.com/archives/1290" title="20 Free WordPress Business &#038; Corporate Themes for 2011">20 Free WordPress Business &#038; Corporate Themes for 2011</a> (0)</li><li><a href="http://www.wenzk.com/archives/1176" title="黑莓8310修改IMEI简单步骤">黑莓8310修改IMEI简单步骤</a> (0)</li><li><a href="http://www.wenzk.com/archives/1172" title="Postfix:BOTH mydestination and virtual_mailbox_domains">Postfix:BOTH mydestination and virtual_mailbox_domains</a> (0)</li><li><a href="http://www.wenzk.com/archives/1078" title="Wordpress中与分类、标签有关的几个数据表">Wordpress中与分类、标签有关的几个数据表</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/1055/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>更新了WordPress for Blacberry客户端</title>
		<link>http://www.wenzk.com/archives/737</link>
		<comments>http://www.wenzk.com/archives/737#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:55:53 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂项]]></category>
		<category><![CDATA[Godaddy]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[客户端]]></category>
		<category><![CDATA[黑莓]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/archives/737</guid>
		<description><![CDATA[测试一下效果，目前是1.1版本了，具体更新了哪些功能也懒得去看了，至少目前使用还是没感觉出来。刚刚看到Godaddy也为黑莓发布了域名管理客户端，没有说明能在什么版本下使用，试着下载，结果发现文件大小1m，吓得没敢下载，我这破烂硬件怕是跑不动了，以后再看看吧。 相关文章测试手机客户端发图片 (0)Newest GoDaddy Promo Code for 2012 (0)20 Free WordPress Business &#038; Corporate Themes for 2011 (0)黑莓8310修改IMEI简单步骤 (0)Wordpress中与分类、标签有关的几个数据表 (0)]]></description>
			<content:encoded><![CDATA[<p>测试一下效果，目前是1.1版本了，具体更新了哪些功能也懒得去看了，至少目前使用还是没感觉出来。刚刚看到Godaddy也为黑莓发布了域名管理客户端，没有说明能在什么版本下使用，试着下载，结果发现文件大小1m，吓得没敢下载，我这破烂硬件怕是跑不动了，以后再看看吧。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/384" title="测试手机客户端发图片">测试手机客户端发图片</a> (0)</li><li><a href="http://www.wenzk.com/archives/1496" title="Newest GoDaddy Promo Code for 2012">Newest GoDaddy Promo Code for 2012</a> (0)</li><li><a href="http://www.wenzk.com/archives/1290" title="20 Free WordPress Business &#038; Corporate Themes for 2011">20 Free WordPress Business &#038; Corporate Themes for 2011</a> (0)</li><li><a href="http://www.wenzk.com/archives/1176" title="黑莓8310修改IMEI简单步骤">黑莓8310修改IMEI简单步骤</a> (0)</li><li><a href="http://www.wenzk.com/archives/1078" title="Wordpress中与分类、标签有关的几个数据表">Wordpress中与分类、标签有关的几个数据表</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/737/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress FLV Player插件使用注意事项【官方插件无法正常使用】</title>
		<link>http://www.wenzk.com/archives/642</link>
		<comments>http://www.wenzk.com/archives/642#comments</comments>
		<pubDate>Tue, 02 Mar 2010 12:19:23 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-网络]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[插件]]></category>
		<category><![CDATA[播放器]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=642</guid>
		<description><![CDATA[插件官方下载地址：http://wordpress.org/extend/plugins/flv-player/ 官方文档为： 但是下载官方的zip包解压后，默认地址却是：plugins/flv-player目录，所以与官方文档不一致，需要将插件中的路径进行修改。 一共2处需要修改，flvplayer.php中的20行改成 52行改成： 如果你懒得去修改，也可以下载一个修改好的，下载地址：http://www.wenzk.com/soft/flv-player.2.0.tar.gz 还有一个需要注意的就是，上传后flv文件名不要有中文字符，否则这个插件是不work的，这个也折腾了我一阵子，测试的时候上传的带有中文名一个flv文件，结果很杯具，最终看代码搞定的。 相关文章测试flv player插件&#8211;她来听我的演唱会 (1)Video Blogging using Django and Flash(tm) Video (FLV) (0)Apache flv streaming done right (0)Auto Highslide插件 (0)Firefox扩展：Wappalyzer (0)]]></description>
			<content:encoded><![CDATA[<p>插件官方下载地址：http://wordpress.org/extend/plugins/flv-player/</p>
<p><span id="more-642"></span>官方文档为：</p>
<pre class="brush: plain; title: ; notranslate">
   1. Expand this plugin's archive content to wp-content/plugins/
   2. Go to Administration &gt; Plugins and activate this plugin.
   3. In your posts, use this syntax: [ flvplayer file|url[[width [height]]] eg: [ flvplayer &lt;a rel=&quot;nofollow&quot; href=&quot;http://acme.com/video.flv&quot;&gt;http://acme.com/video.flv&lt;/a&gt; [ flvplayer &lt;a rel=&quot;nofollow&quot; href=&quot;http://acme.com/video.flv&quot;&gt;http://acme.com/video.flv&lt;/a&gt; 640 480]
</pre>
<p>但是下载官方的zip包解压后，默认地址却是：plugins/flv-player目录，所以与官方文档不一致，需要将插件中的路径进行修改。<br />
一共2处需要修改，flvplayer.php中的20行改成</p>
<pre class="brush: plain; title: ; notranslate">&lt;script type=&quot;text/javascript&quot; src=&quot;{$prefix}/plugins/flv-player/swfobject.js&quot;&gt;&lt;/script&gt;</pre>
<p>52行改成：</p>
<pre class="brush: plain; title: ; notranslate">'{$prefix}/plugins/flv-player/flvplayer.swf',</pre>
<p>如果你懒得去修改，也可以下载一个修改好的，下载地址：<a href="http://www.wenzk.com/soft/flv-player.2.0.tar.gz">http://www.wenzk.com/soft/flv-player.2.0.tar.gz</a></p>
<p>还有一个需要注意的就是，上传后flv文件名不要有中文字符，否则这个插件是不work的，这个也折腾了我一阵子，测试的时候上传的带有中文名一个flv文件，结果很杯具，最终看代码搞定的。</p>
<pre class="brush: php; title: ; notranslate">function flvplayer_plugin($content)
{
 return preg_replace_callback('/\[flvplayer ([A-Za-z0-9\-_\/\?\&amp;\#\%\.\=@:;]+)(?:[ ]*)([A-Za-z0-9\-_\/\?\&amp;\#\%\.\=@:;]*)(?:[ ]*)([A-Za-z0-9\-_\/\?\&amp;\#\%\.\=@:;]*)\]/', 'flvplayer_plugin_callback', $content);
}</pre>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/625" title="测试flv player插件&#8211;她来听我的演唱会">测试flv player插件&#8211;她来听我的演唱会</a> (1)</li><li><a href="http://www.wenzk.com/archives/907" title="Video Blogging using Django and Flash(tm) Video (FLV)">Video Blogging using Django and Flash(tm) Video (FLV)</a> (0)</li><li><a href="http://www.wenzk.com/archives/648" title="Apache flv streaming done right">Apache flv streaming done right</a> (0)</li><li><a href="http://www.wenzk.com/archives/103" title="Auto Highslide插件">Auto Highslide插件</a> (0)</li><li><a href="http://www.wenzk.com/archives/1519" title="Firefox扩展：Wappalyzer">Firefox扩展：Wappalyzer</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/642/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试手机客户端发图片</title>
		<link>http://www.wenzk.com/archives/384</link>
		<comments>http://www.wenzk.com/archives/384#comments</comments>
		<pubDate>Sat, 10 Oct 2009 03:54:39 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂谈]]></category>
		<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[客户端]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/archives/384</guid>
		<description><![CDATA[我的Chrome也支持鼠标手势啦,这图片效果也太差了 手机上传的效果太差了，还是用Live Writer或后台比较好一些，8310的拍照效果太差了。 相关文章更新了Wordpress for Blacberry客户端 (0)20 Free WordPress Business &#038; Corporate Themes for 2011 (0)Wordpress中与分类、标签有关的几个数据表 (0)Wordpress数据库使用非默认端口[非3306端口] (2)Google Maps for BlackBerry终于在本地缓存地图了 (0)]]></description>
			<content:encoded><![CDATA[<p>我的Chrome也支持鼠标手势啦,这图片效果也太差了</p>
<p><span id="more-384"></span><a href="http://www.wenzk.com/wp-content/uploads/2009/10/IMG000741.jpg" class="highslide-image" onclick="return hs.expand(this);"><img class="alignnone size-medium wp-image-389" title="IMG00074" src="http://www.wenzk.com/wp-content/uploads/2009/10/IMG000741-300x225.jpg" alt="IMG00074" width="300" height="225" /></a></p>
<p>手机上传的效果太差了，还是用Live Writer或后台比较好一些，8310的拍照效果太差了。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/737" title="更新了Wordpress for Blacberry客户端">更新了Wordpress for Blacberry客户端</a> (0)</li><li><a href="http://www.wenzk.com/archives/1290" title="20 Free WordPress Business &#038; Corporate Themes for 2011">20 Free WordPress Business &#038; Corporate Themes for 2011</a> (0)</li><li><a href="http://www.wenzk.com/archives/1078" title="Wordpress中与分类、标签有关的几个数据表">Wordpress中与分类、标签有关的几个数据表</a> (0)</li><li><a href="http://www.wenzk.com/archives/1055" title="Wordpress数据库使用非默认端口[非3306端口]">Wordpress数据库使用非默认端口[非3306端口]</a> (2)</li><li><a href="http://www.wenzk.com/archives/813" title="Google Maps for BlackBerry终于在本地缓存地图了">Google Maps for BlackBerry终于在本地缓存地图了</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/384/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Highslide插件</title>
		<link>http://www.wenzk.com/archives/103</link>
		<comments>http://www.wenzk.com/archives/103#comments</comments>
		<pubDate>Tue, 22 Sep 2009 07:30:55 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂项]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[图片]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.wenzk.com/?p=103</guid>
		<description><![CDATA[WordPress的一个插件，加上之后点击图片的URL不再是从新窗口打开图片，而是在当前窗口产生一个DIV，显示连接对应的图片，效果不错。下载地址： http://wordpress.org/extend/plugins/auto-highslide/ 相关文章Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】 (0)Firefox扩展：Wappalyzer (0)20 Free WordPress Business &#038; Corporate Themes for 2011 (0)RDCAutoTypeAndTCATO KeePass Plugin过期了 (0)Wordpress中与分类、标签有关的几个数据表 (0)]]></description>
			<content:encoded><![CDATA[<p>WordPress的一个插件，加上之后点击图片的URL不再是从新窗口打开图片，而是在当前窗口产生一个DIV，显示连接对应的图片，效果不错。下载地址：</p>
<p><a href="http://wordpress.org/extend/plugins/auto-highslide/">http://wordpress.org/extend/plugins/auto-highslide/</a></p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/642" title="Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】">Wordpress FLV Player插件使用注意事项【官方插件无法正常使用】</a> (0)</li><li><a href="http://www.wenzk.com/archives/1519" title="Firefox扩展：Wappalyzer">Firefox扩展：Wappalyzer</a> (0)</li><li><a href="http://www.wenzk.com/archives/1290" title="20 Free WordPress Business &#038; Corporate Themes for 2011">20 Free WordPress Business &#038; Corporate Themes for 2011</a> (0)</li><li><a href="http://www.wenzk.com/archives/1129" title="RDCAutoTypeAndTCATO KeePass Plugin过期了">RDCAutoTypeAndTCATO KeePass Plugin过期了</a> (0)</li><li><a href="http://www.wenzk.com/archives/1078" title="Wordpress中与分类、标签有关的几个数据表">Wordpress中与分类、标签有关的几个数据表</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/103/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMS主题使用方法</title>
		<link>http://www.wenzk.com/archives/23</link>
		<comments>http://www.wenzk.com/archives/23#comments</comments>
		<pubDate>Mon, 21 Sep 2009 00:42:46 +0000</pubDate>
		<dc:creator>ELM</dc:creator>
				<category><![CDATA[榆树网-杂项]]></category>
		<category><![CDATA[热门]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[主题]]></category>

		<guid isPermaLink="false">http://t.wenzk.com/?p=23</guid>
		<description><![CDATA[特别说明 最好先在后台自己建立两个分类，“头条分类”和“幻灯分类”，方便对头条和幻灯的调用 然后修改header.php和sidebar.php文件查找“exclude=20,43”修改这个20,43为你的“头条分类”和“幻灯分类”的分类数字id，这样这两个就不显示在导航菜单,但可以用来调用 这样你想把文章做为头条或者幻灯，只需在发布时顺便勾选头条或者幻灯分类 各个分类的数字id可以在点击编辑分类时在浏览器的地址栏看到 主题说明 1.wenjian文档里面各个文件主要是调用文件 2.公告部分，激活插件后具体设置可以看下主题文件里面的 公告设置图片 3.头条部分，显示最新一篇头条文章摘要，后台建立个头条分类，然后在wenjian文档里面toutiao.php修改头条分类id 4.幻灯片部分，后台建立个幻灯分类，然后在wenjian文档里面huandeng.php修改幻灯分类id 在发布文章时如果此文章想作为幻灯，则在发布文章页面正文输入框下面的“自定义域”输入你想做幻灯的图片，具体可看图片 设置自定义图幻灯调用.jpg 名称填“thumbnail”，值填你想显示的图片地址 如果没输入图片，则取我设定的默认图片显示images/moren.jpg 5.首页下方的四个分类部分，在wenjian文档里面cat-list.php修改分类id，我的4个分类对应的id分别是1,16,17,18 把array(1,16,17,18)括号里面四个数字代表的分类ID改成你所要显示的分类，如需增加减少分类则类推增减，如6个分类则array(1,16,17,18,19,20)，2个分类则array(1,16) 6.ggad里面的各个广告文件可以打开替换为你自己的广告，或者直接把里面的对应的代码删除就不显示演示图片 7.右边侧边栏部分，此主题支持widget小工具，如果默认的不爽的话自己后台小工具可修改 转自：http://www.youjiandi.com/wordpress/fa-bu-wordpress-di-cms-zhu-ti-wpdedecms.html 相关文章20 Free WordPress Business &#038; Corporate Themes for 2011 (0)Firefox扩展：Wappalyzer (0)Wordpress中与分类、标签有关的几个数据表 (0)Wordpress数据库使用非默认端口[非3306端口] (2)Video Blogging using Django and Flash(tm) Video (FLV) (0)]]></description>
			<content:encoded><![CDATA[<p>特别说明<br />
最好先在后台自己建立两个分类，“头条分类”和“幻灯分类”，方便对头条和幻灯的调用<br />
然后修改header.php和sidebar.php文件查找“exclude=20,43”修改这个20,43为你的“头条分类”和“幻灯分类”的分类数字id，这样这两个就不显示在导航菜单,但可以用来调用<br />
这样你想把文章做为头条或者幻灯，只需在发布时顺便勾选头条或者幻灯分类<span id="more-23"></span></p>
<p>各个分类的数字id可以在点击编辑分类时在浏览器的地址栏看到</p>
<p>主题说明</p>
<p>1.wenjian文档里面各个文件主要是调用文件</p>
<p>2.公告部分，激活插件后具体设置可以看下主题文件里面的 公告设置图片</p>
<p>3.头条部分，显示最新一篇头条文章摘要，后台建立个头条分类，然后在wenjian文档里面toutiao.php修改头条分类id</p>
<p>4.幻灯片部分，后台建立个幻灯分类，然后在wenjian文档里面huandeng.php修改幻灯分类id<br />
在发布文章时如果此文章想作为幻灯，则在发布文章页面正文输入框下面的“自定义域”输入你想做幻灯的图片，具体可看图片 设置自定义图幻灯调用.jpg<br />
名称填“thumbnail”，值填你想显示的图片地址<br />
如果没输入图片，则取我设定的默认图片显示images/moren.jpg</p>
<p>5.首页下方的四个分类部分，在wenjian文档里面cat-list.php修改分类id，我的4个分类对应的id分别是1,16,17,18<br />
把array(1,16,17,18)括号里面四个数字代表的分类ID改成你所要显示的分类，如需增加减少分类则类推增减，如6个分类则array(1,16,17,18,19,20)，2个分类则array(1,16)</p>
<p>6.ggad里面的各个广告文件可以打开替换为你自己的广告，或者直接把里面的对应的代码删除就不显示演示图片</p>
<p>7.右边侧边栏部分，此主题支持widget小工具，如果默认的不爽的话自己后台小工具可修改</p>
<p>转自：<a href="http://www.youjiandi.com/wordpress/fa-bu-wordpress-di-cms-zhu-ti-wpdedecms.html" target="_blank">http://www.youjiandi.com/wordpress/fa-bu-wordpress-di-cms-zhu-ti-wpdedecms.html</a></p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li><a href="http://www.wenzk.com/archives/1290" title="20 Free WordPress Business &#038; Corporate Themes for 2011">20 Free WordPress Business &#038; Corporate Themes for 2011</a> (0)</li><li><a href="http://www.wenzk.com/archives/1519" title="Firefox扩展：Wappalyzer">Firefox扩展：Wappalyzer</a> (0)</li><li><a href="http://www.wenzk.com/archives/1078" title="Wordpress中与分类、标签有关的几个数据表">Wordpress中与分类、标签有关的几个数据表</a> (0)</li><li><a href="http://www.wenzk.com/archives/1055" title="Wordpress数据库使用非默认端口[非3306端口]">Wordpress数据库使用非默认端口[非3306端口]</a> (2)</li><li><a href="http://www.wenzk.com/archives/907" title="Video Blogging using Django and Flash(tm) Video (FLV)">Video Blogging using Django and Flash(tm) Video (FLV)</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.wenzk.com/archives/23/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

