<?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: Quick Tip #3 - Writing your own &#8216;is_page&#8217; function similar to the one in WordPress</title>
	<atom:link href="http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/</link>
	<description>web design &#124; blog &#124; madness</description>
	<pubDate>Fri, 10 Sep 2010 08:37:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nouveller</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-2849</link>
		<dc:creator>Nouveller</dc:creator>
		<pubDate>Mon, 18 Jan 2010 08:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-2849</guid>
		<description>Great! Glad you got it sorted.</description>
		<content:encoded><![CDATA[<p>Great! Glad you got it sorted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-2843</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Sun, 17 Jan 2010 20:55:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-2843</guid>
		<description>Thanks Benjamin, I just moved the entire title tag including you PHP snippet from above onto my page befor my require (include) header. It works perfect!</description>
		<content:encoded><![CDATA[<p>Thanks Benjamin, I just moved the entire title tag including you PHP snippet from above onto my page befor my require (include) header. It works perfect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nouveller</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-2841</link>
		<dc:creator>Nouveller</dc:creator>
		<pubDate>Sun, 17 Jan 2010 11:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-2841</guid>
		<description>Instead of defining $page in the page title just add it above you're header.php include, that should sort it out. If you're still having problems, send me a message using my contact form.</description>
		<content:encoded><![CDATA[<p>Instead of defining $page in the page title just add it above you&#8217;re header.php include, that should sort it out. If you&#8217;re still having problems, send me a message using my contact form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-2839</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Sat, 16 Jan 2010 22:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-2839</guid>
		<description>Hey Benjamin, thanks for this helpful little post. It's exactly what I was looking for. I do have a problem though and I was wandering if you'd help me solve it? 

I pull my header[dot]php with the PHP function requier into all my pages. Now all of my pages are having the same name. 

I'm not good enough to find a work around myself. Could you help me with a quick fix? Many thanks Marc</description>
		<content:encoded><![CDATA[<p>Hey Benjamin, thanks for this helpful little post. It&#8217;s exactly what I was looking for. I do have a problem though and I was wandering if you&#8217;d help me solve it? </p>
<p>I pull my header[dot]php with the PHP function requier into all my pages. Now all of my pages are having the same name. </p>
<p>I&#8217;m not good enough to find a work around myself. Could you help me with a quick fix? Many thanks Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xs</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-2718</link>
		<dc:creator>Xs</dc:creator>
		<pubDate>Sun, 20 Dec 2009 15:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-2718</guid>
		<description>function is_page($current_page, $page, $title){

if($current_page == $page)
  echo $title;
 
}



This function could save you a bit more of time ;)</description>
		<content:encoded><![CDATA[<p>function is_page($current_page, $page, $title){</p>
<p>if($current_page == $page)<br />
  echo $title;</p>
<p>}</p>
<p>This function could save you a bit more of time <img src='http://www.nouveller.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JD Hartley</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-151</link>
		<dc:creator>JD Hartley</dc:creator>
		<pubDate>Thu, 18 Jun 2009 02:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-151</guid>
		<description>Looks great!

You could even simplify the title tag



To this:



Thanks for the code, Benjamin.

-JD</description>
		<content:encoded><![CDATA[<p>Looks great!</p>
<p>You could even simplify the title tag</p>
<p>To this:</p>
<p>Thanks for the code, Benjamin.</p>
<p>-JD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Tips From Twitter, Digest #1 &#124; Weblog Tools Collection</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-150</link>
		<dc:creator>WordPress Tips From Twitter, Digest #1 &#124; Weblog Tools Collection</dc:creator>
		<pubDate>Thu, 18 Jun 2009 01:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-150</guid>
		<description>[...] Writing your own is_page function – By default WordPress allows you to check whether users are on a page using is_page() function, these tips will help you determine which exact page users are on currently and display appropriate messages to them. [...]</description>
		<content:encoded><![CDATA[<p>[...] Writing your own is_page function – By default WordPress allows you to check whether users are on a page using is_page() function, these tips will help you determine which exact page users are on currently and display appropriate messages to them. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liam Goodacre</title>
		<link>http://www.nouveller.com/wordpress/quick-tip-3-writing-your-own-is_page-function-similar-to-the-one-in-wordpress/comment-page-1/#comment-145</link>
		<dc:creator>Liam Goodacre</dc:creator>
		<pubDate>Wed, 17 Jun 2009 20:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.nouveller.com/?p=861#comment-145</guid>
		<description>Cool, nice tip :)
used something similar to this awhile back, where I used a 'select' to determine which page content to include, in relation to what the current page title was.

--Liam Goodacre</description>
		<content:encoded><![CDATA[<p>Cool, nice tip <img src='http://www.nouveller.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
used something similar to this awhile back, where I used a &#8217;select&#8217; to determine which page content to include, in relation to what the current page title was.</p>
<p>&#8211;Liam Goodacre</p>
]]></content:encoded>
	</item>
</channel>
</rss>
