<?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: Hidden 404 Errors with WordPress Plugin Pages</title>
	<atom:link href="http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 06 Feb 2012 13:58:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jason</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-10495</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Mon, 14 Feb 2011 19:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-10495</guid>
		<description>@Chris, maybe I&#039;m being dense, but could you be more specific about what you are trying to do?

If you have a page that is throwing a 404, put the $isapage code at the top of that php page. If you don&#039;t know what php page is serving that &quot;page&quot;, you need to figure that out.

The ssp_status_filter plugin should go in wp-content/themes/{your theme}/functions.php</description>
		<content:encoded><![CDATA[<p>@Chris, maybe I&#8217;m being dense, but could you be more specific about what you are trying to do?</p>
<p>If you have a page that is throwing a 404, put the $isapage code at the top of that php page. If you don&#8217;t know what php page is serving that &#8220;page&#8221;, you need to figure that out.</p>
<p>The ssp_status_filter plugin should go in wp-content/themes/{your theme}/functions.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-10493</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Mon, 14 Feb 2011 14:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-10493</guid>
		<description>@Chris, what page is throwing the 404 error for you?

You could put the ssp_status_filter($s) function in your themes functions.php file. The $isapage code needs to go at the top of the page throwing the 404.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>@Chris, what page is throwing the 404 error for you?</p>
<p>You could put the ssp_status_filter($s) function in your themes functions.php file. The $isapage code needs to go at the top of the page throwing the 404.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Countey</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-10480</link>
		<dc:creator>Chris Countey</dc:creator>
		<pubDate>Sun, 13 Feb 2011 21:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-10480</guid>
		<description>Thanks for writing this, but I have a question about where to put the code in a BP install. There are so many custom files that go outside WP and I&#039;m not sure where to start. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for writing this, but I have a question about where to put the code in a BP install. There are so many custom files that go outside WP and I&#8217;m not sure where to start. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Chidike &#124; Motivatory</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-8486</link>
		<dc:creator>Richard Chidike &#124; Motivatory</dc:creator>
		<pubDate>Sun, 15 Aug 2010 09:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-8486</guid>
		<description>Thank God i am able to find this post. I have been searching for months on how to fix not found errors on my blog and this post has come to my aid.</description>
		<content:encoded><![CDATA[<p>Thank God i am able to find this post. I have been searching for months on how to fix not found errors on my blog and this post has come to my aid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LucasMS</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-7772</link>
		<dc:creator>LucasMS</dc:creator>
		<pubDate>Fri, 25 Jun 2010 03:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-7772</guid>
		<description>I just used on top of my plugin pages:

status_header(200);

Since the PHP built-in header() function will only use the last status set.</description>
		<content:encoded><![CDATA[<p>I just used on top of my plugin pages:</p>
<p>status_header(200);</p>
<p>Since the PHP built-in header() function will only use the last status set.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jackson</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-1641</link>
		<dc:creator>Jackson</dc:creator>
		<pubDate>Thu, 29 Oct 2009 19:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-1641</guid>
		<description>Thanks a lot!
This really beats editing wordpress its self when you can just place this all in your themes functions.php</description>
		<content:encoded><![CDATA[<p>Thanks a lot!<br />
This really beats editing wordpress its self when you can just place this all in your themes functions.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Latest wordpress plugin news &#8211; Stranger Studios Blog &#124; Portfolio &#124; Hidden 404 Errors with &#8230; Customer Reviews &#124; WP Review Theme Test Blog</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-681</link>
		<dc:creator>Latest wordpress plugin news &#8211; Stranger Studios Blog &#124; Portfolio &#124; Hidden 404 Errors with &#8230; Customer Reviews &#124; WP Review Theme Test Blog</dc:creator>
		<pubDate>Sun, 30 Aug 2009 02:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-681</guid>
		<description>[...] Stranger Studios Blog &#124; Portfolio &#124; Hidden 404 Errors with &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Stranger Studios Blog | Portfolio | Hidden 404 Errors with &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://www.strangerstudios.com/blog/2009/08/hidden-404-errors-with-wordpress-plugin-pages/#comment-500</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Wed, 19 Aug 2009 12:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.strangerstudios.com/blog/?p=46#comment-500</guid>
		<description>Thank you!  This helped a tremendous amount.  I&#039;m integrating WP and BB and was having trouble with 404 errors on some of my WP pages, and also some of my BB pages due to deep integration.  Your message was extremely timely and helpful, and helped me fix my problem after I spent an hour or so looking at it last night...

Thanks again!
-Dustin</description>
		<content:encoded><![CDATA[<p>Thank you!  This helped a tremendous amount.  I&#8217;m integrating WP and BB and was having trouble with 404 errors on some of my WP pages, and also some of my BB pages due to deep integration.  Your message was extremely timely and helpful, and helped me fix my problem after I spent an hour or so looking at it last night&#8230;</p>
<p>Thanks again!<br />
-Dustin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

