<?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>Comments on: How You Can Use WordPress Functions to Run a Smarter Blog</title>
	<atom:link href="http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php</link>
	<description>Best Damn Blog on the Planet</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:40:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Using Facebook Comments with Wordpress » Alpha Kilo Hotel</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-185803</link>
		<dc:creator>Using Facebook Comments with Wordpress » Alpha Kilo Hotel</dc:creator>
		<pubDate>Thu, 29 Dec 2011 02:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-185803</guid>
		<description>[...] that you could probably do this same thing with any WordPress theme, but you&#039;d first have include a custom PHP file with this function inside [...]</description>
		<content:encoded><![CDATA[<p>[...] that you could probably do this same thing with any WordPress theme, but you&#039;d first have include a custom PHP file with this function inside [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-185631</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Thu, 08 Dec 2011 15:48:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-185631</guid>
		<description>Thanks Chris! It looks like both Content Filter and Shortcodes would do the trick.
Cheers.</description>
		<content:encoded><![CDATA[<p>Thanks Chris! It looks like both Content Filter and Shortcodes would do the trick.<br />
Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Pearson</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-185630</link>
		<dc:creator>Chris Pearson</dc:creator>
		<pubDate>Thu, 08 Dec 2011 15:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-185630</guid>
		<description>Joel, to make your function run in the text (aka. the content), you&#039;ll need to use the &lt;strong&gt;content filter&lt;/strong&gt;.

When you use a filter, your function must &lt;strong&gt;return output&lt;/strong&gt; rather than echoing it.

Here&#039;s a reference page on the &lt;a href=&quot;http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content&quot; rel=&quot;nofollow&quot;&gt;content filter in the WordPress codex&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Joel, to make your function run in the text (aka. the content), you&#8217;ll need to use the <strong>content filter</strong>.</p>
<p>When you use a filter, your function must <strong>return output</strong> rather than echoing it.</p>
<p>Here&#8217;s a reference page on the <a href="http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content" rel="nofollow">content filter in the WordPress codex</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-185625</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Wed, 07 Dec 2011 15:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-185625</guid>
		<description>Chris, thanks for your guidance! I&#039;m somewhat a Wordpress newbie, but I&#039;ve included my function in my plugin and it works when called from pages.php for example, but I&#039;d really like to be able to call it from INSIDE the post/page, i.e. from the text area that the author types in. Any help you could provide would be very helpful!</description>
		<content:encoded><![CDATA[<p>Chris, thanks for your guidance! I&#8217;m somewhat a WordPress newbie, but I&#8217;ve included my function in my plugin and it works when called from pages.php for example, but I&#8217;d really like to be able to call it from INSIDE the post/page, i.e. from the text area that the author types in. Any help you could provide would be very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhaskar</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-185420</link>
		<dc:creator>Bhaskar</dc:creator>
		<pubDate>Sat, 22 Oct 2011 21:57:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-185420</guid>
		<description>Another way to achieve the same end result in wordpress is to create  a separate folder named &quot;mu-plugins&quot; in the wp-content folder. (mu stands for Must use plugins and they need not even be activated like other plugins)

Include all functions in a &quot;my-custom-functions.php&quot; file inside this folder

This way you can do away with the need for including include_once (TEMPLATEPATH . &#039;/user-functions.php&#039;); 
code in the function.php

Wordpress core functionailities draw up all functions listed in the mu-plugins folder</description>
		<content:encoded><![CDATA[<p>Another way to achieve the same end result in wordpress is to create  a separate folder named &#8220;mu-plugins&#8221; in the wp-content folder. (mu stands for Must use plugins and they need not even be activated like other plugins)</p>
<p>Include all functions in a &#8220;my-custom-functions.php&#8221; file inside this folder</p>
<p>This way you can do away with the need for including include_once (TEMPLATEPATH . &#8216;/user-functions.php&#8217;);<br />
code in the function.php</p>
<p>WordPress core functionailities draw up all functions listed in the mu-plugins folder</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius Nielsen</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-184478</link>
		<dc:creator>Marius Nielsen</dc:creator>
		<pubDate>Thu, 07 Jul 2011 15:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-184478</guid>
		<description>Hi, I&#039;d like to try and get this to work, but for some reason it doesn&#039;t. I started to use wordpress just this week, so everything is new to me. 

I&#039;ve got the user-functions.php file up and running with the example function. I&#039;ve set the include_once in functions.php. But when I go to one of the blog posts perma link all I get is a blank page (except for the menu and header. Everything from where the blogpost should have been is gone.

I suspect the include line is incorrect for some reason, maybe it can&#039;t get the TEMPLATEPATH? If so, how should I definde this myself?</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;d like to try and get this to work, but for some reason it doesn&#8217;t. I started to use wordpress just this week, so everything is new to me. </p>
<p>I&#8217;ve got the user-functions.php file up and running with the example function. I&#8217;ve set the include_once in functions.php. But when I go to one of the blog posts perma link all I get is a blank page (except for the menu and header. Everything from where the blogpost should have been is gone.</p>
<p>I suspect the include line is incorrect for some reason, maybe it can&#8217;t get the TEMPLATEPATH? If so, how should I definde this myself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sumit</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-184448</link>
		<dc:creator>Sumit</dc:creator>
		<pubDate>Mon, 04 Jul 2011 05:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-184448</guid>
		<description>hello, i wanted to show three latest posts on my home page is that any one can help me how i can achieve this.</description>
		<content:encoded><![CDATA[<p>hello, i wanted to show three latest posts on my home page is that any one can help me how i can achieve this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanh Tung</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-183996</link>
		<dc:creator>Thanh Tung</dc:creator>
		<pubDate>Sun, 19 Jun 2011 15:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-183996</guid>
		<description>Thanks for your soon reply !</description>
		<content:encoded><![CDATA[<p>Thanks for your soon reply !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Pearson</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-183991</link>
		<dc:creator>Chris Pearson</dc:creator>
		<pubDate>Sun, 19 Jun 2011 15:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-183991</guid>
		<description>Thanh, as it turns out, I don&#039;t offer support for WordPress themes besides Thesis anymore. But I &lt;em&gt;do&lt;/em&gt; offer support for issues like this if you&#039;re a Thesis user (in the &lt;a href=&quot;http://diythemes.com/&quot; rel=&quot;nofollow&quot;&gt;&lt;strong&gt;DIY&lt;/strong&gt;themes forums&lt;/a&gt;).</description>
		<content:encoded><![CDATA[<p>Thanh, as it turns out, I don&#8217;t offer support for WordPress themes besides Thesis anymore. But I <em>do</em> offer support for issues like this if you&#8217;re a Thesis user (in the <a href="http://diythemes.com/" rel="nofollow"><strong>DIY</strong>themes forums</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanh Tung</title>
		<link>http://www.pearsonified.com/2008/05/how-to-use-wordpress-functions.php#comment-183990</link>
		<dc:creator>Thanh Tung</dc:creator>
		<pubDate>Sun, 19 Jun 2011 15:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.pearsonified.com/?p=294#comment-183990</guid>
		<description>Hi @Pearson,
i want to add a new widget called &quot;slidebar&quot; on the right of single post, like a sidebar. 
firstly, i created a php file call &quot;slidebar.php&quot;, and located it in the theme folder. Then i activated it as i have read this article by &quot; include_once (TEMPLATEPATH . &#039;/slidebar.php&#039;);&quot;.
finally, i placed the call function: &quot;&quot; --&gt; Fatal error: Call to undefined function slidebar(). 
Can you help me to fix these mess ?</description>
		<content:encoded><![CDATA[<p>Hi @Pearson,<br />
i want to add a new widget called &#8220;slidebar&#8221; on the right of single post, like a sidebar.<br />
firstly, i created a php file call &#8220;slidebar.php&#8221;, and located it in the theme folder. Then i activated it as i have read this article by &#8221; include_once (TEMPLATEPATH . &#8216;/slidebar.php&#8217;);&#8221;.<br />
finally, i placed the call function: &#8220;&#8221; &#8211;&gt; Fatal error: Call to undefined function slidebar().<br />
Can you help me to fix these mess ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using apc (User agent is rejected)
Database Caching 1/4 queries in 0.003 seconds using apc
Object Caching 267/270 objects using disk: basic
Content Delivery Network via cdn.pearsonified.com

Served from: www.pearsonified.com @ 2012-02-09 13:55:24 -->
