<?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>WordPress &#8250; Support Tag: feed-key</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: feed-key</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 19:12:11 +0000</pubDate>

<item>
<title>thinky72 on "[Plugin: Feed Key] adding key to ALL feeds"</title>
<link>http://wordpress.org/support/topic/229593#post-1234532</link>
<pubDate>Sun, 04 Oct 2009 12:25:57 +0000</pubDate>
<dc:creator>thinky72</dc:creator>
<guid isPermaLink="false">1234532@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hi woody3k&#60;/p&#62;
&#60;p&#62;intresting hack - but i didn´t figure out, in wich files i have to add your code ... can you give us a hint??&#60;/p&#62;
&#60;p&#62;regards&#60;br /&#62;
thinky
&#60;/p&#62;</description>
</item>
<item>
<title>chris on "[Plugin: Feed Key] Bloglines"</title>
<link>http://wordpress.org/support/topic/280137#post-1103754</link>
<pubDate>Mon, 15 Jun 2009 01:27:11 +0000</pubDate>
<dc:creator>chris</dc:creator>
<guid isPermaLink="false">1103754@http://wordpress.org/support/</guid>
<description>&#60;p&#62;For some reason when I go to subscribe using bloglines, I get an error that there is no feed at that address. Can someone confirm they get the same error?
&#60;/p&#62;</description>
</item>
<item>
<title>addzjazz on "[Plugin: Feed Key] Feed  Key not working in 2.7.1"</title>
<link>http://wordpress.org/support/topic/269906#post-1071729</link>
<pubDate>Tue, 12 May 2009 07:14:48 +0000</pubDate>
<dc:creator>addzjazz</dc:creator>
<guid isPermaLink="false">1071729@http://wordpress.org/support/</guid>
<description>&#60;p&#62;It seems that the feed key is not working for wordpress 2.7.1.  I had 2.7 and it worked fine and when I switched to 2.7.1, it stopped working and now says the keys are invalid when you go to the rss feeds.&#60;/p&#62;
&#60;p&#62;Is there anything simple that I might be able to edit that I'm missing?
&#60;/p&#62;</description>
</item>
<item>
<title>woody3k on "[Plugin: Feed Key] adding key to ALL feeds"</title>
<link>http://wordpress.org/support/topic/229593#post-985859</link>
<pubDate>Sat, 14 Feb 2009 03:28:27 +0000</pubDate>
<dc:creator>woody3k</dc:creator>
<guid isPermaLink="false">985859@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Had an idea on another method for adding the feedkey to any feed links for a currently logged in user. This code could be added to the feed-key.php plugin:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function feedkey_feed_link($feed_link)
{
	global $current_user;

	$feedkey = get_usermeta($current_user-&#38;gt;ID,&#38;#39;feed_key&#38;#39;);
	$permalink_structure = get_option(permalink_structure);
	//Check if Permalinks are being used

	//If feed key is defined for this user
	if (is_user_logged_in() &#38;#38;&#38;#38; !empty($feedkey))
	{
		empty($permalink_structure) ? $feedjoin = &#38;#39;&#38;#38;feedkey=&#38;#39; : $feedjoin = &#38;#39;?feedkey=&#38;#39;;
		$output = $feed_link.$feedjoin.$feedkey;
	}
	else
		$output = $feed_link;

	return $output;
}

add_action(&#38;#39;feed_link&#38;#39;, &#38;#39;feedkey_feed_link&#38;#39;, 10, 1);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hooking this action means that the rss link is updated whenever it is added to a page. It works with/without permalinks, and for the basic feed query strings - eg. 'rss2_url' or 'comments_rss2_url', but I haven't tested it against more complex rss query strings.
&#60;/p&#62;</description>
</item>
<item>
<title>hmenzi on "Added Comment Feed Key and 2.7 Support"</title>
<link>http://wordpress.org/support/topic/242583#post-982209</link>
<pubDate>Wed, 11 Feb 2009 04:42:39 +0000</pubDate>
<dc:creator>hmenzi</dc:creator>
<guid isPermaLink="false">982209@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have added functionality to update the code for 2.7 as well as the feed key url for comments. You can download it here. &#60;a href=&#34;http://craniumtales.blogspot.com/2009/02/wordpress-27-feedkey-plugin-now-working.html&#34;&#62;http://craniumtales.blogspot.com/2009/02/wordpress-27-feedkey-plugin-now-working.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/feed-key/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/feed-key/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>nemoprincess on "[Plugin: Feed Key] adding key to ALL feeds"</title>
<link>http://wordpress.org/support/topic/229593#post-974326</link>
<pubDate>Tue, 03 Feb 2009 08:39:38 +0000</pubDate>
<dc:creator>nemoprincess</dc:creator>
<guid isPermaLink="false">974326@http://wordpress.org/support/</guid>
<description>&#60;p&#62;This is my code to retrieve feedkey from wordpress db for logged user:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;
&#38;lt;?php
	global $current_user;
	$feedvalue = $wpdb-&#38;gt;get_var(&#38;quot;SELECT meta_value FROM $wpdb-&#38;gt;usermeta WHERE user_id=&#38;#39;$current_user-&#38;gt;ID&#38;#39; AND meta_key=&#38;#39;feed_key&#38;#39;&#38;quot;);

	echo (get_bloginfo(&#38;#39;url&#38;#39;).(&#38;quot;?feed=rss2&#38;#38;feedkey=&#38;quot;).($feedvalue));?&#38;gt;&#38;quot;&#38;gt;Post RSS Feed&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If it can be helpful
&#60;/p&#62;</description>
</item>
<item>
<title>thinky72 on "[Plugin: Feed Key] Url"</title>
<link>http://wordpress.org/support/topic/230398#post-945034</link>
<pubDate>Sun, 04 Jan 2009 21:49:14 +0000</pubDate>
<dc:creator>thinky72</dc:creator>
<guid isPermaLink="false">945034@http://wordpress.org/support/</guid>
<description>&#60;p&#62;this is actually the same topic as discussed &#60;a href=&#34;http://wordpress.org/support/topic/229593&#34;&#62;here&#60;/a&#62; ...
&#60;/p&#62;</description>
</item>
<item>
<title>lstroud on "[Plugin: Feed Key] Url"</title>
<link>http://wordpress.org/support/topic/230398#post-942850</link>
<pubDate>Fri, 02 Jan 2009 19:39:28 +0000</pubDate>
<dc:creator>lstroud</dc:creator>
<guid isPermaLink="false">942850@http://wordpress.org/support/</guid>
<description>&#60;p&#62;How do I add a link to the rss feed with the feed key to the front page?
&#60;/p&#62;</description>
</item>
<item>
<title>thinky72 on "[Plugin: Feed Key] adding key to ALL feeds"</title>
<link>http://wordpress.org/support/topic/229593#post-940263</link>
<pubDate>Tue, 30 Dec 2008 14:51:14 +0000</pubDate>
<dc:creator>thinky72</dc:creator>
<guid isPermaLink="false">940263@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hi hami,&#60;br /&#62;
you are doing great work with your plugins. i mentioned lately when using members-only and feed-key, that the feed-key is not implemented in all rss-feeds that are offered ... actually it would be useful, when the feed-key is automaticalli added to ALL or maybe to selectable categories or elements (eg. the status-bar ... )
&#60;/p&#62;</description>
</item>
<item>
<title>hami on "[Plugin: Feed Key] Feed key for only some feeds?"</title>
<link>http://wordpress.org/support/topic/205113#post-870184</link>
<pubDate>Mon, 06 Oct 2008 07:18:48 +0000</pubDate>
<dc:creator>hami</dc:creator>
<guid isPermaLink="false">870184@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm looking into this for my other plugin &#60;a href=&#34;http://wordpress.org/extend/plugins/members-only/&#34;&#62;Members Only&#60;/a&#62;, so once I have it working I will try and move some similar functionality over to Feed Key.&#60;/p&#62;
&#60;p&#62;It's definitely on the to do list, along with requiring some feeds to use Feed Keys and others not.&#60;/p&#62;
&#60;p&#62;Your probably best to use Members Only for what your after. Version 0.7 which is almost finished protects individual posts and pages.&#60;/p&#62;
&#60;p&#62;/ Hami
&#60;/p&#62;</description>
</item>
<item>
<title>nyoungman on "[Plugin: Feed Key] Feed key for only some feeds?"</title>
<link>http://wordpress.org/support/topic/205113#post-857315</link>
<pubDate>Fri, 19 Sep 2008 17:33:33 +0000</pubDate>
<dc:creator>nyoungman</dc:creator>
<guid isPermaLink="false">857315@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I was wondering if it is possible to use feed keys for only some keys. Essentially what I have is posts that anyone can see, and posts that are only for subscribers/members. I accomplished this in what seemed the simplest way, by using Role Manager to allow private posts to be visible to subscribers.&#60;/p&#62;
&#60;p&#62;Now the only thing is figuring out RSS feeds. One feed for subscribers that could includes everything, but use a feed key... and another feed for non-subscribers that only includes the public posts.&#60;/p&#62;
&#60;p&#62;Thanks for your help,&#60;br /&#62;
- nathan&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/feed-key/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/feed-key/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
