<?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://www.interconnectit.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.interconnectit.com</link>
	<description></description>
	<lastBuildDate>Sun, 18 Jul 2010 16:04:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change wordpress dashboard RSS feed</title>
		<link>http://www.interconnectit.com/25/change-wordpress-dashboard-rss-feed/</link>
		<comments>http://www.interconnectit.com/25/change-wordpress-dashboard-rss-feed/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 18:31:07 +0000</pubDate>
		<dc:creator>James 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. [...]]]></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>
<p><code>/*<br />
Plugin Name: Dashboard RSS replacement.<br />
Plugin URI: http://www.completelypointless.co.uk/<br />
Description: Changes the  dashboard RSS to something more interesting.<br />
Author: James R Whitehead<br />
Version: 1.0<br />
*/<br />
function change_dashboard_primary_title () {<br />
return "Completely Pointless";<br />
}<br />
function change_dashboard_primary_feed() {<br />
return "http://completelypointless.co.uk/feed/";<br />
}<br />
function change_dashboard_secondary_title () {<br />
return "BBC News";<br />
}<br />
function change_dashboard_secondary_feed() {<br />
return "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml";<br />
}<br />
add_filter("dashboard_primary_feed","change_dashboard_primary_feed");<br />
add_filter("dashboard_primary_title","change_dashboard_primary_title");<br />
add_filter("dashboard_secondary_feed","change_dashboard_secondary_feed");<br />
add_filter("dashboard_secondary_title","change_dashboard_secondary_title");</code></p>
<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://www.interconnectit.com/25/change-wordpress-dashboard-rss-feed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
