<?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"
	>
<channel>
	<title>Comments on: WordPress: how to hide other users&#039; posts in admin panel</title>
	<atom:link href="http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/feed/" rel="self" type="application/rss+xml" />
	<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/</link>
	<description>Digging the watery grave and talking about PHP, Rails and tech stuff..</description>
	<pubDate>Thu, 20 Nov 2008 20:12:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Shyam Gupta</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27331</link>
		<dc:creator>Shyam Gupta</dc:creator>
		<pubDate>Sun, 03 Aug 2008 14:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27331</guid>
		<description>Any help on this for v2.6. Thanks.</description>
		<content:encoded><![CDATA[<p>Any help on this for v2.6. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27182</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Tue, 10 Jun 2008 15:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27182</guid>
		<description>thanks ad,

and sorry about the site garbling posts :( Can't get my hands on the problem (either busy or forgetting, or both)</description>
		<content:encoded><![CDATA[<p>thanks ad,</p>
<p>and sorry about the site garbling posts :( Can&#039;t get my hands on the problem (either busy or forgetting, or both)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ad</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27181</link>
		<dc:creator>ad</dc:creator>
		<pubDate>Tue, 10 Jun 2008 15:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27181</guid>
		<description>Your site garbled my comment.  

Essentially, just put the code:

&lt;code&gt;
if ($userdata-&#62;user_levelID);
}
&lt;/code&gt;

On line 14 of edit-post-rows.php</description>
		<content:encoded><![CDATA[<p>Your site garbled my comment.  </p>
<p>Essentially, just put the code:</p>
<p><code><br />
if ($userdata-&gt;user_levelID);<br />
}<br />
</code></p>
<p>On line 14 of edit-post-rows.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ad</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27180</link>
		<dc:creator>ad</dc:creator>
		<pubDate>Tue, 10 Jun 2008 15:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27180</guid>
		<description>In v2.3.3 you need to edit edit-post-rows.php and go to line 14, and...

BENEATH where it says;
&lt;code&gt;

&lt;/code&gt;

and ABOVE where it says;
&lt;code&gt;
&#60;?php
if ( have_posts() ) {
&lt;/code&gt;

Put the line;

&lt;code&gt;
if ($userdata-&#62;user_levelID);
}
&lt;/code&gt;

So, altogether you should have;

&lt;code&gt;

user_levelID);
}

if ( have_posts() ) {
&lt;/code&gt;

I found this to work on v2.3.3 but not sure about later releases.</description>
		<content:encoded><![CDATA[<p>In v2.3.3 you need to edit edit-post-rows.php and go to line 14, and&#8230;</p>
<p>BENEATH where it says;<br />
<code></p>
<p></code></p>
<p>and ABOVE where it says;<br />
<code><br />
&lt;?php<br />
if ( have_posts() ) {<br />
</code></p>
<p>Put the line;</p>
<p><code><br />
if ($userdata-&gt;user_levelID);<br />
}<br />
</code></p>
<p>So, altogether you should have;</p>
<p><code></p>
<p>user_levelID);<br />
}</p>
<p>if ( have_posts() ) {<br />
</code></p>
<p>I found this to work on v2.3.3 but not sure about later releases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27078</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Tue, 08 Apr 2008 02:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27078</guid>
		<description>Thanks for the info James!</description>
		<content:encoded><![CDATA[<p>Thanks for the info James!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27075</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 07 Apr 2008 20:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27075</guid>
		<description>Never mind... all that had to be done is removing "$posts = " part in that query line... works with 2.5 now!</description>
		<content:encoded><![CDATA[<p>Never mind&#8230; all that had to be done is removing &#034;$posts = &#034; part in that query line&#8230; works with 2.5 now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27074</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 07 Apr 2008 20:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27074</guid>
		<description>This doesn't work on WP2.5 unfortunately... they've changed the query in those files, so any way to update this?</description>
		<content:encoded><![CDATA[<p>This doesn&#039;t work on WP2.5 unfortunately&#8230; they&#039;ve changed the query in those files, so any way to update this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toul</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27022</link>
		<dc:creator>toul</dc:creator>
		<pubDate>Tue, 25 Mar 2008 16:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27022</guid>
		<description>okay....i got it....sry. for posting ;)</description>
		<content:encoded><![CDATA[<p>okay&#8230;.i got it&#8230;.sry. for posting ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toul</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27021</link>
		<dc:creator>toul</dc:creator>
		<pubDate>Tue, 25 Mar 2008 13:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-27021</guid>
		<description>okay...i got wp 2.3.3 and i did not find the right file...maybe someone can help me?</description>
		<content:encoded><![CDATA[<p>okay&#8230;i got wp 2.3.3 and i did not find the right file&#8230;maybe someone can help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://macdiggs.com/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-26448</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Sat, 01 Dec 2007 10:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2006/09/11/wordpress-how-to-hide-other-users-posts-in-admin-panel/#comment-26448</guid>
		<description>@fod

thanks for the info! I'm sure it'll help other who need similar functionality on newer versions of WordPress.</description>
		<content:encoded><![CDATA[<p>@fod</p>
<p>thanks for the info! I&#039;m sure it&#039;ll help other who need similar functionality on newer versions of WordPress.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
