<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Interconnect IT - WordPress Consultants, Web Development and Web Design &#187; plugin</title>
	<atom:link href="http://interconnectit.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://interconnectit.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 17:36:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Change wordpress dashboard RSS feed</title>
		<link>http://interconnectit.com/25/change-wordpress-dashboard-rss-feed/</link>
		<comments>http://interconnectit.com/25/change-wordpress-dashboard-rss-feed/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 18:31:07 +0000</pubDate>
		<dc:creator>James R Whitehead</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.wordpress.com/2007/11/16/change-wordpress-dashboard-rss-feed/</guid>
		<description><![CDATA[If you ever feel like you want to change the source of the news items on the wordpress dashboard (Not wordpress.com, sorry if I got your hopes up there) here is how to do it. You can either add the code that follows to your themes functions.php or you can add the it to a plug-in. Just change the returns&#8230; <a class="more" href="http://interconnectit.com/25/change-wordpress-dashboard-rss-feed/">continue reading <span class="unicode">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you ever feel like you want to change the source of the news items on the wordpress dashboard (Not wordpress.com, sorry if I got your hopes up there) here is how to do it.</p>
<p>You can either add the code that follows to your themes functions.php or you can add the it to a plug-in. Just change the returns from the function to match your feed URIs and titles. There are two feeds the primary, which by default is the &#8220;Development Blog&#8221;, is limited to about 3 entries and the Secondary feed is much more open.</p>
<p>If you&#8217;d like to delete the feeds the just set the return to &#8220;&#8221;, doing this helps dashboard load time a lot.</p>
<pre><code>/*
Plugin Name: Dashboard RSS replacement.
Plugin URI: http://www.completelypointless.co.uk/
Description: Changes the dashboard RSS to something more interesting.
Author: James R Whitehead
Version: 1.0
*/
function change_dashboard_primary_title () {
  return "Completely Pointless";
}
function change_dashboard_primary_feed() {
  return "http://completelypointless.co.uk/feed/";
}
function change_dashboard_secondary_title () {
  return "BBC News";
}
function change_dashboard_secondary_feed() {
  return "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml";
}
add_filter("dashboard_primary_feed","change_dashboard_primary_feed");
add_filter("dashboard_primary_title","change_dashboard_primary_title");
add_filter("dashboard_secondary_feed","change_dashboard_secondary_feed");
add_filter("dashboard_secondary_title","change_dashboard_secondary_title");</code></pre>
<p>That&#8217;s it, nothing too onerous or perplexing. I will say however that if you&#8217;re distributing themes or plug-ins that it would be nice to let wordpress keep their feed in there.</p>
]]></content:encoded>
			<wfw:commentRss>http://interconnectit.com/25/change-wordpress-dashboard-rss-feed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

