<?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; page</title>
	<atom:link href="http://wpfunc.com/tag/page/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>How to change your Post/Page title with a custom field?</title>
		<link>http://wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html</link>
		<comments>http://wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html#comments</comments>
		<pubDate>Sun, 20 Sep 2009 23:57:22 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom title]]></category>
		<category><![CDATA[customizable titles]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=176</guid>
		<description><![CDATA[With this tip you can change and make post/page title customizable. That&#8217;s is so simple. Just copy this code and paste your single.php and page.php or where you want to change title. After that you have to create a new custom field which name is &#8220;custom-title&#8220;! After that you can write your custom title in [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">With this tip you can change and make post/page title customizable. That&#8217;s is so simple. Just copy this code and paste your <strong>single.php</strong> and <strong>page.php</strong> or where you want to change title. After that you have to create a new custom field which name is &#8220;<strong><span style="color: #ff0000;">custom-title</span></strong>&#8220;! After that you can write your custom title in this field.<span id="more-176"></span></p>
<h2>Here is the code;</h2>
<pre class="brush: plain; title: ; notranslate">&lt;?php $title = get_post_meta($post-&gt;ID, &quot;custom-title&quot;, true);
if ($title != &quot;&quot;) {
echo &quot;&lt;h1&gt;&quot;.$title.&quot;&lt;/h1&gt;&quot;;
} else { ?&gt;
&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
&lt;?php } ?&gt;
</pre>
<p>That&#8217;s All! Have a nice day.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/how-to-change-your-post-page-title-with-a-custom-field.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Did you Bored with Widgetized Pages?</title>
		<link>http://wpfunc.com/wordpress/did-you-bored-with-widgetized-pages.html</link>
		<comments>http://wpfunc.com/wordpress/did-you-bored-with-widgetized-pages.html#comments</comments>
		<pubDate>Wed, 22 Jul 2009 06:00:13 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[single]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[widgetize]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=86</guid>
		<description><![CDATA[If your answer is &#8216;yes&#8217;, you can change it without any theme edit. You can apply this on functions.php :) After that you have non-widget pages. Widgets are useful but sometimes many publishers/bloggers are want full-sized pages. If you&#8217;re one of them, you can check this code. Lets begin&#8230;

We will change functions.php. Make a backup [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If your answer is &#8216;yes&#8217;, you can change it without any theme edit. You can apply this on functions.php :) After that you have non-widget pages. Widgets are useful but sometimes many publishers/bloggers are want full-sized pages. If you&#8217;re one of them, you can check this code. Lets begin&#8230;<span id="more-86"></span></p>
<p style="text-align: justify;"><span class="alert"><strong>With this function/recipe you will change your core functions.php file. If you have no information about WordPress coding -so you&#8217;re a newbie- you can get some support if you send a mail to me. Don&#8217;t touch your functions.php if you don&#8217;t know about WordPress</strong></span></p>
<p>We will change <span style="color: #ff0000;"><em><strong>functions.php</strong></em></span>. Make a backup and be careful.</p>
<p>Here is the code;</p>
<pre class="brush: plain; title: ; notranslate">&lt;?php
 add_filter( 'sidebars_widgets', 'disable_all_widgets' );
 function disable_all_widgets( $sidebars_widgets ) {
 if ( is_home() )
 $sidebars_widgets = array( false );
 return $sidebars_widgets;
 }
?&gt;</pre>
<p style="text-align: justify;"><strong>Add this lines to functions.php. When you&#8217;re on homepage you have widgetized areas, but you&#8217;re in pages/posts there is no widget!</strong></p>
<p>That&#8217;s all! Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/did-you-bored-with-widgetized-pages.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

