<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: remove page name from home, contact etc but not blog</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 05:32:43 +0000</pubDate>

<item>
<title>helgatheviking on "remove page name from home, contact etc but not blog"</title>
<link>http://themeshaper.com/forums/topic/remove-page-name-from-home-contact-etc-but-not-blog#post-26777</link>
<pubDate>Thu, 03 May 2012 04:09:01 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26777@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you can condense the logic a little, but that is exactly how to use a filter.  congrats, now you can filter anything!&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_title($posttitle) {
    if (is_page() &#124;&#124; is_404()) {
        return &#38;#39;&#38;#39;;
    } else {
    	return $posttitle;
    }
}
add_filter(&#38;#39;thematic_postheader_posttitle&#38;#39;, &#38;#39;remove_title&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Colleen on "remove page name from home, contact etc but not blog"</title>
<link>http://themeshaper.com/forums/topic/remove-page-name-from-home-contact-etc-but-not-blog#post-26774</link>
<pubDate>Thu, 03 May 2012 01:29:37 +0000</pubDate>
<dc:creator>Colleen</dc:creator>
<guid isPermaLink="false">26774@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Stop looking I found the answer.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function remove_title($posttitle) {
    if (is_page()) {
        return &#38;#39;&#38;#39;;
    } elseif (is_404()) {
        return &#38;#39;&#38;#39;;
    } else {
    		return $posttitle;
    }
}
add_filter(&#38;#39;thematic_postheader_posttitle&#38;#39;, &#38;#39;remove_title&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Colleen on "remove page name from home, contact etc but not blog"</title>
<link>http://themeshaper.com/forums/topic/remove-page-name-from-home-contact-etc-but-not-blog#post-26772</link>
<pubDate>Thu, 03 May 2012 00:49:07 +0000</pubDate>
<dc:creator>Colleen</dc:creator>
<guid isPermaLink="false">26772@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, Is there some coding that can be put into the function.php that will remove the page name from a static home, contact page etc but not from the blog?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
