<?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 Brandon Allen</title>
	<atom:link href="http://brandonallen.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://brandonallen.org</link>
	<description>Life, Liberty, and the pursuit of Awesome...</description>
	<lastBuildDate>Tue, 03 Jan 2012 14:45:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Edit Author Slug 0.8 and Beyond by Mike Kelly</title>
		<link>http://brandonallen.org/2011/12/15/edit-author-slug-0-8-and-beyond/comment-page-1/#comment-1437</link>
		<dc:creator>Mike Kelly</dc:creator>
		<pubDate>Tue, 03 Jan 2012 14:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=107#comment-1437</guid>
		<description>Hi,
Thanks for the Author Slug plugin - I have used it to set up Buddypress where usernames were not permitted to be visible. I&#039;m using your plugin to help create firstnamelastname type ids in the member page urls.
My real question is about your work on BP profile privacy. I came across a thread where you were discussing a plugin to give activity and profile privacy options. This is a feature we have had requested from users and I wondered how far you had got with it?
Best wishes,
Mike</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the Author Slug plugin &#8211; I have used it to set up Buddypress where usernames were not permitted to be visible. I&#8217;m using your plugin to help create firstnamelastname type ids in the member page urls.<br />
My real question is about your work on BP profile privacy. I came across a thread where you were discussing a plugin to give activity and profile privacy options. This is a feature we have had requested from users and I wondered how far you had got with it?<br />
Best wishes,<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.8 and Beyond by Brandon Allen</title>
		<link>http://brandonallen.org/2011/12/15/edit-author-slug-0-8-and-beyond/comment-page-1/#comment-1355</link>
		<dc:creator>Brandon Allen</dc:creator>
		<pubDate>Fri, 16 Dec 2011 17:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=107#comment-1355</guid>
		<description>It&#039;s possible, and it was something that was supported by Edit Author Slug for about one version (the post to which you link says that it&#039;s no longer supported). However, it comes with many risks, so I removed it because I didn&#039;t want to deal with support requests on that topic. The code below can be placed in your theme&#039;s functions.php or in a plugin, and will remove the author base completely. Once you&#039;ve added the code to one of the aforementioned locations, you&#039;ll need to go the Settings &gt; Permalinks, and click &quot;Save Changes&quot;. It probably wouldn&#039;t hurt to do this twice. Once you&#039;ve done that, you should be author base free.

