﻿
<?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一站式服务</title>
	<atom:link href="http://wpsite.info/feed" rel="self" type="application/rss+xml" />
	<link>http://wpsite.info</link>
	<description>帮您建造自己的WordPress</description>
	<lastBuildDate>Wed, 16 May 2012 16:00:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress的windows服务器根目录下robots.txt简单设置</title>
		<link>http://wpsite.info/archives/9674</link>
		<comments>http://wpsite.info/archives/9674#comments</comments>
		<pubDate>Tue, 08 May 2012 16:31:04 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress基础知识]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9674</guid>
		<description><![CDATA[User-agent: * Sitemap: http://yourdomain.com/sitemap_baidu.xml 指导搜索引擎的地图的位置 Disallow: /folder/ 禁止搜索引擎收录此目录]]></description>
			<content:encoded><![CDATA[<pre class="brush:php;first-line:1;pad-line-numbers:true;highlight:null;collapse:false;">
User-agent: *
Sitemap: http://yourdomain.com/sitemap_baidu.xml   指导搜索引擎的地图的位置
Disallow: /folder/ 禁止搜索引擎收录此目录
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9674/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress的windows服务器根目录下php.ini简单设置</title>
		<link>http://wpsite.info/archives/9671</link>
		<comments>http://wpsite.info/archives/9671#comments</comments>
		<pubDate>Tue, 08 May 2012 15:51:00 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress基础知识]]></category>
		<category><![CDATA[php.ini]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9671</guid>
		<description><![CDATA[[ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # 中文tag解决 RewriteRule /tag/(.*) /index\.php\?tag=$1 # sitemapxml RewriteRule /sitemap.xml /sitemap.xml [L] RewriteRule /sitemap_baidu.xml /sitemap_baidu.xml [L] RewriteRule /favicon.ico /favicon.ico [L] # For file-based wordpress content (i.e. theme), admin, etc. RewriteRule /wp-(.*) /wp-$1 [L] # For normal wordpress content, via index.php RewriteRule ^/$ /index.php [L] RewriteRule /(.*) [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:php;first-line:1;pad-line-numbers:true;highlight:null;collapse:false;">
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# 中文tag解决
RewriteRule /tag/(.*) /index\.php\?tag=$1
# sitemapxml
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /sitemap_baidu.xml /sitemap_baidu.xml [L]
RewriteRule /favicon.ico /favicon.ico [L]
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /wp-(.*) /wp-$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9671/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress添加分类的附加选项</title>
		<link>http://wpsite.info/archives/9665</link>
		<comments>http://wpsite.info/archives/9665#comments</comments>
		<pubDate>Sat, 05 May 2012 14:47:03 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress代码]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[option]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9665</guid>
		<description><![CDATA[&#60;?php //以下代码添加到functions.php内 //add extra fields to category edit form hook add_action ( &#39;edit_category_form_fields&#39;, &#39;extra_category_fields&#39;); //add extra fields to category edit form callback function function extra_category_fields( $tag ) { //check for existing featured ID $t_id = $tag-&#62;term_id; $cat_meta = get_option( &#34;category_$t_id&#34;); ?&#62; &#60;tr class=&#34;form-field&#34;&#62; &#60;th scope=&#34;row&#34; valign=&#34;top&#34;&#62;&#60;label for=&#34;cat_Image_url&#34;&#62;&#60;?php _e(&#39;Category Image Url&#39;); ?&#62;&#60;/label&#62;&#60;/th&#62; &#60;td&#62; &#60;input type=&#34;text&#34; name=&#34;Cat_meta[img]&#34; [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:php;first-line:1;pad-line-numbers:true;highlight:null;collapse:false;">
&lt;?php
//以下代码添加到functions.php内
//add extra fields to category edit form hook
add_action ( &#39;edit_category_form_fields&#39;, &#39;extra_category_fields&#39;);
//add extra fields to category edit form callback function
function extra_category_fields( $tag ) {    //check for existing featured ID
    $t_id = $tag-&gt;term_id;
    $cat_meta = get_option( &quot;category_$t_id&quot;);
?&gt;
&lt;tr class=&quot;form-field&quot;&gt;
&lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;cat_Image_url&quot;&gt;&lt;?php _e(&#39;Category Image Url&#39;); ?&gt;&lt;/label&gt;&lt;/th&gt;
&lt;td&gt;
&lt;input type=&quot;text&quot; name=&quot;Cat_meta[img]&quot; id=&quot;Cat_meta[img]&quot; size=&quot;3&quot; style=&quot;width:60%;&quot; value=&quot;&lt;?php echo $cat_meta[&#39;img&#39;] ? $cat_meta[&#39;img&#39;] : &#39;&#39;; ?&gt;&quot;&gt;&lt;br /&gt;
            &lt;span class=&quot;description&quot;&gt;&lt;?php _e(&#39;Image for category: use full url with http://&#39;); ?&gt;&lt;/span&gt;
        &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;form-field&quot;&gt;
&lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;extra1&quot;&gt;&lt;?php _e(&#39;extra field&#39;); ?&gt;&lt;/label&gt;&lt;/th&gt;
&lt;td&gt;
&lt;input type=&quot;text&quot; name=&quot;Cat_meta[extra1]&quot; id=&quot;Cat_meta[extra1]&quot; size=&quot;25&quot; style=&quot;width:60%;&quot; value=&quot;&lt;?php echo $cat_meta[&#39;extra1&#39;] ? $cat_meta[&#39;extra1&#39;] : &#39;&#39;; ?&gt;&quot;&gt;&lt;br /&gt;
            &lt;span class=&quot;description&quot;&gt;&lt;?php _e(&#39;extra field&#39;); ?&gt;&lt;/span&gt;
        &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;form-field&quot;&gt;
&lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;extra2&quot;&gt;&lt;?php _e(&#39;extra field&#39;); ?&gt;&lt;/label&gt;&lt;/th&gt;
&lt;td&gt;
&lt;input type=&quot;text&quot; name=&quot;Cat_meta[extra2]&quot; id=&quot;Cat_meta[extra2]&quot; size=&quot;25&quot; style=&quot;width:60%;&quot; value=&quot;&lt;?php echo $cat_meta[&#39;extra2&#39;] ? $cat_meta[&#39;extra2&#39;] : &#39;&#39;; ?&gt;&quot;&gt;&lt;br /&gt;
            &lt;span class=&quot;description&quot;&gt;&lt;?php _e(&#39;extra field&#39;); ?&gt;&lt;/span&gt;
        &lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&quot;form-field&quot;&gt;
&lt;th scope=&quot;row&quot; valign=&quot;top&quot;&gt;&lt;label for=&quot;extra3&quot;&gt;&lt;?php _e(&#39;extra field&#39;); ?&gt;&lt;/label&gt;&lt;/th&gt;
&lt;td&gt;
            &lt;textarea name=&quot;Cat_meta[extra3]&quot; id=&quot;Cat_meta[extra3]&quot; style=&quot;width:60%;&quot;&gt;&lt;?php echo $cat_meta[&#39;extra3&#39;] ? $cat_meta[&#39;extra3&#39;] : &#39;&#39;; ?&gt;&lt;/textarea&gt;&lt;br /&gt;
            &lt;span class=&quot;description&quot;&gt;&lt;?php _e(&#39;extra field&#39;); ?&gt;&lt;/span&gt;
        &lt;/td&gt;
&lt;/tr&gt;
&lt;?php
}?&gt;
&lt;?php
// save extra category extra fields hook
add_action ( &#39;edited_category&#39;, &#39;save_extra_category_fileds&#39;);
   // save extra category extra fields callback function
function save_extra_category_fileds( $term_id ) {
    if ( isset( $_POST[&#39;Cat_meta&#39;] ) ) {
        $t_id = $term_id;
        $cat_meta = get_option( &quot;category_$t_id&quot;);
        $cat_keys = array_keys($_POST[&#39;Cat_meta&#39;]);
            foreach ($cat_keys as $key){
            if (isset($_POST[&#39;Cat_meta&#39;][$key])){
                $cat_meta[$key] = $_POST[&#39;Cat_meta&#39;][$key];
            }
        }
        //save the option array
        update_option( &quot;category_$t_id&quot;, $cat_meta );
    }
}
//以下代码是调用分类的附加选项的代码
global $wpdb;
$deptID = &quot;10&quot;;//10为分类的ID
$childCatID = $wpdb-&gt;get_col(&quot;SELECT term_id FROM $wpdb-&gt;term_taxonomy WHERE parent=&#39;$deptID&#39;&quot;);
//print_r($childCatID);
if ($childCatID){
foreach ($childCatID as $kid)
{
$childCatName = $wpdb-&gt;get_row(&quot;SELECT name, term_id FROM $wpdb-&gt;terms WHERE term_id=&#39;$kid&#39;&quot;);
$cat_id=$childCatName-&gt;term_id;
$cat_data = get_option(&quot;category_$cat_id&quot;);
?&gt;

    &lt;!-- ProductList begin --&gt;
    &lt;div class=&quot;product_list&quot;&gt;

            &lt;div class=&quot;singleproduct&quot;&gt;
                 &lt;div class=&quot;thumb&quot;&gt;
                	&lt;a href=&quot;&lt;?php echo get_category_link($childCatName-&gt;term_id) ?&gt;&quot; title=&quot;&lt;?php echo $childCatName-&gt;name; ?&gt;&quot; &gt;&lt;img src=&quot;&lt;?php if($cat_data[&#39;img&#39;]){echo $cat_data[&#39;img&#39;];}else{echo &quot;http://www.feelparkinsbrakes.com/wp-content/themes/WPTradeC-en/images/no-thumb.jpg&quot;;} ?&gt;&quot; title=&quot;&lt;?php echo $childCatName-&gt;name; ?&gt;&quot; alt=&quot;&lt;?php echo $childCatName-&gt;name; ?&gt;&quot; /&gt;&lt;/a&gt;

                    &lt;span&gt;&lt;a href=&quot;&lt;?php echo get_category_link($childCatName-&gt;term_id) ?&gt;&quot;title=&quot;&lt;?php echo $childCatName-&gt;name; ?&gt;&quot;&gt;&lt;?php echo $childCatName-&gt;name; ?&gt;&lt;/a&gt;&lt;/span&gt;

                &lt;/div&gt;
                &lt;div class=&quot;describe&quot;&gt;
                    &lt;h2&gt;&lt;a href=&quot;&lt;?php echo get_category_link($childCatName-&gt;term_id) ?&gt;&quot;title=&quot;&lt;?php echo $childCatName-&gt;name; ?&gt;&quot;&gt;&lt;?php echo $childCatName-&gt;name; ?&gt;&lt;/a&gt;&lt;/h2&gt;
                    &lt;p&gt;&lt;?php echo category_description($childCatName-&gt;term_id); ?&gt;&lt;/p&gt;
                &lt;/div&gt;
            &lt;/div&gt;
&lt;/div&gt;
 &lt;?php }}?&gt;	 
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9665/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress热门文章功能</title>
		<link>http://wpsite.info/archives/9662</link>
		<comments>http://wpsite.info/archives/9662#comments</comments>
		<pubDate>Fri, 04 May 2012 15:54:36 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress代码]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9662</guid>
		<description><![CDATA[&#60;h2&#62;热门文章&#60;/h2&#62; &#60;ul id=&#34;popular-posts&#34;&#62; &#60;?php $result = $wpdb-&#62;get_results(&#34;SELECT comment_count,ID,post_title FROM $wpdb-&#62;posts ORDER BY comment_count DESC LIMIT 0 , 6&#34;); foreach ($result as $post) { setup_postdata($post); $postid = $post-&#62;ID; $title = $post-&#62;post_title; $commentcount = $post-&#62;comment_count; if ($commentcount != 0) { ?&#62; &#60;li&#62;&#60;a href=&#34;&#60;?php echo get_permalink($postid); ?&#62;&#34; title=&#34;&#60;?php echo $title ?&#62;&#34;&#62; &#60;?php echo $title ?&#62;&#60;/a&#62; {&#60;?php echo $commentcount [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:php;first-line:1;pad-line-numbers:true;highlight:null;collapse:false;">
&lt;h2&gt;热门文章&lt;/h2&gt;
 &lt;ul id=&quot;popular-posts&quot;&gt;
 &lt;?php $result = $wpdb-&gt;get_results(&quot;SELECT comment_count,ID,post_title FROM $wpdb-&gt;posts ORDER BY comment_count DESC LIMIT 0 , 6&quot;);
 foreach ($result as $post) {
 setup_postdata($post);
 $postid = $post-&gt;ID;
 $title = $post-&gt;post_title;
 $commentcount = $post-&gt;comment_count;
 if ($commentcount != 0) { ?&gt;
 &lt;li&gt;&lt;a href=&quot;&lt;?php echo get_permalink($postid); ?&gt;&quot; title=&quot;&lt;?php echo $title ?&gt;&quot;&gt;
 &lt;?php echo $title ?&gt;&lt;/a&gt; {&lt;?php echo $commentcount ?&gt; 个评论}&lt;/li&gt;
 &lt;?php } } ?&gt;
 &lt;/ul&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9662/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress获得某个分类的子分类信息</title>
		<link>http://wpsite.info/archives/9647</link>
		<comments>http://wpsite.info/archives/9647#comments</comments>
		<pubDate>Wed, 02 May 2012 11:46:42 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress代码]]></category>
		<category><![CDATA[category]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9647</guid>
		<description><![CDATA[global $wpdb; $deptID = &#34;10&#34;; $childCatID = $wpdb-&#62;get_col(&#34;SELECT term_id FROM $wpdb-&#62;term_taxonomy WHERE parent=&#39;$deptID&#39;&#34;); //print_r($childCatID); if ($childCatID){ foreach ($childCatID as $kid) { $childCatName = $wpdb-&#62;get_row(&#34;SELECT name, term_id FROM $wpdb-&#62;terms WHERE term_id=&#39;$kid&#39;&#34;); $cat_id=$childCatName-&#62;term_id;//子分类的ID $cat_name=$childCatName-&#62;name;//分类的名称 $cat_link=get_category_link($childCatName-&#62;term_id);//分类的链接 } }]]></description>
			<content:encoded><![CDATA[<pre class="brush:php;first-line:1;pad-line-numbers:true;highlight:null;collapse:false;">
global $wpdb;
$deptID = &quot;10&quot;;
$childCatID = $wpdb-&gt;get_col(&quot;SELECT term_id FROM $wpdb-&gt;term_taxonomy WHERE parent=&#39;$deptID&#39;&quot;);
//print_r($childCatID);
if ($childCatID){
foreach ($childCatID as $kid)
{
$childCatName = $wpdb-&gt;get_row(&quot;SELECT name, term_id FROM $wpdb-&gt;terms WHERE term_id=&#39;$kid&#39;&quot;);
$cat_id=$childCatName-&gt;term_id;//子分类的ID
$cat_name=$childCatName-&gt;name;//分类的名称
$cat_link=get_category_link($childCatName-&gt;term_id);//分类的链接
}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9647/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ThemeForest wordpress企业主题 – Shiny</title>
		<link>http://wpsite.info/archives/9639</link>
		<comments>http://wpsite.info/archives/9639#comments</comments>
		<pubDate>Fri, 27 Apr 2012 02:23:14 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress主题]]></category>
		<category><![CDATA[WordPress企业主题]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9639</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><div class="task shortcodestyle"><a href="http://wpsite.info/wp-content/uploads/2012/04/Shiny.jpg" class="highslide-image" onclick="return hs.expand(this);"><img src="http://wpsite.info/wp-content/uploads/2012/04/Shiny.jpg" alt="ThemeForest wordpress企业主题 – Shiny" title="1_preview.__large_preview" width="590" height="300" class="alignnone size-full wp-image-9633" /></a></div><br />
<div class="noway shortcodestyle">功能介绍：<br />
    Powerful Unbranded Admin Panel<br />
    Shortcode Generator to insert shortcodes from the WordPress visual or HTML editor<br />
    16 predefined gorgeous color variations<br />
    Near unlimited colors customization posibilities<br />
    110 pre-made background textures + built-in uploader for custom background textures<br />
    Built-in Like button for blog posts and portfolio items + widgets for displaying most liked posts and portfolio items<br />
    Unlimited sidebars – pick a different sidebar for every blog category, every blog post and every page<br />
    5 default sidebars – footer sidebar, blog sidebar, portfolio sidebar, gallery sidebar and page sidebar (for standard pages)<br />
    5 awesome sliders for your home page – Nivo Slider , Awkward Showcase with on-image tooltips and video support , Anything Slider with video support , Accordion Slider&#038; liteAccordion Slider<br />
    Nivo Slider shortcode – place it wherever you want<br />
    Scrollable gallery – an attractive way to show your images ; it can also show the latest blog posts or portfolio items<br />
    50+ shortcodes  with handy Shortcode Generator<br />
    Shortcodes with many different variations (for example 72 button variations, all of them in 3 sizes) and custom colors<br />
    Home Page built with shortcodes – you can customize it to your needs<br />
    Custom post types for Portfolio and Slides<br />
    Custom portfolio taxonomies (portfolio categories and portfolio tags)<br />
    7 portfolio layouts, including 2 layouts with sortable items<br />
    17 custom templates (home page, blog, portfolio, single page, gallery, 404, search)<br />
    Support for WordPress built-in galleries<br />
    Amazing Galleria script for galleries<br />
    PrettyPhoto (Lightbox clone) with video support (YouTube &#038; Vimeo)<br />
    Full video support (YouTube, Vimeo, Dailymotion, self-hosted videos)<br />
    11 custom widgets<br />
    Automatic thumbnails generation with TimThumb<br />
    Social icons (right side of the page header) for 22 websites/services + sharing button<br />
    Font replacement with Google Web Fonts – choose between 500+ free fonts<br />
    WordPress Menu support<br />
    High-quality, SEO -optimized XHTML /CSS code<br />
    Translation ready (.po file included)<br />
    Layered PSD files included<br />
    Support for Contact Form 7 and Contact Form 7 Widget (custom styles)<br />
    Extensive documentation<br />
    Sample content<br />
</div><br />
<div class="buy shortcodestyle">下载列表：<a href="http://115.com/file/c2e47mrm#shiny-iztwp.com.zip" target="_blank">地址</a><br />
</div><br />
<div class="warning shortcodestyle">演示地址：<a href="http://t.cn/zOjSztx " target="_blank">地址</a>&#038;&#038;http://e404themes.com/shiny/</div></p>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9639/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress企业主题</title>
		<link>http://wpsite.info/archives/9632</link>
		<comments>http://wpsite.info/archives/9632#comments</comments>
		<pubDate>Thu, 26 Apr 2012 16:07:23 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress主题]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9632</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><div class="task shortcodestyle"><a href="http://wpsite.info/wp-content/uploads/2012/04/1_preview.__large_preview.jpg" class="highslide-image" onclick="return hs.expand(this);"><img src="http://wpsite.info/wp-content/uploads/2012/04/1_preview.__large_preview.jpg" alt="" title="1_preview.__large_preview" width="590" height="300" class="alignnone size-full wp-image-9633" /></a></div><br />
<div class="noway shortcodestyle">功能介绍：<br />
Easy layout controller.<br />
Valid HTML5 markup<br />
Donations ticker and call-to-action<br />
Alert box for emergencies.<br />
Unlimited color options<br />
Customized parallax slider<br />
Easy logo customization<br />
WordPress menu support<br />
Full width page template included<br />
Super easy admin panel using the OptionTree Plugin (screenshot)<br />
Easy thumbnail images with built-in WordPress system<br />
FREE version upgrade if you purchased this theme<br />
Focus on sponsors with slider in the footer.<br />
Advanced jQuery animations and effects<br />
Promote your social network with 70+ icons</div><br />
<div class="buy shortcodestyle">下载列表：<a href="http://115.com/file/dpk2m0ve#aid.v1.1.1.zip" target="_blank">http://115.com/file/dpk2m0ve#aid.v1.1.1.zip</a><br />
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9632/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MukioPlayer for WordPress插件使用方法与下载</title>
		<link>http://wpsite.info/archives/9611</link>
		<comments>http://wpsite.info/archives/9611#comments</comments>
		<pubDate>Wed, 25 Apr 2012 15:46:27 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress插件]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9611</guid>
		<description><![CDATA[1. X1]]></description>
			<content:encoded><![CDATA[<p><div class="warning shortcodestyle">示例视频：</div><br />
<br />
<center><br />
1. </center><br />
<br />
<div class="task shortcodestyle">使用方法：<a href="http://code.google.com/p/mukioplayer4wp/downloads/detail?name=mukioplayer4wp-v1.0a.pdf" target="_blank">http://code.google.com/p/mukioplayer4wp/downloads/detail?name=mukioplayer4wp-v1.0a.pdf</a><br />
最大优点：可以播放优酷，新浪等视频</div><br />
<div class="noway shortcodestyle">插件下载：<a href="http://code.google.com/p/mukioplayer4wp/downloads/detail?name=mukioplayer-for-wordpress1.6%282011-10-22%29.zip" target="_blank">http://code.google.com/p/mukioplayer4wp/downloads/detail?name=mukioplayer-for-wordpress1.6%282011-10-22%29.zip</a></div></p>
<a href="http://wpsite.info/archives/9611"><img src="http://wpsite.info/wp-content/plugins/mukioplayer-for-wordpress/static/cmtico.png"/></a>X1]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9611/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress测试数据</title>
		<link>http://wpsite.info/archives/9599</link>
		<comments>http://wpsite.info/archives/9599#comments</comments>
		<pubDate>Thu, 29 Mar 2012 15:02:35 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress基础知识]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9599</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><div class="but_down"><a href="http://115.com/file/dpwnhjwb#" target="_blank"><span>http://115.com/file/dpwnhjwb#</span></a><div class="clear"></div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9599/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>基于WordPress平台的博客模板开发</title>
		<link>http://wpsite.info/archives/9593</link>
		<comments>http://wpsite.info/archives/9593#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:51:47 +0000</pubDate>
		<dc:creator>白龙</dc:creator>
				<category><![CDATA[WordPress教程]]></category>

		<guid isPermaLink="false">http://wpsite.info/?p=9593</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object height="500" align="middle" width="630" id="reader" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="window" name="wmode"><param value="true" name="allowfullscreen"><param name="allowscriptaccess" value="always"><param value="http://wenku.baidu.com/static/flash/apireader.swf?docurl=http://wenku.baidu.com/play&amp;docid=a138f46ca45177232f60a21c&amp;title=%E5%9F%BA%E4%BA%8EWordPress%E5%B9%B3%E5%8F%B0%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%A8%A1%E6%9D%BF%E5%BC%80%E5%8F%91&amp;doctype=doc&amp;fpn=5&amp;npn=5&amp;readertype=external&#038;catal=0&amp;cdnurl=http://txt.wenku.baidu.com/play" name="movie"><embed height="500" align="middle" width="630" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="reader" src="http://wenku.baidu.com/static/flash/apireader.swf?docurl=http://wenku.baidu.com/play&amp;docid=a138f46ca45177232f60a21c&amp;title=%E5%9F%BA%E4%BA%8EWordPress%E5%B9%B3%E5%8F%B0%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%A8%A1%E6%9D%BF%E5%BC%80%E5%8F%91&amp;doctype=doc&amp;fpn=5&amp;npn=5&amp;readertype=external&#038;catal=0&amp;cdnurl=http://txt.wenku.baidu.com/play" allowfullscreen="true" wmode="window" allowscriptaccess="always" bgcolor="#FFFFFF" ver="9.0.0"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://wpsite.info/archives/9593/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

