<?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 for ACE</title>
	<atom:link href="http://ace.dev.rain.hu/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ace.dev.rain.hu</link>
	<description>Category Exclusion, Content Exclusion, Advanced Content Excluder for WordPress</description>
	<lastBuildDate>Sat, 24 Jul 2010 12:48:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Jeremy</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-10562</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Sat, 24 Jul 2010 12:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-10562</guid>
		<description>I would like to understand if there is a setting that controls whether an excluded category appears in WP&#039;s Next and Previous links.

At the moment an excluded post appears there, and then gives an error if someone clicks on the link because it does not display in any section. I could enable display as single post, but I prefer to hide everywhere.

How do I exclude a category from Next/Previous links?

Thanks</description>
		<content:encoded><![CDATA[<p>I would like to understand if there is a setting that controls whether an excluded category appears in WP&#8217;s Next and Previous links.</p>
<p>At the moment an excluded post appears there, and then gives an error if someone clicks on the link because it does not display in any section. I could enable display as single post, but I prefer to hide everywhere.</p>
<p>How do I exclude a category from Next/Previous links?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Ulf Benjaminsson</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-9616</link>
		<dc:creator>Ulf Benjaminsson</dc:creator>
		<pubDate>Fri, 25 Jun 2010 21:57:02 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-9616</guid>
		<description>There&#039;s an issue with ACE ignoring the incoming value when filtering the &quot;excluded&quot;-parameter, and thus breaking wp_list_pages and wp_pages_menu I posted a fix over at pastebin: http://pastebin.com/7aq8hdiR

I&#039;ll try and paste the code here to: 
function ace_list_pages_excludes($excludes)
{
	$filter = ace_get_section();
    $posts_to_exclude = get_option(&quot;ace_page_sections_&quot;.$filter);
	$posts_to_exclude = array_merge($excludes, explode(&quot;,&quot;, $posts_to_exclude));
	return $posts_to_exclude;
}</description>
		<content:encoded><![CDATA[<p>There&#8217;s an issue with ACE ignoring the incoming value when filtering the &#8220;excluded&#8221;-parameter, and thus breaking wp_list_pages and wp_pages_menu I posted a fix over at pastebin: <a href="http://pastebin.com/7aq8hdiR" rel="nofollow">http://pastebin.com/7aq8hdiR</a></p>
<p>I&#8217;ll try and paste the code here to:<br />
function ace_list_pages_excludes($excludes)<br />
{<br />
	$filter = ace_get_section();<br />
    $posts_to_exclude = get_option(&#8220;ace_page_sections_&#8221;.$filter);<br />
	$posts_to_exclude = array_merge($excludes, explode(&#8220;,&#8221;, $posts_to_exclude));<br />
	return $posts_to_exclude;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE 1.4.3 by Ron</title>
		<link>http://ace.dev.rain.hu/2009/05/13/ace-143/comment-page-2/#comment-8409</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Mon, 10 May 2010 17:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=36#comment-8409</guid>
		<description>My IT department recently changed servers and PHP versions. As a results, Advanced Category Excluder was severely messing up my website. I am using WordPress 2.8.5. The version of PHP IT is using is 5.3.0. When I deactivate ACE, everything works again.

Here are the symptoms when ACE is activated:

1. The home page and each category page attempts to display every post, page and media item as it would display a post.

2. Every category page lists every post, page and media item, not just the posts for that category.

3. The home page and each category page lists lists multiple versions of the same post. The number of versions might correspond to the number of revisions to a post, perhaps including any auto-saves.

4. The dashboard lists 1,353 posts, 529 pages, 29 categories which is correct.

5. Underneath &quot;Edit Posts&quot; on the admin Edit Posts page, the correct numbers are listed for &quot;All&quot;, &quot;Published&quot; and &quot;Drafts&quot;. However, on the right-hand side of the &quot;Edit Posts&quot; page, it reads &quot;Displaying 1-15 of 2,768 posts (instead of 1,355).

6. The Edit Posts page lists not only all posts, but also every Page and Media Item. It also lists many pages multiple times consistent with the number of times the post appears (wrongly) on the home page or a category page.

7. When you try to conduct a search for a particular term in a post, it returns every post, page or media item, regardless of whether or not the term appears in the post, page or media item

8. The Edit Pages page, behaves like the Edit Posts page, correct identifying the number of pages under &quot;All&quot;, &quot;Published&quot;, &quot;Scheduled&quot;, etc., but reading &quot;Displaying 1-15 of 2,768 posts (instead of 1,355). It also lists all posts, pages and media items, but in alphabetical order.

9. The Media Library page does the same, correctly identifying the correct number of pages under &quot;All&quot;, and &quot;Images&quot; but reading &quot;Displaying 1-15 of 2,768 posts (instead of 1,355). It also lists all posts, pages and media items.

Any thoughts?</description>
		<content:encoded><![CDATA[<p>My IT department recently changed servers and PHP versions. As a results, Advanced Category Excluder was severely messing up my website. I am using WordPress 2.8.5. The version of PHP IT is using is 5.3.0. When I deactivate ACE, everything works again.</p>
<p>Here are the symptoms when ACE is activated:</p>
<p>1. The home page and each category page attempts to display every post, page and media item as it would display a post.</p>
<p>2. Every category page lists every post, page and media item, not just the posts for that category.</p>
<p>3. The home page and each category page lists lists multiple versions of the same post. The number of versions might correspond to the number of revisions to a post, perhaps including any auto-saves.</p>
<p>4. The dashboard lists 1,353 posts, 529 pages, 29 categories which is correct.</p>
<p>5. Underneath &#8220;Edit Posts&#8221; on the admin Edit Posts page, the correct numbers are listed for &#8220;All&#8221;, &#8220;Published&#8221; and &#8220;Drafts&#8221;. However, on the right-hand side of the &#8220;Edit Posts&#8221; page, it reads &#8220;Displaying 1-15 of 2,768 posts (instead of 1,355).</p>
<p>6. The Edit Posts page lists not only all posts, but also every Page and Media Item. It also lists many pages multiple times consistent with the number of times the post appears (wrongly) on the home page or a category page.</p>
<p>7. When you try to conduct a search for a particular term in a post, it returns every post, page or media item, regardless of whether or not the term appears in the post, page or media item</p>
<p>8. The Edit Pages page, behaves like the Edit Posts page, correct identifying the number of pages under &#8220;All&#8221;, &#8220;Published&#8221;, &#8220;Scheduled&#8221;, etc., but reading &#8220;Displaying 1-15 of 2,768 posts (instead of 1,355). It also lists all posts, pages and media items, but in alphabetical order.</p>
<p>9. The Media Library page does the same, correctly identifying the correct number of pages under &#8220;All&#8221;, and &#8220;Images&#8221; but reading &#8220;Displaying 1-15 of 2,768 posts (instead of 1,355). It also lists all posts, pages and media items.</p>
<p>Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Jon</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-8164</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 28 Apr 2010 06:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-8164</guid>
		<description>Is there an option in this version that allows for sticky posts in excluded categories to still be shown in the home section of the blog?

If there is none, can i know the specific plugin file to edit (and the specific lines of code if its not too much to ask :) ).

Thank you very much.

(to moderator: please delete the previous post and this line, i mispelled stick for sticky, thanks)</description>
		<content:encoded><![CDATA[<p>Is there an option in this version that allows for sticky posts in excluded categories to still be shown in the home section of the blog?</p>
<p>If there is none, can i know the specific plugin file to edit (and the specific lines of code if its not too much to ask <img src='http://ace.dev.rain.hu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>Thank you very much.</p>
<p>(to moderator: please delete the previous post and this line, i mispelled stick for sticky, thanks)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by DjZoNe</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-7970</link>
		<dc:creator>DjZoNe</dc:creator>
		<pubDate>Tue, 20 Apr 2010 12:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-7970</guid>
		<description>A way? :D
This plugin is for that purpose! :D</description>
		<content:encoded><![CDATA[<p>A way? <img src='http://ace.dev.rain.hu/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
This plugin is for that purpose! <img src='http://ace.dev.rain.hu/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Shawn</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-7969</link>
		<dc:creator>Shawn</dc:creator>
		<pubDate>Tue, 20 Apr 2010 12:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-7969</guid>
		<description>Is there a way to use this to hide a post on the main page for a certain category?

Thank you</description>
		<content:encoded><![CDATA[<p>Is there a way to use this to hide a post on the main page for a certain category?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by DjZoNe</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-7862</link>
		<dc:creator>DjZoNe</dc:creator>
		<pubDate>Thu, 15 Apr 2010 14:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-7862</guid>
		<description>Please be more precise, WHAT is not working?
Because I use it on many WP 2.9.2 installs.</description>
		<content:encoded><![CDATA[<p>Please be more precise, WHAT is not working?<br />
Because I use it on many WP 2.9.2 installs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Paul</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-7861</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Thu, 15 Apr 2010 14:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-7861</guid>
		<description>WP 2.9.2 does not work with ACE 1.4.3 (((((((((((((</description>
		<content:encoded><![CDATA[<p>WP 2.9.2 does not work with ACE 1.4.3 (((((((((((((</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Hgrg</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-7843</link>
		<dc:creator>Hgrg</dc:creator>
		<pubDate>Wed, 14 Apr 2010 16:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-7843</guid>
		<description>Hy
I&#039;ve got problems with the plugin under 3.0ß1 its not poppin any errors, its just not excluding the category&#039;s posts :(
I&#039;d be glad to know when its next upcoming version is gona be released.
Thanks for your work!</description>
		<content:encoded><![CDATA[<p>Hy<br />
I&#8217;ve got problems with the plugin under 3.0ß1 its not poppin any errors, its just not excluding the category&#8217;s posts <img src='http://ace.dev.rain.hu/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
I&#8217;d be glad to know when its next upcoming version is gona be released.<br />
Thanks for your work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ACE is not dead &#8211; 1.5 is coming by Lisa</title>
		<link>http://ace.dev.rain.hu/2010/02/04/ace-is-not-dead-15-is-coming/comment-page-1/#comment-7257</link>
		<dc:creator>Lisa</dc:creator>
		<pubDate>Wed, 24 Mar 2010 19:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://ace.dev.rain.hu/?p=38#comment-7257</guid>
		<description>So, what then is the actual way it works?
What is the answer to this question:
“If I post in one category that is hidden, and another one as well, which is not, What will happen?&quot;</description>
		<content:encoded><![CDATA[<p>So, what then is the actual way it works?<br />
What is the answer to this question:<br />
“If I post in one category that is hidden, and another one as well, which is not, What will happen?&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
