<?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>WpFunc &#187; system</title>
	<atom:link href="http://wpfunc.com/tag/system/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Thu, 01 Dec 2011 01:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Some Plugins can break your blog, but you can change it!</title>
		<link>http://wpfunc.com/wordpress/some-plugins-can-break-your-blog-but-you-can-change-it.html</link>
		<comments>http://wpfunc.com/wordpress/some-plugins-can-break-your-blog-but-you-can-change-it.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 00:46:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[function_exists]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=194</guid>
		<description><![CDATA[Some plugins break your blog when you deactivate! This reason some plugins don&#8217;t have an &#8216;if&#8217; function with this short codes. This can break your blog. You can change it very simple. We will use if and function_exists tags when we call the plugin ord function. With this simple tags help us to work clean.
I will [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Some plugins break your blog when you deactivate! This reason some plugins don&#8217;t have an &#8216;if&#8217; function with this short codes. This can break your blog. You can change it very simple. We will use<strong> <span style="color: #ff0000;">if</span></strong> and <span style="color: #ff0000;"><strong>function_exists</strong></span> tags when we call the plugin ord function. With this simple tags help us to work clean.<span id="more-194"></span></p>
<p style="text-align: justify;">I will give to you a simple trick. I will use a example for explain that. Look at this code below. I Will use Related Post Plugin&#8217;s code.</p>
<p>Example:</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php related_posts(); ?&gt;</pre>
<p>With <strong>if</strong> and <strong>function_exists</strong>:</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php if(function_exists('related_posts')) { related_posts(); } ?&gt;</pre>
<p style="text-align: justify;">We use <strong>related_posts</strong> twice. But with this code the plugin don&#8217;t make any problems after deactivating. You can apply this code all plugins  which one have a short code like Related Post Plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/some-plugins-can-break-your-blog-but-you-can-change-it.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

