<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>《插件开发全攻略（04）---WordPress插件的结构》的评论</title>
	<atom:link href="http://sexywp.com/how-to-write-a-wp-plugin-04.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm</link>
	<description>Building another myself~~</description>
	<lastBuildDate>Sat, 04 Feb 2012 23:11:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>作者：分享一份详细的wordpress插件开发教程 &#124; The house of David</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-4378</link>
		<dc:creator>分享一份详细的wordpress插件开发教程 &#124; The house of David</dc:creator>
		<pubDate>Sun, 11 Sep 2011 00:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-4378</guid>
		<description>[...] 插件开发全攻略（04）&#8212;WordPress插件的结构 [...]</description>
		<content:encoded><![CDATA[<p>[...] 插件开发全攻略（04）&#8212;WordPress插件的结构 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：寒林</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-4227</link>
		<dc:creator>寒林</dc:creator>
		<pubDate>Thu, 07 Jul 2011 08:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-4227</guid>
		<description>不错，学习了。感觉你那个插件开发实例的文章不错，对于学习有很大帮助。</description>
		<content:encoded><![CDATA[<p>不错，学习了。感觉你那个插件开发实例的文章不错，对于学习有很大帮助。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：黑豆</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3754</link>
		<dc:creator>黑豆</dc:creator>
		<pubDate>Tue, 28 Dec 2010 08:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3754</guid>
		<description>谢谢分享 ！！但是能不能具体一点啊  讲一个例子？？</description>
		<content:encoded><![CDATA[<p>谢谢分享 ！！但是能不能具体一点啊  讲一个例子？？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：CC</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3594</link>
		<dc:creator>CC</dc:creator>
		<pubDate>Wed, 08 Dec 2010 04:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3594</guid>
		<description>明白了，感谢大神的详细指点！呵呵.
                                                                                      ----另外一个海贼fan(&gt;=6years)</description>
		<content:encoded><![CDATA[<p>明白了，感谢大神的详细指点！呵呵.<br />
                                                                                      ----另外一个海贼fan(&gt;=6years)</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Charles</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3593</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Wed, 08 Dec 2010 04:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3593</guid>
		<description>我不知道你要做怎样的应用，不过，我一般处理这种情况，我会让外部应用post到  /wp-admin/admin-ajax.php， 然后hook到 wp_ajax_nopriv_动作名 这个action上，动作名可以随便取。post的时候要带一个参数，参数名 action，参数值是 “动作名”。</description>
		<content:encoded><![CDATA[<p>我不知道你要做怎样的应用，不过，我一般处理这种情况，我会让外部应用post到  /wp-admin/admin-ajax.php， 然后hook到 wp_ajax_nopriv_动作名 这个action上，动作名可以随便取。post的时候要带一个参数，参数名 action，参数值是 “动作名”。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：CC</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3581</link>
		<dc:creator>CC</dc:creator>
		<pubDate>Mon, 06 Dec 2010 10:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3581</guid>
		<description>你好！你的插件很潮的说，感觉看了有很大的帮助。
大神，想请教下，如果我想在插件中接收别人Post过来的数据，我应该用什么action或者filter来触发这个事件捏？</description>
		<content:encoded><![CDATA[<p>你好！你的插件很潮的说，感觉看了有很大的帮助。<br />
大神，想请教下，如果我想在插件中接收别人Post过来的数据，我应该用什么action或者filter来触发这个事件捏？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：风来西林</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3430</link>
		<dc:creator>风来西林</dc:creator>
		<pubDate>Wed, 29 Sep 2010 02:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3430</guid>
		<description>与楼上的同感！</description>
		<content:encoded><![CDATA[<p>与楼上的同感！</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：邓三皮</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3318</link>
		<dc:creator>邓三皮</dc:creator>
		<pubDate>Tue, 20 Jul 2010 06:47:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3318</guid>
		<description>翻译得很好！谢谢分享！</description>
		<content:encoded><![CDATA[<p>翻译得很好！谢谢分享！</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：cailai</title>
		<link>http://sexywp.com/how-to-write-a-wp-plugin-04.htm/comment-page-1#comment-3174</link>
		<dc:creator>cailai</dc:creator>
		<pubDate>Sat, 17 Apr 2010 05:27:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.charlestang.cn/?p=72#comment-3174</guid>
		<description>还是自己看插件代码算了，</description>
		<content:encoded><![CDATA[<p>还是自己看插件代码算了，</p>
]]></content:encoded>
	</item>
</channel>
</rss>