&lt;code&gt;&lt;pre&gt;function my_remove_author_base() {
	global $wp_rewrite;
	$wp_rewrite-&gt;author_base = &#039;&#039;;  
	$wp_rewrite-&gt;author_structure = &#039;/%author%&#039;; 
}
add_action( &#039;init&#039;, &#039;my_remove_author_base&#039; );&lt;/pre&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>It&#8217;s possible, and it was something that was supported by Edit Author Slug for about one version (the post to which you link says that it&#8217;s no longer supported). However, it comes with many risks, so I removed it because I didn&#8217;t want to deal with support requests on that topic. The code below can be placed in your theme&#8217;s functions.php or in a plugin, and will remove the author base completely. Once you&#8217;ve added the code to one of the aforementioned locations, you&#8217;ll need to go the Settings > Permalinks, and click &#8220;Save Changes&#8221;. It probably wouldn&#8217;t hurt to do this twice. Once you&#8217;ve done that, you should be author base free.</p>
<p><code>
<pre>function my_remove_author_base() {
	global $wp_rewrite;
	$wp_rewrite->author_base = '';
	$wp_rewrite->author_structure = '/%author%';
}
add_action( 'init', 'my_remove_author_base' );</pre>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.8 and Beyond by Andy</title>
		<link>http://brandonallen.org/2011/12/15/edit-author-slug-0-8-and-beyond/comment-page-1/#comment-1352</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 16 Dec 2011 06:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=107#comment-1352</guid>
		<description>Hi Brandon,
I want to remove the Author Base completely.  Is it possible to do so?

http://brandonallen.org/2010/11/03/how-to-remove-the-author-base-with-edit-author-slug/</description>
		<content:encoded><![CDATA[<p>Hi Brandon,<br />
I want to remove the Author Base completely.  Is it possible to do so?</p>
<p><a href="http://brandonallen.org/2010/11/03/how-to-remove-the-author-base-with-edit-author-slug/" rel="nofollow">http://brandonallen.org/2010/11/03/how-to-remove-the-author-base-with-edit-author-slug/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.8 and Beyond by Brandon Allen</title>
		<link>http://brandonallen.org/2011/12/15/edit-author-slug-0-8-and-beyond/comment-page-1/#comment-1350</link>
		<dc:creator>Brandon Allen</dc:creator>
		<pubDate>Thu, 15 Dec 2011 21:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=107#comment-1350</guid>
		<description>It should. Let me know if it doesn&#039;t, because that means there&#039;s a bug somewhere.</description>
		<content:encoded><![CDATA[<p>It should. Let me know if it doesn&#8217;t, because that means there&#8217;s a bug somewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.8 and Beyond by PJ</title>
		<link>http://brandonallen.org/2011/12/15/edit-author-slug-0-8-and-beyond/comment-page-1/#comment-1348</link>
		<dc:creator>PJ</dc:creator>
		<pubDate>Thu, 15 Dec 2011 20:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=107#comment-1348</guid>
		<description>Should this plugin work with functions like get_the_author_link()?</description>
		<content:encoded><![CDATA[<p>Should this plugin work with functions like get_the_author_link()?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.5 by Ricky</title>
		<link>http://brandonallen.org/2010/06/22/edit-author-slug-0-5/comment-page-1/#comment-98</link>
		<dc:creator>Ricky</dc:creator>
		<pubDate>Thu, 16 Sep 2010 13:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=71#comment-98</guid>
		<description>Great plugin and works well on WP3!

However I tried along side buddypress and it will not work. I&#039;m trying to allow users to sign up to the site and set their own &quot;profile/author slug&quot; (based on an xProfile field). Brandon any ideas how I can do this?</description>
		<content:encoded><![CDATA[<p>Great plugin and works well on WP3!</p>
<p>However I tried along side buddypress and it will not work. I&#8217;m trying to allow users to sign up to the site and set their own &#8220;profile/author slug&#8221; (based on an xProfile field). Brandon any ideas how I can do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.5 by Brandon Allen</title>
		<link>http://brandonallen.org/2010/06/22/edit-author-slug-0-5/comment-page-1/#comment-58</link>
		<dc:creator>Brandon Allen</dc:creator>
		<pubDate>Thu, 29 Jul 2010 04:19:57 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=71#comment-58</guid>
		<description>Mark,

This is possible. I&#039;m looking into it now, but it&#039;s not likely to be a visible option I add to the plugin. You&#039;ll likely have to add some code to your functions.php file to get this functionality, because removing the author base completely could have some negative side effects. I&#039;ll keep playing around with some ideas. If I come up with anything, I&#039;ll shoot you an email with a beta version for you to test.</description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>This is possible. I&#8217;m looking into it now, but it&#8217;s not likely to be a visible option I add to the plugin. You&#8217;ll likely have to add some code to your functions.php file to get this functionality, because removing the author base completely could have some negative side effects. I&#8217;ll keep playing around with some ideas. If I come up with anything, I&#8217;ll shoot you an email with a beta version for you to test.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.5 by Mark</title>
		<link>http://brandonallen.org/2010/06/22/edit-author-slug-0-5/comment-page-1/#comment-57</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=71#comment-57</guid>
		<description>Hi,

This looks like a perfect plugin for me but is it possible to have no slug?

e.g. http://www.mysite.com/mark

and that would go to the author archive page
Thanks
MArk</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This looks like a perfect plugin for me but is it possible to have no slug?</p>
<p>e.g. <a href="http://www.mysite.com/mark" rel="nofollow">http://www.mysite.com/mark</a></p>
<p>and that would go to the author archive page<br />
Thanks<br />
MArk</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.3 &#8211; Localization by Mark</title>
		<link>http://brandonallen.org/2010/03/21/edit-author-slug-0-3-localization/comment-page-1/#comment-28</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 31 Mar 2010 20:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/?p=37#comment-28</guid>
		<description>Hi!

I want translate your plugin to belorussian language. Please tell me Your email, simply reply me to zhr@tut.by.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I want translate your plugin to belorussian language. Please tell me Your email, simply reply me to <a href="mailto:zhr@tut.by">zhr@tut.by</a>.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Edit Author Slug 0.2 Released by Brandon Allen</title>
		<link>http://brandonallen.org/2010/01/28/edit-author-slug-0-2-released/comment-page-1/#comment-22</link>
		<dc:creator>Brandon Allen</dc:creator>
		<pubDate>Tue, 16 Feb 2010 06:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://brandonallen.org/2010/01/28/edit-author-slug-0-2-released/#comment-22</guid>
		<description>This issue has been fixed in &lt;a href=&quot;http://brandonallen.org/wordpress/plugins/edit-author-slug/&quot; title=&quot;Edit Author Slug 0.2.1&quot; rel=&quot;nofollow&quot;&gt;Edit Author Slug 0.2.1&lt;/a&gt;. Thanks Stefano for reporting the issue.</description>
		<content:encoded><![CDATA[<p>This issue has been fixed in <a href="http://brandonallen.org/wordpress/plugins/edit-author-slug/" title="Edit Author Slug 0.2.1" rel="nofollow">Edit Author Slug 0.2.1</a>. Thanks Stefano for reporting the issue.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

