<?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>GetWPress &#187; Wordpress Code</title>
	<atom:link href="http://www.getwpress.com/wordpress-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.getwpress.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 03 May 2012 20:27:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>H1 Hack for WordPress Pages</title>
		<link>http://www.getwpress.com/seo/h1-hack-for-wordpress-pages/</link>
		<comments>http://www.getwpress.com/seo/h1-hack-for-wordpress-pages/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 19:03:40 +0000</pubDate>
		<dc:creator>Heather</dc:creator>
				<category><![CDATA[Learning Wordpress]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[Wordpress Hack]]></category>
		<category><![CDATA[alternate heading]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[H1 tag]]></category>
		<category><![CDATA[heading change]]></category>
		<category><![CDATA[page title]]></category>
		<category><![CDATA[theme editing]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://getwpress.com/?p=41</guid>
		<description><![CDATA[<p>WordPress H1 Hack - This allows you to change the H1 tag of the page without affecting the page name, title, and menu title of the page. This has most commonly been used in the page.php file of the WordPress themes only, but can certainly be applied to any page that you would like the [...]</p><p>The original post is titled <a href="http://www.getwpress.com/seo/h1-hack-for-wordpress-pages/">H1 Hack for WordPress Pages</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress H1 Hack -</strong><br />
This allows you to change the H1 tag of the page without affecting the page name, title, and menu title of the page.</p>
<p>This has most commonly been used in the page.php file of the WordPress themes only, but can certainly be applied to any page that you would like the ability to set the h1 tag (or some cases, if you prefer, the h2 tag). Remember, it is recommended to set the default theme h2 tags displaying the header of the pages to H1 for an SEO advantage.</p>
<p>This documentation will demonstrate applying this hack to page.php in your theme, but can easily be understood from that point on doing the same to your template pages, index.php, single.php, etc.</p>
<p><strong>Step by Step:</strong><br />
1. You will need to be using an installed version of WordPress at least 2.x or greater as this method uses the “Custom Fields” you will find toward the bottom of the page in the admin area as you create or edit pages or posts.</p>
<p>2. In your favorite editor for editing your theme pages, or using the Theme Editor under the Presentation tab of the WordPress admin area, open pages.php for editing.</p>
<p>3. In the default theme of WordPress or the theme you are using, you will see a section toward the top of the file that looks exactly like or similar to this:</p>
<p><img src="http://getwpress.com/images/h1hackdocumentation/screenshots-pagecode.png" border="0" alt="" width="500" height="275" /></p>
<p>It&#8217;s this line &#8211; <span style="color: #ff0000; font-size: x-small;">&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt; </span> that you will be changing. It may not look exactly the same, but will almost always be enclosed in h2 tags.</p>
<p>You will want to replace the contents inside those tags, but it is highly recommended that if they currently say &lt;h2&gt;&lt;/h2&gt; to change those to h1.</p>
<p>4. Replace that line with the following:</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1">&lt;h1&gt;<span class="kw2">&lt;?php</span> <span class="re0">$thisPost</span> <span class="sy0">=</span> <span class="re0">$post</span> <span class="sy0">-&gt;</span> <span class="me1">ID</span><span class="sy0">;</span> <span class="kw1">if</span> <span class="br0">&#40;</span>get_post_meta<span class="br0">&#40;</span><span class="re0">$thisPost</span><span class="sy0">,</span> changeH1<span class="sy0">,</span> <span class="kw4">true</span><span class="br0">&#41;</span> <span class="sy0">!=</span> <span class="st_h">&#8221;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">echo</span> <span class="br0">&#40;</span>get_post_meta<span class="br0">&#40;</span><span class="re0">$thisPost</span><span class="sy0">,</span> changeH1<span class="sy0">,</span> <span class="kw4">true</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">the_title<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy1">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&lt;/h1&gt;</div>
</li>
</ol>
</div>
</div>
<p>So your file should now look similar to this:</p>
<p><span style="color: #ff0000; font-size: x-small;"> <img src="http://getwpress.com/images/h1hackdocumentation/screenshots-pagecodeedited.png" border="0" alt="" width="500" height="451" /></span></p>
<p>5.  Save the file and upload it to your theme folder or save the file in the  theme editor.</p>
<p>6. Now you can edit or create new pages and use the custom  fields to change the heading of the page without changing the actual title  of the page.</p>
<p>7. To do this, as an example, let’s create a new page named  “Test”.</p>
<p>8. Publish the page, then view it from your WordPress site.</p>
<p>9. You  can see that not only the title in the browser, in the menu, and the heading  of the page says “Test”.</p>
<p><span style="color: #ff0000; font-size: x-small;"> <img src="http://getwpress.com/images/h1hackdocumentation/screenshots-test.png" border="0" alt="" width="500" height="204" /></span></p>
<p>10. Now back to the admin area, edit the page  “Test”.<br />
11. Scroll to the bottom of the editing area until you see “Custom  Fields”.<br />
12. You may have to click on the “+” sign to the right to see the  area for editing these fields.</p>
<p><span style="color: #ff0000; font-size: x-small;"> <img src="http://getwpress.com/images/h1hackdocumentation/screenshots-customfields.png" border="0" alt="" width="400" height="234" /></span></p>
<p>13. Here you will need to add “changeH1” to the key  text box for the first time. Be sure that changeH1 is spelled exactly the  same and the “H” is capitalized.</p>
<p>14. After you have done this the first time, you  will be able to select the changeH1 from the drop-down box under the word  Key instead. It is only necessary to add the key once with a value, and from  that point, it will remain in the drop-down list to be selected easier.</p>
<p>15. Now change the header by typing a new one in  the Value text box to the right. Let’s just test it out by typing “This is  my new heading text”. Then click “Add Custom Field”.</p>
<p>16. Save and continue, or save the page now.</p>
<p>17. Go back to your site and refresh to see the  change.</p>
<p><span style="color: #ff0000; font-size: x-small;"> <img src="http://getwpress.com/images/h1hackdocumentation/screenshots-testnewheader.png" border="0" alt="" width="500" height="204" /></span></p>
<p>18. Now you can edit any page to display a  different heading just by setting the “changeH1” key in the drop-down list  and typing in the heading you want in value. Don’t forget to click “Add  Custom Field”.</p>
<p>19. If you have already set a heading in a page  using this method, you can also go back to editing the page, and change the  value in the box just above where you set it originally. After making the  change click on “update”.</p>
<p><span style="color: #ff0000; font-size: x-small;"> <img src="http://getwpress.com/images/h1hackdocumentation/screenshots-alreadyset.png" border="0" alt="" width="500" height="311" /></span></p>
<p>The original post is titled <a href="http://www.getwpress.com/seo/h1-hack-for-wordpress-pages/">H1 Hack for WordPress Pages</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></content:encoded>
			<wfw:commentRss>http://www.getwpress.com/seo/h1-hack-for-wordpress-pages/feed/</wfw:commentRss>
		<slash:comments>84</slash:comments>
		</item>
		<item>
		<title>WordPress Not Showing Backlinks Any More?</title>
		<link>http://www.getwpress.com/wordpress-code/wordpress-not-showing-backlinks-any-more/</link>
		<comments>http://www.getwpress.com/wordpress-code/wordpress-not-showing-backlinks-any-more/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 22:05:12 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[Wordpress Glitches]]></category>

		<guid isPermaLink="false">http://getwpress.com/wordpress-code/wordpress-not-showing-backlinks-any-more/</guid>
		<description><![CDATA[<p>What&#8217;s with the new version of WordPress not showing your inbound links anymore? &#8211; Oh &#8211; actually, I see now that it is not just in the latest version,  but it&#8217;s been removed altogether from the admin control panel. This is very odd&#8230; First they replaced Technorati in there with Google, and now they&#8217;ve removed [...]</p><p>The original post is titled <a href="http://www.getwpress.com/wordpress-code/wordpress-not-showing-backlinks-any-more/">WordPress Not Showing Backlinks Any More?</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s with the new version of WordPress not showing your inbound links anymore? &#8211; Oh &#8211; actually, I see now that it is not just in the latest version,  but it&#8217;s been removed altogether from the admin control panel.</p>
<p>This is very odd&#8230; First they replaced Technorati in there with Google, and now they&#8217;ve removed altogether the ability to know instantly when someone links back to you.</p>
<p>That&#8217;s a shame, because I really like it! Perhaps it&#8217;s just a glitch and it will come back tomorrow?</p>
<p>The original post is titled <a href="http://www.getwpress.com/wordpress-code/wordpress-not-showing-backlinks-any-more/">WordPress Not Showing Backlinks Any More?</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></content:encoded>
			<wfw:commentRss>http://www.getwpress.com/wordpress-code/wordpress-not-showing-backlinks-any-more/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Big WordPress Ping List</title>
		<link>http://www.getwpress.com/learning-wordpress/the-big-wordpress-ping-list/</link>
		<comments>http://www.getwpress.com/learning-wordpress/the-big-wordpress-ping-list/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 16:15:01 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Learning Wordpress]]></category>
		<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[ping list]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://getwpress.com/learning-wordpress/the-big-wordpress-ping-list/</guid>
		<description><![CDATA[<p>Update 2012: Stop using a big ping list &#8211; You&#8217;re just adding to the noise. Pingomatic is all you need&#8230; Old Info: Having a big ping list added to your WordPress blog is not going to make or break you, but the more exposure, the better, right? At a recent presentation I gave about using [...]</p><p>The original post is titled <a href="http://www.getwpress.com/learning-wordpress/the-big-wordpress-ping-list/">The Big WordPress Ping List</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></description>
			<content:encoded><![CDATA[<p><em>Update 2012:<br />
Stop using a big ping list &#8211; You&#8217;re just adding to the noise.<br />
Pingomatic is all you need&#8230;</em></p>
<p>Old Info:<br />
Having a big ping list added to your WordPress blog is not going to make or break you, but the more exposure, the better, right?</p>
<p>At a recent presentation I gave about using WordPress, I was adding a slide about the ping list, and decided to count them. I was surprised to see that there were only 46, but that&#8217;s what I put in the slide.</p>
<p>Apparently, at some point over the last couple of dozen installations, I dropped off a batch from my list, and even my own blog was running short.</p>
<p>Going back through my files and folders, and even some old blogs, I&#8217;ve now recompiled my ping list, and removed the duplicates, and I&#8217;m posting them here for your viewing pleasure.</p>
<p><strong>To add to your ping list &#8211; </strong></p>
<ul>
<li>login to WordPress admin</li>
<li>go to the options tab</li>
<li>go to the writing sub tab</li>
<li>scroll further down than you probably ever have before</li>
<li>paste into the field</li>
</ul>
<p>There&#8217;s an old <a href="http://forums.digitalpoint.com/showthread.php?t=52431" target="_blank">thread here at Digitalpoint</a> with some detailed info for better pinging too,  but  I disagree with the detractors there.  My own experience has shown me that it&#8217;s NOT a wasted or duplicated effort, I prefer these &#8220;manual&#8221; pings over Pingomatic, and that the no ping waiting plugin <span style="text-decoration: line-through;">is</span> was very cool. (sorry, the domain is gone!)</p>
<p>That&#8217;s it.  Feel free to copy and paste my list below, with no reciprocal link required, no thanks necessary, and no paypal donation sent to scott (at) pdxtc.com <img src='http://www.getwpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>(I would however appreciate any comments added here if you notice anything missing&#8230;)</p>
<p>http://1470.net/api/ping</p>
<p>http://a2b.cc/setloc/bp.a2b</p>
<p>http://api.feedster.com/ping</p>
<p>http://api.feedster.com/ping.php</p>
<p>http://api.moreover.com/ping</p>
<p>http://api.moreover.com/RPC2</p>
<p>http://api.my.yahoo.com/RPC2</p>
<p>http://api.my.yahoo.com/rss/ping</p>
<p>http://bblog.com/ping.php</p>
<p>http://bitacoles.net/notificacio.php</p>
<p>http://bitacoles.net/ping.php</p>
<p>http://bitacoras.net/ping</p>
<p>http://bitacoras.net/ping/</p>
<p>http://blo.gs/ping.php</p>
<p>http://blog.goo.ne.jp/XMLRPC</p>
<p>http://blogbot.dk/io/xml-rpc.php</p>
<p>http://blogdb.jp/xmlrpc</p>
<p>http://blogdigger.com/RPC2</p>
<p>http://blogmatcher.com/u.php</p>
<p>http://blogoole.com/ping/</p>
<p>http://blogoon.net/ping/</p>
<p>http://blogpeople.net/servlet/weblogUpdates</p>
<p>http://blogroots.com/tb_populi.blog?id=1</p>
<p>http://blogsearch.google.com/ping</p>
<p>http://blogsearch.google.com/ping/RPC2</p>
<p>http://blogshares.com/rpc.php</p>
<p>http://blogsnow.com/ping</p>
<p>http://blogstreet.com/xrbin/xmlrpâ€¦</p>
<p>http://blogstreet.com/xrbin/xmlrpc.cgi</p>
<p>http://blogupdate.org/ping/</p>
<p>http://blogupdate.org/sverige/ping/</p>
<p>http://bulkfeeds.net</p>
<p>http://bulkfeeds.net/rpc</p>
<p>http://catapings.com/ping.php</p>
<p>http://coreblog.org/ping/</p>
<p>http://effbot.org/rpc/ping.cgi</p>
<p>http://feedsky.com/api/RPC2</p>
<p>http://holycowdude.com/rpc/ping/</p>
<p>http://imblogs.net/ping/</p>
<p>http://lasermemory.com/lsrpc/</p>
<p>http://mod-pubsub.org/kn_apps/blogchatt</p>
<p>http://mod-pubsub.org/kn_apps/blogchatter/ping.php</p>
<p>http://mod-pubsub.org/ping.php</p>
<p>http://newsisfree.com/RPCCloud</p>
<p>http://newsisfree.com/xmlrpctest.php</p>
<p>http://packetmonster.net/xmlrpc.php</p>
<p>http://ping.amagle.com/</p>
<p>http://ping.bitacoras.com</p>
<p>http://ping.blo.gs/</p>
<p>http://ping.blogg.de/</p>
<p>http://ping.bloggers.jp/rpc/</p>
<p>http://ping.blogmura.jp/rpc/</p>
<p>http://ping.blogoon.net/</p>
<p>http://ping.cocolog-nifty.com/xmlrpc</p>
<p>http://ping.exblog.jp/xmlrpc</p>
<p>http://ping.fakapster.com/rpc</p>
<p>http://ping.feedburner.com</p>
<p>http://ping.feeds.yahoo.com/RPC2/</p>
<p>http://ping.myblog.jp</p>
<p>http://ping.rootblog.com/rpc.php</p>
<p>http://ping.syndic8.com/xmlrpc.php</p>
<p>http://ping.weblogalot.com/rpc.php</p>
<p>http://ping.weblogs.se/</p>
<p>http://pinger.blogflux.com/rpc</p>
<p>http://pinger.blogflux.com/rpc/</p>
<p>http://pingoat.com/</p>
<p>http://pingoat.com/goat/RPC2</p>
<p>http://pingqueue.com/rpc/</p>
<p>http://popdex.com/addsite.php</p>
<p>http://rcs.datashed.net/RPC2</p>
<p>http://rcs.datashed.net/RPC2 euro.weblogs.com</p>
<p>http://rcs.datashed.net/RPC2/</p>
<p>http://rpc.blogbuzzmachine.com/RPC2</p>
<p>http://rpc.blogrolling.com/pinger/</p>
<p>http://rpc.britblog.com</p>
<p>http://rpc.britblog.com/</p>
<p>http://rpc.icerocket.com:10080</p>
<p>http://rpc.icerocket.com:10080/</p>
<p>http://rpc.newsgator.com/</p>
<p>http://rpc.pingomatic.com</p>
<p>http://rpc.pingomatic.com/</p>
<p>http://rpc.tailrank.com/feedburner/RPC2</p>
<p>http://rpc.technorati.com/rpc/ping</p>
<p>http://rpc.weblogs.com/RPC2</p>
<p>http://rpc.wpkeys.com</p>
<p>http://rpc.wpkeys.com/</p>
<p>http://services.newsgator.com/ngws/xmlrpcping.aspx</p>
<p>http://signup.alerts.msn.com/alerts-PREP/submitPingExtended.doz</p>
<p>http://snipsnap.org/RPC2</p>
<p>http://syndic8.com/xmlrpc.php</p>
<p>http://thingamablog.sourceforge.net/ping.php</p>
<p>http://topicexchange.com/RPC2</p>
<p>http://trackback.bakeinu.jp/bakeping.php</p>
<p>http://weblogalot.com/Ping/</p>
<p>http://weblogues.com/ping/</p>
<p>http://weblogues.com/RPC</p>
<p>http://weblogues.com/RPC/</p>
<p>http://xmlrpc.blogg.de</p>
<p>http://xmlrpc.blogg.de/</p>
<p>http://xping.pubsub.com/ping/</p>
<p>http://zing.zingfast.com</p>
<p>https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast</p>
<p><strong>*** update May 2010*** </strong></p>
<p><strong> </strong>In the 2 1/2 years since I wrote this post, ping services have grown, and while I&#8217;ve never seen anyone get banned for over-0pinging, I&#8217;ve heard about it, and reducing redundant pings is a good thing.</p>
<p>Therefore, I recommend you read the May 28 2010 commenters article below -</p>
<p><img src="http://pp2.s3.amazonaws.com/de9133c162814e04/495b414e778442aca546d49eb8644c77.jpg" border="0" alt="image" width="500" height="134" /></p>
<p>which recommends using two other WordPress plugins that will <a href="http://wordpress.org/extend/plugins/cbnet-ping-optimizer/" target="_blank">eliminate pinging after an edit</a> and another that will <a href="http://wordpress.org/extend/plugins/ping-list-checker/" target="_blank">eliminate duplicates from your ping list</a></p>
<p>The original post is titled <a href="http://www.getwpress.com/learning-wordpress/the-big-wordpress-ping-list/">The Big WordPress Ping List</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></content:encoded>
			<wfw:commentRss>http://www.getwpress.com/learning-wordpress/the-big-wordpress-ping-list/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Edit Default Comment Invitation</title>
		<link>http://www.getwpress.com/learning-wordpress/edit-your-default-comment-invitation/</link>
		<comments>http://www.getwpress.com/learning-wordpress/edit-your-default-comment-invitation/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 19:47:56 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Learning Wordpress]]></category>
		<category><![CDATA[Wordpress basics]]></category>
		<category><![CDATA[Wordpress Code]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[file were writable]]></category>
		<category><![CDATA[theme editor]]></category>

		<guid isPermaLink="false">http://getwpress.com/learning-wordpress/edit-your-default-comment-invitation/</guid>
		<description><![CDATA[<p>One of the benefits of even having a blog is getting people to comment, because that adds more content and freshens your pages, known as UGC, or &#8220;User Generated Content&#8221;. However, most people don&#8217;t even bother to update the default comment invitation lines that appear in their WordPress blog, because it&#8217;s just not something you [...]</p><p>The original post is titled <a href="http://www.getwpress.com/learning-wordpress/edit-your-default-comment-invitation/">Edit Default Comment Invitation</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></description>
			<content:encoded><![CDATA[<p>One of the benefits of even having a blog is getting people to comment, because that adds more content and freshens your pages, known as UGC, or &#8220;User Generated Content&#8221;.</p>
<p>However, most people don&#8217;t even bother to update the default comment invitation lines that appear in their WordPress blog, because it&#8217;s just not something you think about.</p>
<p>If you scroll down below you&#8217;ll see that I&#8217;ve customized the comment message on this blog, and it&#8217;s really easy to do.</p>
<p>First, login to your WordPress admin, then go to presentation &#8211; theme editor.</p>
<p>Click on your single.php file over on the right.</p>
<p>Before you do a bunch of work to scroll to the bottom and make sure that you&#8217;re not seeing this message: <strong>&#8220;If this file were writable, you could edit it&#8221;</strong></p>
<p>If you see that, then you need to adjust your permissions (FTP &#8211; CHMOD) on those files.</p>
<p>Once you are viewing single.php, then using Firefox or IE, (Ctrl-F), you can open a search box and with the WordPress file editor, you will usually find this line &#8220;You can follow any comments&#8221;. I say usually because these files are in the theme, and most designers will not edit that message.</p>
<p>That will put you smack dab in the middle of your code for editing that text to say what you want. You can also use linebreaks and limited HTML tags,  like bolds and breaks to format it however you like. Cool, huh?</p>
<p style="text-align: center"><img src="http://getwpress.com/wp-content/uploads/wordpress-comment-invitation-code1.jpg" alt="wordpress-comment-invitation-code1.jpg" /></p>
<p><strong>Disclaimer:</strong><br />
ALWAYS make a backup of your work, even just in an open Notepad file. That way, if it screws up your formatting somehow you can paste it right back.</p>
<p>The original post is titled <a href="http://www.getwpress.com/learning-wordpress/edit-your-default-comment-invitation/">Edit Default Comment Invitation</a> , and it came from <a href="http://www.getwpress.com">GetWPress</a> . </p>]]></content:encoded>
			<wfw:commentRss>http://www.getwpress.com/learning-wordpress/edit-your-default-comment-invitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

