<?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>The 42nd Estate &#187; Blogging Tips</title> <atom:link href="http://www.the42ndestate.com/category/blogging-tips/feed/" rel="self" type="application/rss+xml" /><link>http://www.the42ndestate.com</link> <description>We are you are us.</description> <lastBuildDate>Wed, 04 Aug 2010 01:18:55 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=</generator> <item><title>How To: Migrate Thesis SEO values to Hybrid SEO values</title><link>http://www.the42ndestate.com/how-to-migrate-thesis-seo-values-to-hybrid-seo-values/</link> <comments>http://www.the42ndestate.com/how-to-migrate-thesis-seo-values-to-hybrid-seo-values/#comments</comments> <pubDate>Tue, 20 Jul 2010 13:52:01 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[hybrid]]></category> <category><![CDATA[mysql]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[thesis]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1433</guid> <description><![CDATA[Having recently moved my personal blog from the Thesis theme to the Hybrid theme, I had to also migrate over a bunch of SEO values from the Thesis data set to the Hybrid set. It all went rather smoothly and only took a few minutes. Here’s how to move your Thesis post meta values over to Hybrid.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Fhow-to-migrate-thesis-seo-values-to-hybrid-seo-values%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Fhow-to-migrate-thesis-seo-values-to-hybrid-seo-values%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p>Having recently moved <a
href="http://adamp.com">my personal blog</a> from the Thesis theme to the <a
href="http://themehybrid.com/">Hybrid theme</a>, I had to also migrate over a bunch of SEO values from the Thesis data set to the Hybrid set. It all went rather smoothly and only took a few minutes. Here&#8217;s how to move your Thesis post meta values over to Hybrid.</p><p>Since these steps are similar to <a
href="http://www.the42ndestate.com/how-to-move-all-in-one-seo-values-into-thesis/">moving All in One SEO values to Thesis SEO values</a>, please refer back to that post for detailed instructions on backing up your database and accessing the database.</p><ol><li>Backup your database</li><p>Before making any huge changes to your database, you should always <a
href="http://codex.wordpress.org/Backing_Up_Your_Database">back it up first</a>.</p><li>Access MySQL</li><p>There are a multitude of ways to access MySQL, the two most common being phpMyAdmin and the good ol&#8217; command line. Whichever way you choose, you&#8217;ll need to get to your database and run a SQL query.</p><li>Running the SQL Query</li><p>If we&#8217;ve lost you up to this point, please do refer back to our super detailed post on changing database values. Once you get to the section titled &#8216;Copy, Paste, Go!&#8217;, come back here and grab the below query code.</p><p>Otherwise, if you&#8217;ve been following along simply grab the below code and run it.</p><pre class="brush: sql">
insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Title&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_title&#039;);

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Description&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_description&#039;);

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Keywords&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_keywords&#039;);

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Thumbnail&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_post_image&#039;);
</pre><p>Line by line, this code will insert into each posts meta values a Title, Description, Keywords, and thumbnail URL, using your values from Thesis.</p><p>After each set, you should see a message noting how many records were changed:</p><blockquote><p> Query OK, 66 rows affected (0.01 sec)<br
/> Records: 66  Duplicates: 0  Warnings: 0</p></blockquote><h3>Addendum: Deleting Thesis database values</h3><p>After migrating over your meta values to Hybrid, there&#8217;s no need to keep the old Thesis meta values cluttering up your database. After checking to make sure the values transferred over correctly, run this command to wipe the database clean:</p><pre class="brush: sql">
delete from wp_postmeta where meta_key = &#039;thesis_title&#039;;
delete from wp_postmeta where meta_key = &#039;thesis_description&#039;;
delete from wp_postmeta where meta_key = &#039;thesis_keywords&#039;;
delete from wp_postmeta where meta_key = &#039;thesis_post_image&#039;;
</pre>]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/how-to-migrate-thesis-seo-values-to-hybrid-seo-values/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>WordPress 2.9 Timezone and Scheduled Posts Missed Fixes</title><link>http://www.the42ndestate.com/wordpress-2-9-timezone-and-scheduled-posts-missed/</link> <comments>http://www.the42ndestate.com/wordpress-2-9-timezone-and-scheduled-posts-missed/#comments</comments> <pubDate>Thu, 24 Dec 2009 01:41:33 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[2.9]]></category> <category><![CDATA[2.9.1]]></category> <category><![CDATA[bugs]]></category> <category><![CDATA[cron]]></category> <category><![CDATA[fixes]]></category> <category><![CDATA[scheduled posts]]></category> <category><![CDATA[timezone]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1404</guid> <description><![CDATA[On sites running Wordpress 2.9, we’ve noticed a small bug appear on a few installations. After the upgrade it appears the timezone settings get misconfigured AND scheduled posts don’t publish on time. If the timezone was manually set (e.g. using UTC +/-), after the upgrade it would reset to a value one lower/higher and on certain server configurations scheduled posts simply wouldn’t publish.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Fwordpress-2-9-timezone-and-scheduled-posts-missed%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Fwordpress-2-9-timezone-and-scheduled-posts-missed%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p>On sites running WordPress 2.9, we&#8217;ve noticed a small bug appear on a few installations. After the upgrade it appears the <a
href="http://core.trac.wordpress.org/ticket/11558">timezone settings get misconfigured</a> AND <a
href="http://core.trac.wordpress.org/ticket/11505">scheduled posts don&#8217;t publish</a> on time. If the timezone was manually set (e.g. using UTC +/-), after the upgrade it would reset to a value one lower/higher and on certain server configurations scheduled posts simply wouldn&#8217;t publish.</p><p>There were a few other bugs, such as <a
href="http://www.sportsfan4.com/">Josh Gans&#8217;</a> personal pet peeve, <a
href="http://core.trac.wordpress.org/ticket/11502">square buttons in the administration panels</a>. The <a
href="http://wordpress.org/development/2009/12/wordpress-2-9-1-beta-1/">beta for WordPress 2.9.1 is already out</a> but if you can&#8217;t wait a day or two, keep reading for fixes to the timezone and scheduled posts bugs.</p><h2>Timezone Fix</h2><p>In this blog we&#8217;re in the UTC -5 timezone [Eastern Standard Time], but after the upgrade the timezone was listed as UTC -4, throwing off the local time by one hour.</p><p>The fix for the timezone is easy, go into Settings &#8211;> General &#8211;> Timezone and choose a city that&#8217;s in the same timezone as you rather than using a manual offset. Yes Bostonians, that means you&#8217;ll have to swallow a small bit of pride and choose New York as your timezone.</p><p>On some WP 2.9 installs, this quick fix took care of scheduled posts not publishing. On others, we had to take a few extra steps.</p><h2>Scheduled Posts Missed Fix</h2><p>Scheduled posts are a great feature of WordPress, allowing you to write articles in advance and set them to publish automatically. Unfortunately, in WordPress 2.9 a small change in the cron code (cron is the process which publishes your posts for you, it&#8217;s a part of your Unix based server, not WordPress) causes scheduled posts to fail on some setups.</p><p
class="alert"><strong>Important Note: </strong> If you&#8217;re hosted by The 42nd Estate, you should not experience this bug. If you do, please let us know!</p><p>The above timezone fix may also fix your scheduled posts error (it did on this install of wordpress), but if you&#8217;re on a very slow shared server or missing certain functions cron.php requires, it may not. If you&#8217;re scheduled posts are still not working after re-adjusting the timezones you&#8217;ll have to make a minor tweak to a core WordPress file to get scheduled posts working.</p><p>In your wp-includes folder, open up cron.php. On line 229 (or around there), you&#8217;ll see the below line:</p><pre class="brush: php">
$cron_url = get_option( &#039;siteurl&#039; ) . &#039;/wp-cron.php?doing_wp_cron&#039;;
        wp_remote_post( $cron_url, array(&#039;timeout&#039; =&gt; 0.01, &#039;blocking&#039; =&gt; false, &#039;sslverify&#039; =&gt; apply_filters(&#039;https_local_ssl_verify&#039;, true)) );
&lt;/pre&gt;
</pre><p>Change it to:</p><pre class="brush: php">
$cron_url = get_option( &#039;siteurl&#039; ) . &#039;/wp-cron.php?doing_wp_cron&#039;;
        wp_remote_post( $cron_url, array(&#039;timeout&#039; =&gt; 5, &#039;blocking&#039; =&gt; false, &#039;sslverify&#039; =&gt; apply_filters(&#039;https_local_ssl_verify&#039;, true)) );
&lt;/pre&gt;
</pre><p>Basically, we changed the timeout setting to a larger number. From reading through some of the Trac tickets out there, the cause may be due to a slow server, improperly configured server, or a bug in Curl. You can change the 5 to anything above 1, it seems some servers would round .01 down to zero, in effect causing an infinite loop that never got resolved.</p><h2>WordPress 2.9.1</h2><p>The awesome WordPress team is already hard at work cranking out version 2.9.1 that&#8217;ll fix these issues and a <a
href="http://core.trac.wordpress.org/query?status=closed&#038;group=resolution&#038;order=priority&#038;milestone=2.9.1&#038;resolution=fixed">few other errors</a>. If you have a few minutes please <a
href="http://wordpress.org/development/2009/12/wordpress-2-9-1-beta-1/">download and install the 2.9.1 beta</a> to help the WordPress team debug the latest release and confirm that any issues from 2.9 are resolved.</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/wordpress-2-9-timezone-and-scheduled-posts-missed/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Where to Find Batch Plugin Update in WordPress 2.9</title><link>http://www.the42ndestate.com/where-to-find-batch-plugin-update-in-wordpress-2-9/</link> <comments>http://www.the42ndestate.com/where-to-find-batch-plugin-update-in-wordpress-2-9/#comments</comments> <pubDate>Sat, 19 Dec 2009 17:41:53 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[batch update]]></category> <category><![CDATA[plugins]]></category> <category><![CDATA[wordpress 2.9]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1401</guid> <description><![CDATA[One feature that I struggled using was the Batch Plugin Updater. Not because it’s hard to use (it’s quite the opposite), but because I couldn’t find it! Turns out the batch plugin updater is tucked in under Tools –> Upgrade.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Fwhere-to-find-batch-plugin-update-in-wordpress-2-9%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Fwhere-to-find-batch-plugin-update-in-wordpress-2-9%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p><a
href="http://wordpress.org/development/2009/12/wordpress-2-9/">WordPress 2.9 was released today</a> and features a ton of additions. Amongst the new features and fixes:</p><ol><li>Batch Plugin updates (a-w-e-s-o-m-e)</li><li>Built-in Image Editor</li><li>oEmbed support</li><li>Trash can (awesome &#8211; prevent accidents)</li><li>Post Thumbnails (awesome)</li><li>Sidebar Descriptions</li><li>Better Custom Post Type API integration</li></ol><p>and a bunch more features.</p><p>One feature that I struggled using was the Batch Plugin Updater. Not because it&#8217;s hard to use (it&#8217;s quite the opposite), but because I couldn&#8217;t find it! Turns out the batch plugin updater is tucked in under Tools &#8211;> Upgrade.</p><p>Personally, I feel a more intuitive spot would be right on the plugins page, perhaps in the Updates Available tab or as a bulk option in the existing bulk options drop down menu, but that&#8217;s a minor quibble with an awesome feature that&#8217;ll save time for everyone using WordPress 2.9.</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/where-to-find-batch-plugin-update-in-wordpress-2-9/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Five Free Tools to Check if Your Site is Up</title><link>http://www.the42ndestate.com/five-free-tools-to-check-if-your-site-is-up/</link> <comments>http://www.the42ndestate.com/five-free-tools-to-check-if-your-site-is-up/#comments</comments> <pubDate>Mon, 26 Oct 2009 12:32:51 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[free]]></category> <category><![CDATA[monitoring]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[tools]]></category> <category><![CDATA[uptime]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1373</guid> <description><![CDATA[A great site that is search engine friendly and more importantly useful to your visitors serves no purpose if the server struggles and doesn’t keep the site up consistently and reliably. Monitoring your sites for uptime is a crucial aspect of running a successful web-site. If you’re not already keeping track of your site’s uptime, here’s five free tools to check if your site is up and running.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Ffive-free-tools-to-check-if-your-site-is-up%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Ffive-free-tools-to-check-if-your-site-is-up%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p>So, you&#8217;ve designed and developed a great site that <a
href="http://www.the42ndestate.com/top-ten-ways-to-write-a-top-ten-ways-post/">visitors find extremely useful</a> and that <a
href="http://www.the42ndestate.com/how-page-rank-5-two-months/">search engines love to crawl</a>. You no have no worries, right?</p><p><strong>Wrong!</strong></p><p>A great site that is <a
href="http://www.the42ndestate.com/five-things-to-look-for-in-source-code-for-seo/">search engine friendly</a> and more importantly useful to your visitors serves no purpose if the server struggles and doesn&#8217;t keep the site up consistently and reliably. Monitoring your sites for uptime is a crucial aspect of running a successful web-site. If you&#8217;re not already keeping track of your site&#8217;s uptime, here&#8217;s five free tools to check if your site is up and running.</p><ol><h3><li>Down for everyone or just me?</li></h3><p>You just tried accessing your web-site and it&#8217;s not loading. Uh-oh, time to panic? Not quite. The first thing you should check if your site is not loading on your computer is if it&#8217;s actually down or if it&#8217;s an issue with your Internet Service Provider.</p><p><a
href="http://downforeveryoneorjustme.com/">Down for everyone or just me?</a> is a great single-purpose web-site that will check any site on the web and report back if it&#8217;s actually down or if it&#8217;s just an issue with your internet connection.</p><h3><li>Pingdom</li></h3><p>While finding out if your site is down for just you or everyone is a great tool, it&#8217;s unreasonable to constantly refresh your site and then go and check if it&#8217;s really down. Site monitoring tools allow you to set it and forget.</p><p><a
href="http://pingdom.com/">Pingdom</a> is such a tool, where you can point it towards your site(s) or server(s) and if the site goes down you&#8217;ll receive an e-mail, text message, or even a tweet or DM that Pingdom had trouble accessing your site. Pingdom can be set to check your site once a minute and it also has tons of graphs that show uptime and load time historically for your site(s).</p><p>You can sign up for a free account that will track one site or one server and send up to 20 SMS alerts.</p><h3><li>Are My Sites Up?</li></h3><p>What if you have more than one site but can&#8217;t afford a premium Pingdom account? Well, <a
href="http://aremysitesup.com/">Are My Sites Up?</a> is a great monitoring service that is free and allows you to track up to five sites with 25 daily checks. Are My Sites Up also offers a premium service that allows for more sites and more checks. You can receive alerts via RSS, text message, Twitter, e-mail or via a nifty iPhone application.</p><h3><li>mon.itor.us</li></h3><p>Similar to Pingdom, <a
href="http://mon.itor.us/">mon.itor.us</a> will track your site&#8217;s uptime and offers a plethora of graphs to show site performance over time. The service is completely free and you can receive alerts that your site is down via e-mail, instant message, RSS or SMS.</p><h3><li>Binary Canary</li></h3><p>Last but not least, <a
href="http://binarycanary.com/">Binary Canary</a> has a free monitoring account that allows you to watch up to 5 sites at a 15 minute frequency. If the site goes down you can be alerted via e-mail or SMS by e-mail. You can also purchase SMS and phone credits to receive alerts that way.</p></ol><p>Ensuring your site stays up is an important aspect of running a successful web-site. With these five free tools, you have no excuse to not monitor your site&#8217;s uptime and load time performance. Have you got a favorite free monitoring tool you use to ensure your site is up? Let us know in the comments below.</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/five-free-tools-to-check-if-your-site-is-up/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>SEO Presentation from City of Boston Marketing Workshops</title><link>http://www.the42ndestate.com/seo-presentation-from-city-of-boston-marketing-workshops/</link> <comments>http://www.the42ndestate.com/seo-presentation-from-city-of-boston-marketing-workshops/#comments</comments> <pubDate>Sat, 24 Oct 2009 12:45:18 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[boston]]></category> <category><![CDATA[marketing]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[workshop]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1367</guid> <description><![CDATA[So far, the Marketing workshops organized by the BRA and the City of Boston have been a great success. The crowd yesterday was awesome, involved and asked lots of questions. If you were at either of the events this week and have any questions or suggestions, feel free to leave a comment below or send us an e-mail.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Fseo-presentation-from-city-of-boston-marketing-workshops%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Fseo-presentation-from-city-of-boston-marketing-workshops%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p>So far, the Marketing workshops organized by the BRA and the City of Boston have been a great success. The crowd yesterday was awesome, involved and asked lots of questions. If you were at either of the events this week and have any questions or suggestions, feel free to leave a comment below or <a
href="http://www.the42ndestate.com/contact/">send us an e-mail</a>.</p><p>Below are the slides from <a
href="http://www.the42ndestate.com/speaking-about-seo/">my SEO presentation</a> at the Marketing workshops organized by the City of Boston. I&#8217;m planning on recording audio to go along with the slides this weekend and will update this post when it&#8217;s up. There&#8217;s two options below for viewing the slides, the first is a Google Doc, the second is a Slideshare doc.</p><p>And if you enjoyed the presentation, please <a
href="http://feeds2.feedburner.com/the42ndestate/">subscribe to our blog</a>, <a
href="http://www.facebook.com/The42ndEstate">fan us on Facebook</a>, and <a
href="http://twitter.com/the42ndestate">follow us on Twitter</a>!</p><h3>Google Doc</h3><p><iframe
src="http://docs.google.com/present/embed?id=dd6dvdrr_10d6qfq6gr&#038;size=m" frameborder="0" width="555" height="451"></iframe></p><h3>Slideshare</h3><div
style="width:425px;text-align:left" id="__ss_2334839"><a
style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/The42ndEstate/seo-presentation-bra-the-42nd-estate" title="SEO Presentation - The 42nd Estate - BRA - City of Boston">SEO Presentation &#8211; The 42nd Estate &#8211; BRA &#8211; City of Boston</a><object
style="margin:0px" width="425" height="355"><param
name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seo-presentation-bra-the-42nd-estate-091024050050-phpapp02&#038;rel=0&#038;stripped_title=seo-presentation-bra-the-42nd-estate" /><param
name="allowFullScreen" value="true"/><param
name="allowScriptAccess" value="always"/><embed
src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seo-presentation-bra-the-42nd-estate-091024050050-phpapp02&#038;rel=0&#038;stripped_title=seo-presentation-bra-the-42nd-estate" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object><div
style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a
style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a
style="text-decoration:underline;" href="http://www.slideshare.net/The42ndEstate">The 42nd Estate</a>.</div></div> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/seo-presentation-from-city-of-boston-marketing-workshops/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>WordPress 2.8.5 Released &amp; Exploit Scanner Recommended</title><link>http://www.the42ndestate.com/wordpress-2-8-5-released-exploit-scanner-recommended/</link> <comments>http://www.the42ndestate.com/wordpress-2-8-5-released-exploit-scanner-recommended/#comments</comments> <pubDate>Wed, 21 Oct 2009 03:11:58 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[new release]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[security]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1358</guid> <description><![CDATA[Wordpress 2.8.5 has just been released. The main additions are security tweaks, which makes the update a must download.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Fwordpress-2-8-5-released-exploit-scanner-recommended%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Fwordpress-2-8-5-released-exploit-scanner-recommended%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p><img
src="http://cdn.the42ndestate.com/images/2009/10/wordpress-logo-stacked-rgb.png" alt="wordpress-logo-stacked-rgb" title="wordpress-logo-stacked-rgb" width="500" height="310" class="aligncenter size-full wp-image-1359" /></p><p><a
href="http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/">WordPress 2.8.5 has just been released</a>. The main additions are security tweaks, which makes the update a must download. The updates in this release include:</p><blockquote><ul><li>A fix for the Trackback Denial-of-Service attack that is currently being seen.</li><li>Removal of areas within the code where php code in variables was evaluated.</li><li>Switched the file upload functionality to be whitelisted for all users including Admins.</li><li>Retiring of the two importers of Tag data from old plugins.</li></ul></blockquote><p>The WordPress crew is also recommending users download the <a
href="http://ocaoimh.ie/exploit-scanner/">WordPress Exploit Scanner plugin</a> to search for any exploits that might be installed on your server. We use the exploit scanner on several of our sites and it&#8217;s a good step to take to harden your WordPress installation for security.</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/wordpress-2-8-5-released-exploit-scanner-recommended/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Activate WordPress.com Stats After Upgrade</title><link>http://www.the42ndestate.com/activate-wordpress-com-stats-after-upgrade/</link> <comments>http://www.the42ndestate.com/activate-wordpress-com-stats-after-upgrade/#comments</comments> <pubDate>Wed, 14 Oct 2009 02:06:27 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[stats]]></category> <category><![CDATA[upgrade]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1328</guid> <description><![CDATA[We’ve witnessed and received reports that after upgrading the wordpress.com stats plugin, wordpress.org blogs will not record stats unless you go into the plugins section and activate the plugin. No error messages are given during the upgrade, and it appears to re-activate correctly, but if you browse into the dashboard Blog Stats will not be listed.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Factivate-wordpress-com-stats-after-upgrade%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Factivate-wordpress-com-stats-after-upgrade%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p><img
src="http://cdn.the42ndestate.com/images/2009/10/no-stats.png" alt="no-stats" title="no-stats" width="157" height="259" class="alignright size-full wp-image-1329" />We&#8217;ve witnessed and received reports that after upgrading the <a
href="http://wordpress.org/extend/plugins/stats/">wordpress.com stats plugin</a>, <strong>wordpress.org blogs will not record stats</strong> unless you go into the plugins section and activate the plugin. No error messages are given during the upgrade, and it appears to re-activate correctly, but if you browse into the dashboard Blog Stats will not be listed.</p><p>I ran into this a couple of days ago on <a
href="http://www.adampieniazek.com/">my personal blog</a>, and didn&#8217;t notice it for a couple of days. Since then, I&#8217;ve noticed this bug on a few sites we manage and a few of our clients have reported the same bug.</p><p>The fix is quick and easy, but if you go about batch upgrading plugins you might not notice stats are not being collected for a few days and end up getting a flatline drop like I did (pictured above).</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/activate-wordpress-com-stats-after-upgrade/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Top Ten Ways to Write a Top Ten Ways Post</title><link>http://www.the42ndestate.com/top-ten-ways-to-write-a-top-ten-ways-post/</link> <comments>http://www.the42ndestate.com/top-ten-ways-to-write-a-top-ten-ways-post/#comments</comments> <pubDate>Sat, 10 Oct 2009 19:38:13 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[link bait]]></category> <category><![CDATA[lists]]></category> <category><![CDATA[promotion]]></category> <category><![CDATA[top ten]]></category> <category><![CDATA[traffic]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1300</guid> <description><![CDATA[You may have heard that lists are a great way to generate traffic to your blog. Well it’s true. People love lists because it gives them easily digestible information in a step by step format that encourages them to take action. One of the most popular list post type is the top X ways to do Y. Giving your visitors a single awesome tip on how to save money will likely turn them into subscribers. Giving them ten top tips on how to save money will make them evangelists.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Ftop-ten-ways-to-write-a-top-ten-ways-post%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Ftop-ten-ways-to-write-a-top-ten-ways-post%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><div
id="attachment_1303" class="wp-caption aligncenter" style="width: 510px"><img
src="http://cdn.the42ndestate.com/images/2009/10/top-ten-bingo.jpg" alt="Top Ten Bingo" title="top-ten-bingo" width="500" height="375" class="size-full wp-image-1303" /><p
class="wp-caption-text">Top Ten Bingo</p></div><p>You may have heard that <a
href="http://www.the42ndestate.com/tag/list/">lists</a> are a <a
href="http://www.copyblogger.com/7-reasons-why-list-posts-will-always-work/">great way to generate traffic</a> to your blog. Well it&#8217;s true. <strong>People love lists</strong> because it gives them easily digestible information in a step by step format that encourages them to take action. One of the most popular list post type is the top X ways to do Y. Giving your visitors a single awesome tip on how to save money will likely turn them into subscribers. Giving them ten top tips on how to save money <em>will make them evangelists</em>.</p><p>But, how do you go about writing these how to lists, you may ask? Perhaps you&#8217;re doubting your ability because you&#8217;re not an expert in a massively useful topic. Well you don&#8217;t need to be! What you need is the ability to collect information and organize it in a way that is helpful and actionable. Though, as you&#8217;ll see below in our top ten ways to write a top ten ways post list, having expertise or creativity can help too.</p><ol><h3><li>Google It</li></h3><p>It&#8217;s unlikely you&#8217;re treading completely new ground with your top ten ways to do X post, so fire up Google and take a look around. <strong>Do not</strong> copy someone else&#8217;s post, but use it as a base to make sure you cover the basics while also injecting new methods into your list.</p><h3><li>Don&#8217;t Google It</li></h3><p>Or, you could avoid Google completely and go entirely off your memory. It&#8217;s dangerous as you could accidentally mimic someone else&#8217;s popular post, but you might also find inspiration to blog about a few methods no one thought to mention before that came to you naturally.</p><h3><li>Search Twitter</li></h3><p>Since Twitter is real-time, searching it for your list topic could generate some fresh new ideas that were literally <em>just thought of</em>. If you find someone tweeting about a relevant step for your list, be sure to give kudos to the twit by linking to their message.</p><h3><li>Ask Twitter</li></h3><p>Got a big list of followers on Twitter? <strong>Ask your <a
href="http://www.the42ndestate.com/42-of-my-favorite-tweeps/">tweeps</a> for ideas!</strong> Again, do be sure to give credit where it&#8217;s due, but your tweeple should be a great pool of new ideas, especially if many of them are in the same field as you.</p><h3><li>Find The Missing Step</li></h3><p>Look at other top ten lists and see if any of them are missing a step. Perhaps someone wrote a top ten ways to secure WordPress post but failed to mention a plugin or <a
href="http://www.the42ndestate.com/nine-plugins-new-wordpress-blog/">how to back up your database</a>. Find the missing step and inform your readers about it.</p><h3><li>Streamline It</li></h3><p>While doing research, perhaps you found a few great posts already listing out the steps of your topic. But could they be improved upon? Could you drop 5 steps and streamline them so they&#8217;re easier to implement? If you can find a way to save your readers time, they <em>will</em> appreciate it.</p><h3><li>Link It Up</li></h3><p>Perhaps the topic you&#8217;re covering is very broad and tough to thoroughly go over in a single list of ten. That&#8217;s OK! <a
href="http://www.problogger.net/archives/2009/04/12/write-a-link-post/">Creating a link list</a> that summarizes each step and points the reader to more expansive resources for each step is a great way to create a one stop article for your readers to get all ten pieces of information in one article. Then, if need be they can follow up with each link on their own.</p><h3><li>Get a Guest Poster/Freelancer</li></h3><p>If you know someone who has expertise in a field, <strong>utilize that connection!</strong> If your site is popular enough, you should be able to easily find guest posters willing to write a top ten list revolving around their field of expertise. They get a traffic boost, you get a free list and your readers get a great resource <em>and</em> get exposed to an expert. It&#8217;s a win-win-win.</p><p>Don&#8217;t know anyone with expertise in the field you want to cover? That&#8217;s OK. Hit up <a
href="http://www.elance.com/">Elance</a>, <a
href="http://craigslist.org/">Craigslist</a>, <a
href="http://twitter.com/">Twitter</a> and other <a
href="http://freelanceswitch.com/finding/the-monster-list-of-freelancing-job-sites/">freelancing job boards</a>. For $40-$80 you should be able to find a great writer who can create a compelling list that&#8217;s sure to draw eyeballs.</p><h3><li>Get Expertise</li></h3><p>Sharing with your readers how you learned something is a <strong>great way to build a list</strong>. Read a book, research online, or just hack away until you learn something and then share with your readers how you learned it.</p><p>First off, the fact that you used this method to learn something knew shows proof of the method&#8217;s effectiveness. Second, if they&#8217;re reading your blog then they&#8217;re likely already on a similar wavelength with you and would love to see how you learned more about that topic. Some of your readers may even be more experienced in that field and offer more helpful tips.</p><h3><li>Hypothesize</li></h3><p>It seems <a
href="http://thelostjacket.com/marketing/cult-obvious">obvious posts are overtaking the blogosphere</a>. Go in the other direction and approach a modern dilemma from a theoretical perspective. Maybe you&#8217;ll be wrong, maybe you&#8217;ll be right but if you write it right it&#8217;s sure to generate a discussion around the idea. For instance, write a top ten ways to create world peace post. Or go super geeky and write about the top ten ways to break the speed limit barrier and travel across the universe. Do let your readers know you&#8217;re just brainstorming or hypothesizing about possible solutions, not claiming any expertise or factual solutions. Sometimes it&#8217;s OK to pretend and aim for the impossible.</ol><p>Going through the above list, you should be able to knock out top ten ways list posts in no time that are useful and beneficial to both you and your readers.</p><p>Have an additional tip for how to write great how-to lists? <em>Share them below in the comments so we can all learn how to improve!</em></p><p><a
href="http://www.flickr.com/photos/pigpogm/557246077/">Top Ten Bingo photo</a> by <a
href="http://www.flickr.com/photos/pigpogm/">pigpogm</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/top-ten-ways-to-write-a-top-ten-ways-post/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Five Things to Look for in Source Code for SEO</title><link>http://www.the42ndestate.com/five-things-to-look-for-in-source-code-for-seo/</link> <comments>http://www.the42ndestate.com/five-things-to-look-for-in-source-code-for-seo/#comments</comments> <pubDate>Wed, 07 Oct 2009 04:12:08 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[list]]></category> <category><![CDATA[search engines]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[source code]]></category> <category><![CDATA[usability]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1207</guid> <description><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Ffive-things-to-look-for-in-source-code-for-seo%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Ffive-things-to-look-for-in-source-code-for-seo%2F&#38;source=The42ndEstate&#38;style=normal&#38;service=bit.ly&#38;b=2" height="61" width="50" /><br
/> </a></div><p>A few <del
datetime="2009-10-07T03:30:57+00:00">days</del> weeks ago [we're back!] we talked about why viewing the source code should be the first step in analyzing a site for SEO&#8230;</p>]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Ffive-things-to-look-for-in-source-code-for-seo%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Ffive-things-to-look-for-in-source-code-for-seo%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p>A few <del
datetime="2009-10-07T03:30:57+00:00">days</del> weeks ago [we're back!] we talked about why viewing the source code should be the first step in analyzing a site for SEO and a few tools to help make the task a bit easier. So now that we&#8217;ve got our <a
href="http://www.the42ndestate.com/source-code-is-the-first-step-of-seo/">source code fired up</a>, what should we look for?</p><h2>Five Source Code Inspection Points for SEO</h2><p></p><ol><h3><li>Is the site text-based or is it all images?</li></h3><p> Search engines can&#8217;t see pictures and struggle crawling Flash. If the site is predominantly coded so it&#8217;s un-crawlable (javascript too, though the search engines are getting much better), it might require a complete re-working of the site&#8217;s code before moving onto to other optimization parts. If all of your posts are predominantly images or Flash, then there&#8217;s not much content for Google and other search engines to see.</p><p>Images take the form of:</p><pre class="brush: html">
&lt;img src=&quot;url of your image&quot; alt=&quot;A great picture!&quot; height=&quot;100&quot; width=&quot;100&quot; /&gt;
</pre><p>There are a few key points here.</p><ol><li>Give the image file a descriptive filename, for example big-red-building.jpg, not img9192.jpg.</li><li>Use dashes in the filename to separate out words. While you can use underscores too, we&#8217;ve found dashes to work best.</li><li>Give the image an alt tag, which will show in case the image fails to load and helps describe the image.</li><li>Declaring the height and width of the image decreases load time which is a win for everyone</li></ol><p>While it&#8217;s a great idea to have images on your site, having a site that is all images is asking for search fail, as Google and the other engines will have little, if any, text to crawl, analyze, and index. It may seem obvious to many of our readers, but over the years I&#8217;ve stumbled across quite a few sites that look great, but then you try to highlight some text and can&#8217;t and realize the whole site is one big image (or a bunch of images).</p><p>Many times, these image based sites are done as images because the designer wanted to use a specific font that is not installed by many users&#8217; computers. Though I&#8217;ll rant against Flash below, <a
href="http://www.mikeindustries.com/blog/sifr/">sIFR Flash</a> is a great way to get unique fonts on your site without relying on pure images. sIFR Flash will also put html code behind the Flash fonts giving the search engines something to crawl. Having said that sIFR Flash comes with its own disadvantages (mainly adding to page load time and having the regular html font appear for a few seconds before being replaced by the Flash font file).</p><h3><li>Is It Flashy&#8230;too Flashy?</li></h3><p>As noted above, search engines really struggle crawling Flash. They&#8217;re getting better, but for the time being it&#8217;s not a good idea to create 100% based Flash sites. Add in that not all users have Flash installed (iPhones for one) and that it&#8217;s not exactly fast (there&#8217;s nothing that&#8217;ll make a user bounce from your site quicker than a Flash loading screen) and you end up with a recommendation to stay away from Flash.</p><p>You can spot Flash by a few methods. The one way that covers it all is to look for .swf files. Flash can be embedded (like a YouTube video) or it can run the whole site.</p><p>Here&#8217;s a few embedded Flash code samples from the <a
href="http://www.alistapart.com/articles/flashembedcagematch">Flash Embedding Cage Match</a>:</p><h4>The <em>embed</em> method</h4><p><img
src="http://cdn.the42ndestate.com/images/2009/10/flash-embed-1.png" alt="flash-embed-1" title="flash-embed-1" width="306" height="50" class="aligncenter size-full wp-image-1279" /></p><h4>The <em>object</em> method</h4><p><img
src="http://cdn.the42ndestate.com/images/2009/10/flash-embed-2.png" alt="flash-embed-2" title="flash-embed-2" width="306" height="50" class="aligncenter size-full wp-image-1280" /></p><p>Note, I couldn&#8217;t figure out how to show Flash code without the browser interpreting it so the above two samples are images, here&#8217;s a <a
href="http://cdn.the42ndestate.com/images/2009/10/flash-embed-codes.txt">text file with the codes in plain text</a>.</p><p>There are times when Flash is OK, mainly for videos and ads and other secondary content. In other words, Flash within an HTML site is OK, while a site that is completely Flash based is asking for trouble. Still, if you can use another method, do so.</p><h3><li>Descriptive Title tag up top?</li></h3><p>The meta title tag is one of the <a
href=http://www.seomoz.org/article/search-ranking-factors#f3">most important features for SEO</a>. If the site is missing a title tag, start there. Next, make sure the title tag is unique and contains keywords which also appear in the site&#8217;s content. Ideally, your title tag and H1 tags should be similar, if not exact. The title tag should appear as high up in the source code as possible. It&#8217;s a way for Google and users to determine what your page is about, so it doesn&#8217;t make sense for this tag to be stuck down at the bottom of your code.</p><p>These take the form of:</p><pre class="brush: html"> &lt;title&gt;Your title here.&lt;/title&gt;</pre><p>Title tags appear at the top of the browser window, above the address field. They also may appear in Google&#8217;s search results, so make them enticing and descriptive of the content to get users to click through and find the right content.</p><h3><li>Is the Meta Description Descriptive?</li></h3><p>Check to see if there&#8217;s a meta description tag. While not as important as the meta title, the description is still often used by search engines as a snippet that appears in the results. Having a tag that is descriptive of the content on that page is an important signal to search engines and a useful intro to readers.</p><p>These take the form of:</p><pre class="brush: html">&lt;meta name=&quot;description&quot; content=&quot;Your description here. Keep it under 160 characters.&quot; /&gt;</pre><p>You should format your meta description to have the most important content at the front. For one, many believe Google values the content the earlier and higher up it appears. But the more important reason is that search engines may utilize your meta description as the snippet that appears in its search results. Making sure the focus of your page is noted quickly in the description informs viewers quickly about your page content and leads to more clicks and higher satisfaction.</p><p>An example, for this article we&#8217;re using the below text as the meta description:</p><blockquote><p>Check your source code for these five SEO related pieces of code. Make sure these pieces are optimized for maximum usability and search effectiveness.</p></blockquote><h3><li>Is there an H1 tag?</li></h3><p>Each web page should have one H1 tag that succinctly describes the content on that page. It&#8217;s a signal to search engines and your readers of what the content will be. Most wordpress themes will place the post or page title in an H1 tag. Ideally, your post titles on your homepage should not be wrapped in an H1 tag, but on the individual post pages they should be wrapped in an H1 tag. Tags flow in a hierarchy, so your most important content (the title) appears in an H1 tag, and sub-headings flow to the H2 to H6 tags.</p><p>These take the form of:</p><pre class="brush: html">&lt;h1&gt;Your title (the main heading) here&lt;/h1&gt;</pre><p>For example, on this article the title tag is &#8220;Five SEO Source Code Checks&#8221;, while the H1 tag is &#8220;Five Things to Look for in Source Code for SEO&#8221;and the H2 tag is &#8220;Five Source Code Inspection Points for SEO&#8221;. The five titles in this list are all wrapped in an H3 and there&#8217;s two H4 sub-headings in the Is it Flashy point.</p></ol><p>Originally, we planned to run this article as a list of ten, but as we&#8217;ve already crossed the 1,000 word threshold, we&#8217;re going to split it up into two parts to make sure it&#8217;s easily digestible. If you have any questions on part 1, ask away in the comments and we&#8217;ll do our best to answer!</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/five-things-to-look-for-in-source-code-for-seo/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>How to Add Google Ad Section Targeting in Thesis</title><link>http://www.the42ndestate.com/add-google-ad-section-in-thesis/</link> <comments>http://www.the42ndestate.com/add-google-ad-section-in-thesis/#comments</comments> <pubDate>Fri, 21 Aug 2009 16:47:00 +0000</pubDate> <dc:creator>Adam Pieniazek</dc:creator> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[ads]]></category> <category><![CDATA[Adsense]]></category> <category><![CDATA[google]]></category> <category><![CDATA[money]]></category> <category><![CDATA[online]]></category> <category><![CDATA[revenue]]></category> <category><![CDATA[targeting]]></category><guid
isPermaLink="false">http://www.the42ndestate.com/?p=1232</guid> <description><![CDATA[Recently Matt Cutts gave a talk called Straight from Google: What You Need to Know at WordCamp San Francisco 2009. His talk revolved around why bloggers blog (money? fame? fun?) and how bloggers can improve their SEO. Jim Gaudet noted a couple lines of code from the presentation that are highly relevant to bloggers using Adsense to make money online. The two lines dictate where the unique content starts and ends on your page. It’s a handy way to have the Adsense algorithms display more relevant advertisements to your visitors.]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: left; margin-right: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.the42ndestate.com%2Fadd-google-ad-section-in-thesis%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.the42ndestate.com%2Fadd-google-ad-section-in-thesis%2F&amp;source=The42ndEstate&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br
/> </a></div><p>Recently Matt Cutts gave a talk called <a
href="http://www.mattcutts.com/blog/seo-for-bloggers/">Straight from Google: What You Need to Know</a> at WordCamp San Francisco 2009. His talk revolved around why bloggers blog (money? fame? fun?) and how bloggers can improve their SEO. Jim Gaudet noted a couple lines of code from the presentation that are highly relevant to bloggers using Adsense to make money online. The two lines dictate where the unique content starts and ends on your page and target your ads to that content. It&#8217;s a handy way to have the Adsense algorithms display more relevant advertisements to your visitors.</p><p>While Jim created a handy <a
href="http://thejimgaudet.com/advanced-adsense/">plugin to insert the Adsense section code</a>, Thesis users can insert these two lines quickly and easily by utilizing a custom function and hooking it in before and after the post content.</p><h3>The Code</h3><p>To do so, open up your custom_functions.php file. Then copy and paste the below code into the file, save, and you&#8217;re all set!</p><p>Scroll down for an explanation of what this code does.</p><pre class="brush: php">
function adsense_marker_start(){
echo &#039;&lt;!-- google_ad_section_start --&gt;&#039;;
}
add_action(&#039;thesis_hook_before_post_box&#039;, &#039;adsense_marker_start&#039;);

function adsense_marker_end(){
echo &#039;&lt;!-- google_ad_section_end --&gt;&#039;;
}
add_action(&#039;thesis_hook_after_post&#039;, &#039;adsense_marker_end&#039;);
</pre><h3>The Explanation</h3><p>The first line simple declares the function. Then, we echo the Adsense start and end sections, which will insert the comment code telling Adsense what content to look at to determine what ads to show.</p><p>The last two lines of each function differ. For the start code, we insert the section before the post box so that it includes the title of the post. For the end code, we insert the section right after the post so it doesn&#8217;t include any social media icons, related posts or other irrelevant content you have there.</p><p>By letting Google know where your post content is, your ads will become more relevant to each page and should help increase click-through rates and revenues. For non-Thesis users, check out Jim Gaudet&#8217;s <a
href="http://thejimgaudet.com/advanced-adsense/#download-advanced-adsense-wordpress-plugin">Advanced Adsense plugin</a> which will do all the nitty gritty for you!</p> ]]></content:encoded> <wfw:commentRss>http://www.the42ndestate.com/add-google-ad-section-in-thesis/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 15/23 queries in 0.021 seconds using disk: basic
Content Delivery Network via cdn.the42ndestate.com

Served from: www.the42ndestate.com @ 2012-02-04 02:51:19 -->
