<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>WordPress Education</title>
	
	<link>http://www.miryamstenger.com/wordpress/wordpresseducation</link>
	<description />
	<lastBuildDate>Wed, 29 Sep 2010 21:08:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/miryamstenger/wjFr" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="miryamstenger/wjfr" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>36.884083</geo:lat><geo:long>-4.140472</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nd/2.0/</creativeCommons:license><image><url>http://www.feedburner.com/fb/images/pub/fb_pwrd.gif</url></image><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">miryamstenger/wjFr</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to edit the Meta links in WordPress 3.0</title>
		<link>http://www.miryamstenger.com/wordpress/wordpresseducation/work/how-to-edit-the-meta-links-in-wordpress-3-0/</link>
		<comments>http://www.miryamstenger.com/wordpress/wordpresseducation/work/how-to-edit-the-meta-links-in-wordpress-3-0/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 21:08:44 +0000</pubDate>
		<dc:creator>miryam</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.miryamstenger.com/wordpress/wordpresseducation/?p=429</guid>
		<description><![CDATA[I wrote a post last August 2009 on how to edit the Meta links in WordPress to remove the references to Entries RSS, Comments RSS, etc. in WordPress version 2.8.  The instructions for WordPress 3.0 version remain the same. The reason I am &#8216;bumping&#8217; these instructions is because yesterday I came across conflicting and confusing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.miryamstenger.com%2Fwordpress%2Fwordpresseducation%2Fwork%2Fhow-to-edit-the-meta-links-in-wordpress-3-0%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.miryamstenger.com%2Fwordpress%2Fwordpresseducation%2Fwork%2Fhow-to-edit-the-meta-links-in-wordpress-3-0%2F&amp;source=mivste&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p id="top" />I wrote a post last August 2009 on how to edit the Meta links in  WordPress to remove the references to Entries RSS, Comments RSS, etc.  in WordPress version 2.8.  The instructions for WordPress 3.0 version remain the same. The reason I am &#8216;bumping&#8217; these instructions is because yesterday I came across conflicting and confusing advice being given on a couple of WordPress  resource sites.</p>
<p>The solution that works is to edit the <strong>default_widgets.php</strong> file which is in the <strong>wp-includes folder</strong>.</p>
<p>Firstly, I would recommend copying your existing default_widgets.php file to your hard drive, perhaps to your desktop; this is just in case you make a mistake and inadvertently delete too much &#8211; or the wrong &#8211; snippets of code!</p>
<p>Open up the default_widgets.php file with Notepad (or whatever other software  you would normally use to edit php files).</p>
<p>Note that the example shown below is only to remove  the references to the Entries RSS and Comments RSS.</p>
<p>Find the following lines in  the default_widgets.php file:</p>
<blockquote><p>&lt;li&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;rss2_url&#8217;);  ?&gt;&#8221; title=&#8221;&lt;?php echo esc_attr(__(&#8216;Syndicate this site using RSS  2.0&#8242;)); ?&gt;&#8221;&gt;&lt;?php _e(&#8216;Entries &lt;abbr title=&#8221;Really Simple  Syndication&#8221;&gt;RSS&lt;/abbr&gt;&#8217;); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;comments_rss2_url&#8217;); ?&gt;&#8221;  title=&#8221;&lt;?php echo esc_attr(__(&#8216;The latest comments to all posts in  RSS&#8217;)); ?&gt;&#8221;&gt;&lt;?php _e(&#8216;Comments &lt;abbr title=&#8221;Really Simple  Syndication&#8221;&gt;RSS&lt;/abbr&gt;&#8217;); ?&gt;&lt;/a&gt;&lt;/li&gt;</p></blockquote>
<p>And delete them. Afterwards make sure that you save this edited  default_widgets.php file, and upload it back into the wp-includes folder overwriting  the original file.</p>
<p>If you want to also  remove the reference to WordPress.Org, then you must also delete the  following line:</p>
<blockquote><p>&lt;li&gt;&lt;a href=&#8221;http://wordpress.org/&#8221;  title=&#8221;&lt;?php echo esc_attr(__(&#8216;Powered by WordPress, state-of-the-art  semantic personal publishing platform.&#8217;));  ?&gt;&#8221;&gt;WordPress.org&lt;/a&gt;&lt;/li&gt;</p></blockquote>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.miryamstenger.com%2Fwordpress%2Fwordpresseducation%2Fwork%2Fhow-to-edit-the-meta-links-in-wordpress-3-0%2F&amp;title=How%20to%20edit%20the%20Meta%20links%20in%20WordPress%203.0"><img src="http://www.miryamstenger.com/wordpress/wordpresseducation/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/3PRM-t4Fzs1tXq-8tYKUgDn4KMA/0/da"><img src="http://feedads.g.doubleclick.net/~a/3PRM-t4Fzs1tXq-8tYKUgDn4KMA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3PRM-t4Fzs1tXq-8tYKUgDn4KMA/1/da"><img src="http://feedads.g.doubleclick.net/~a/3PRM-t4Fzs1tXq-8tYKUgDn4KMA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?i=IX8FushfkBE:9_19Scz3PFY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?i=IX8FushfkBE:9_19Scz3PFY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?i=IX8FushfkBE:9_19Scz3PFY:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?i=IX8FushfkBE:9_19Scz3PFY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?a=IX8FushfkBE:9_19Scz3PFY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/miryamstenger/wjFr?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/miryamstenger/wjFr/~4/IX8FushfkBE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.miryamstenger.com/wordpress/wordpresseducation/work/how-to-edit-the-meta-links-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

