<?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>Social Bootstrap &#187; Word Press</title>
	<atom:link href="http://www.socialbootstrap.com/category/word-press/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.socialbootstrap.com</link>
	<description>Creating Thought Leadership</description>
	<lastBuildDate>Fri, 22 Jan 2010 15:37:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>WordPress Plugin Tutorial: Exclude Pages</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/</link>
		<comments>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 16:53:14 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Exclude Pages Plugin]]></category>
		<category><![CDATA[WP as CMS]]></category>

		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954</guid>
		<description><![CDATA[Using WP as CMS? Then you probably have wanted to exclude pages from the menu bar.]]></description>
			<content:encoded><![CDATA[<p>When using WordPress as a CMS, sometimes you have to trick out page menu bars. I often run sites with many static pages that I don&#8217;t want showing up in menus or (especially) in the commonly used horizontal page menu bar. And I don&#8217;t want to make them all child pages of something. That would be weird.</p>
<p>Thankfully, as with almost everything in WordPress, as soon as I realized I had a problem, I was able to find someone who had already solved it for me. The <a href="http://wordpress.org/extend/plugins/exclude-pages/">Exclude Pages Plugin</a> by <a href="http://www.simonwheatley.co.uk/">Simon Wheatley</a> adds a convenient little checkbox to the Page Edit page, asking if you want to include this page in page menus.</p>
<p>Fantastic.</p>
<h3>Changing the Default Setting on the Exclude Pages Plugin</h3>
<p>Most of the time when I&#8217;m using this plugin, it&#8217;s because I have some particular small group of pages I want displayed in navigation menus. I want the default to be &#8220;DO NOT include this page.&#8221; This makes me (and my clients who like to add pages and pages and ruin my beautiful navigation bars) have to think less.</p>
<p>Unfortunately, the default setting for the Exclude Pages plugin is &#8220;YES, include this page.&#8221; I wanted to change that.</p>
<p>If you&#8217;re using the Exclude Pages Plugin, and want to make the default setting an unchecked box, go into the exclude_pages.php file. (I did this right from the Plugin Editor inside the WordPress admin area.) Find the function called &#8220;ep_this_page_included&#8221; and change the first &#8220;return true&#8221; to &#8220;return false.&#8221;</p>
<p>Here&#8217;s what it looks like in the code:</p>
<p>BEFORE:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p954code1'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p9541"><td class="code" id="p954code1"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> ep_this_page_included<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post_ID</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// New post? Must be included then.</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #000088;">$post_ID</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$excluded_ids</span> <span style="color: #339933;">=</span> ep_get_excluded_ids<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// If there's no exclusion array, we can return true</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <a href="http://www.php.net/empty"><span style="color: #990000;">empty</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$excluded_ids</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// Check if our page is in the exclusion array</span>
	<span style="color: #666666; font-style: italic;">// The bang (!) reverses the polarity [1] of the boolean</span>
	<span style="color: #b1b100;">return</span> <span style="color: #339933;">!</span> <a href="http://www.php.net/in_array"><span style="color: #990000;">in_array</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post_ID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$excluded_ids</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// fn1. (of the neutron flow, ahem)</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>AFTER:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p954code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p9542"><td class="code" id="p954code2"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> ep_this_page_included<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post_ID</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// New post? Do NOT include!</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #000088;">$post_ID</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$excluded_ids</span> <span style="color: #339933;">=</span> ep_get_excluded_ids<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// If there's no exclusion array, we can return true</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <a href="http://www.php.net/empty"><span style="color: #990000;">empty</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$excluded_ids</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// Check if our page is in the exclusion array</span>
	<span style="color: #666666; font-style: italic;">// The bang (!) reverses the polarity [1] of the boolean</span>
	<span style="color: #b1b100;">return</span> <span style="color: #339933;">!</span> <a href="http://www.php.net/in_array"><span style="color: #990000;">in_array</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post_ID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$excluded_ids</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// fn1. (of the neutron flow, ahem)</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Now, new pages do not display in menus by default, but can easily be turned on in their Edit page if you want them to.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.socialbootstrap.com%2Fwordpress-plugin-tutorial-exclude-pages%2F&amp;linkname=WordPress%20Plugin%20Tutorial%3A%20Exclude%20Pages"><img src="http://www.socialbootstrap.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins I Use and Why &#8211; Brogan 100 #68</title>
		<link>http://www.socialbootstrap.com/what-wordpress-plugins-should-i-use/</link>
		<comments>http://www.socialbootstrap.com/what-wordpress-plugins-should-i-use/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 12:00:31 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Brogan 100]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=426</guid>
		<description><![CDATA[What WordPress plugins do <strong>YOU</strong> use?]]></description>
			<content:encoded><![CDATA[<p>This edition of the <a href="http://www.chrisbrogan.com/100-blog-topics-i-hope-you-write/" target="_new">Brogan 100</a> is incredibly easy.</p>
<p><a href="http://www.socialbootstrap.com/wordpress-plugins/">I have already written this post.</a></p>
<p>But more importantly&#8230;</p>
<p>What WordPress plugins do <strong>YOU</strong> use?</p>
<hr />
This post is part of the Brogan 100.<br />
Learn more <a href="http://www.socialbootstrap.com/how-to-find-blogging-ideas/">here</a> and <a href="http://www.chrisbrogan.com/100-blog-topics-i-hope-you-write/" target="_new">here</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.socialbootstrap.com%2Fwhat-wordpress-plugins-should-i-use%2F&amp;linkname=WordPress%20Plugins%20I%20Use%20and%20Why%20%26%238211%3B%20Brogan%20100%20%2368"><img src="http://www.socialbootstrap.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.socialbootstrap.com/what-wordpress-plugins-should-i-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Base Install</title>
		<link>http://www.socialbootstrap.com/wordpress-plugins/</link>
		<comments>http://www.socialbootstrap.com/wordpress-plugins/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:23:33 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[base install]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=373</guid>
		<description><![CDATA[What WordPress plugins should I use?

I get that question a lot.

The best answer is, "That depends on what you're trying to accomplish."

However- when it comes to Thought Leadership marketing, and the kinds of things I try to accomplish for my clients over and over, I've developed what I consider the "base install." That is- we set these things up automatically unless we have some big reason not to.

So here goes my overly long list of WP Plugins I use (Almost) every time:]]></description>
			<content:encoded><![CDATA[<p>What WordPress plugins should I use?</p>
<p>I get that question a lot.</p>
<p>The best answer is, &#8220;That depends on what you&#8217;re trying to accomplish.&#8221;</p>
<p>However- when it comes to Thought Leadership marketing, and the kinds of things I try to accomplish for my clients over and over, I&#8217;ve developed what I consider the &#8220;base install.&#8221; That is- we set these things up automatically unless we have some big reason not to.</p>
<p>So here goes my overly long list of WP Plugins I use (Almost) every time:</p>
<dl>
<dt><a href="http://www.addtoany.com/" target="_new">Add to Any: Share/Bookmark/Email Button</a></dt>
<dd>Help readers share, save, bookmark, and email your posts and pages using any service.</dd>
<dd>You can fill up your posts with little icons from everywhere, or you can be judicious and only include a few. OR you can put in one small button that allows people to pick which Social Networks they want to share/save to. They claim that they move the sites the viewer uses to the top, which sounds awesome.</dd>
<dt><a href="http://semperfiwebdesign.com/" target="_new">All in One SEO Pack</a></dt>
<dd>Out-of-the-box SEO for your WordPress blog.</dd>
<dd>Easiest way I know to add meta-data to every page and post. I know that stuff doesn&#8217;t affect Google as much as it used to, but it&#8217;s still good practice to include it.</dd>
<dt><a href="http://ideasilo.wordpress.com/2007/04/30/contact-form-7/" target="_new">Contact Form 7</a></dt>
<dd>Just another contact form plugin. Simple but flexible.</dd>
<dd>This is, by far, the best Contact and Feedback form I have ever used. It is easy, flexible, and just works. Also- you can have multiple forms in different places on your site. You can use it for way more than just a Contact Form.</dd>
<dt><a href="http://davidebenini.it/wordpress-plugins/events-manager/" target="_new">Events Manager</a></dt>
<dd>Manage events specifying precise spatial data (Location, Town, Province, etc).</dd>
<dd>A key component of Thought Leadership is public speaking and networking. This tool allows you to easily keep an event calendar, push invites, manage RSVPs, and all the great things you need for running events. It even integrates with Google Maps.<br />
One question: Has anybody integrated it with PayPal (or whatever) to charge for events? I&#8217;d like to know.</dd>
<dt><a href="http://srinig.com/wordpress/plugins/flexi-pages/" target="_new">Flexi Pages Widget</a></dt>
<dd>A highly configurable WordPress sidebar widget to list pages and sub-pages. User friendly widget control comes with various options.</dd>
<dd>I&#8217;m not a fan of the Pages widget that comes with WP. This allows you to set up specific versions of sidebar page menus. It was one of the first plugins I started using, and I really like it.<br />
I&#8217;ve been thinking about switching to the Simple Section Navigation Widget plugin, so if anyone has experience with that, please let me know.</dd>
<dt><a href="http://plugins.spiralwebconsulting.com/analyticator.html" target="_new">Google Analyticator</a></dt>
<dd>Adds the necessary JavaScript code to enable Google&#8217;s Analytics. After enabling this plugin visit the settings page and enter your Google Analytics&#8217; UID and enable logging.</dd>
<dd>I know people who like to add this code by hand, but I don&#8217;t touch code unless I have to. It is much easier and faster to let other minds do my work. Also, I just want my clients to have something that works, not something they have to understand.</dd>
<dt><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_new">Google XML Sitemaps</a></dt>
<dd>This plugin will generate a sitemaps.org compatible sitemap of your WordPress blog which is supported by Ask.com, Google, MSN Search and YAHOO.</dd>
<dd> Sitemaps are very important for indexing by Google et al. Turn this on and DO NOTHING- just let it do it&#8217;s thing.</dd>
<dt><a href="http://wordpress.org/extend/plugins/link-library/" target="_new">Link Library</a></dt>
<dd>Functions to generate link library page with a list of links.</dd>
<dd>I use this for outbound links pages, and other &#8220;Resources&#8221; sections. The functionality is great, and I can run multiple Library pages on a site. I&#8217;ve found it a little difficult to explain to clients, so if I can find something that works almost as well, but is easier to understand, I&#8217;d switch.</dd>
<dt><a href="http://geekyweekly.com/mylinkorder" target="_new">My Link Order</a></dt>
<dd>My Link Order allows you to set the order in which links and link categories will appear in the sidebar. Uses a drag and drop interface for ordering. Adds a widget with additional options for easy installation on widgetized themes.</dd>
<dd>The Link Library plugin can use your My Link Order info to keep your links in the order you want them in. Helpful.</dd>
<dt><a href="http://geekyweekly.com/mypageorder" target="_new">My Page Order</a></dt>
<dd>My Page Order allows you to set the order of pages through a drag and drop interface. The default method of setting the order page by page is extremely clumsy, especially with a large number of pages.</dd>
<dd>WordPress&#8217; native page ordering capability is &#8220;janky.&#8221; This corrects that problem. Most useful in context of the Page Menu Navigation Bar</dd>
<dt><a href="http://txfx.net/code/wordpress/page-links-to/" target="_new">Page Links To</a></dt>
<dd>Allows you to point WordPress pages or posts to a URL of your choosing. Good for setting up navigational links to non-WP sections of your site or to off-site resources.</dd>
<dd>Want to set up a redirect page? Want one of your NavBar buttons to go offsite? There are other ways to do it, but none so easy as this plugin.</dd>
<dt><a href="http://www.stuffbysarah.net/wordpress-plugins/page-menu-editor/" target="_new">Page Menu Editor</a></dt>
<dd>Allows you to customise the title attribute and menu label of each page link in wp_list_pages.</dd>
<dd>Navigation menus are important, and this givs you one more level of control over what gets displayed.</dd>
<dt><a href="http://geekgrl.net/wordpress/wordpress-profile-pic-plugin/" target="_new">Profile Pic</a>
<dt>
<dd>Allows authors to add a picture to their profile and automates the process of displaying profiles. Highly configurable via plugin and widget settings.</dd>
<dd>If you want people who visit your site to know who you are, use this plugin. I kept thinking there must be a way to add a photo&#8230; I assumed it was native. Maybe there is one, deep in there. But this plugin made it fast and easy- for me, and my clients.</dd>
<dt><a href="http://www.thaslayer.com/2008/11/08/slayers-custom-widgets-v12-wordpress-plugin-finally-out/" target="_new">TS Custom Widgets</a></dt>
<dd>This plugin enables you to select which widgets appear on specific posts, pages, categories,author&#8217;s posts and tag pages. By default, all widgets appear wherever the sidebar is loaded within your theme. With this plugin, you can configure where widgets are displayed on a per post or per WP Template(Using conditional Tags) basis.</dd>
<dd>I HATE the default &#8220;display on every page&#8221; nature of Widgets. That almost okay for a pure blog, but if you&#8217;re using WP as CMS, then you <em>need</em> this plugin.</dd>
<dt><a href="http://imthi.com/wp-analytics" target="_new">WordPress Google Analytics Reports</a></dt>
<dd>This plugin helps to get Google Analytics reports overview to your dashboard using Google Analytics Data API.</dd>
<dd>I just don&#8217;t feel like logging into Google Analytics every morning. And I know my clients are not going to wade through the data over there. This plugin displays a basic report telling most people what they are looking for: How may people visit my site? How long do they stay? Where do they come from?</dd>
<dt><a href="http://www.joedolson.com/articles/wp-to-twitter/" target="_new">WP to Twitter</a></dt>
<dd>Updates Twitter when you create a new blog post or add to your blogroll using Cli.gs. With a Cli.gs API key, creates a clig in your Cli.gs account with the name of your post as the title.</dd>
<dd>How do I automatically update Twitter when I post a blog? This is how. Runs on autopilot, or you can send custom Tweets with a post. Every option you would be looking for in a Tweet-when-I-post app, including analytics integration.</dd>
<dt><a href="http://freeautoresponder.biz/" target="_new">[GWA] AutoResponder</a></dt>
<dd>A plugin to add a powerful Double Opt-In Mail List Builder and AutoResponder to your WordPress Weblog.</dd>
<dd>All my clients want an email newsletter subscription function. Here it is. I&#8217;ve had a few problems with it, and it isn&#8217;t all that user-friendly- but it&#8217;s the best I can find (for free). Any replacement suggestions?</dd>
</dl>
<p>That&#8217;s my list. Every single one of those is installed and activated before I even begin design or content work on a site. Sometimes it feels like a bit too many, but we (my clients and I) really use all those functionalities. And so far, I haven&#8217;t had any weird interference problems.</p>
<p>I&#8217;d appreciate comments regarding alternatives (especially to the ones I mentioned I&#8217;ve had trouble with), as well as questions, ideas, and other &#8220;must-have&#8221; plugins.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.socialbootstrap.com%2Fwordpress-plugins%2F&amp;linkname=WordPress%20Base%20Install"><img src="http://www.socialbootstrap.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.socialbootstrap.com/wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which is Better, Atahualpa or Thesis?</title>
		<link>http://www.socialbootstrap.com/atahualpa-vs-thesis/</link>
		<comments>http://www.socialbootstrap.com/atahualpa-vs-thesis/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:36:50 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Atahualpa Theme]]></category>
		<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=351</guid>
		<description><![CDATA[How does Atahualpa compare to Thesis? 
Well...

Atahualpa is a powerful, customizable, SEO-optimized Word Press theme with excellent user support.

Thesis is a powerful, customizable, SEO-optimized Word Press theme with excellent user support.

Atahualpa is free.

Thesis is not free.]]></description>
			<content:encoded><![CDATA[<p>Customizable word press themes. That&#8217;s what everyone wants, right. There are a handful, the two most popular are <a href="http://wordpress.bytesforall.com/" target="_new" >Atahualpa (by Bytes for All)</a> and <a href="http://diythemes.com/?a_aid=adamwood" target="_new" >Thesis (by DIY Themes)</a>. So&#8230; which is better, Thesis or Atahualpa?</p>
<p>Atahualpa is a powerful, customizable, SEO-optimized Word Press theme with excellent user support.</p>
<p>Thesis is a powerful, customizable, SEO-optimized Word Press theme with excellent user support.</p>
<p>Atahualpa is free.</p>
<p>Thesis is not free.</p>
<p>Hmm&#8230; Easy decision?</p>
<p>Well, no.</p>
<p>As you might suspect, Thesis really is a better theme. If the amount of “better” is worth the price ($87 for an individual; $164 for a developers license), then you should go with Thesis. If not, Atahualpa is the way to go.</p>
<p>So what does Thesis do that Atahualpa doesn’t?<br />
Among other things:</p>
<p>-“Web 2.0” look and feel.<br />
You can trick out Atahualpa pretty well if you have a mind to and have some patience with CSS, but Thesis was clearly developed by a good designer, not just a good programmer. Thesis sites tend to come out looking a little more contemporary, rich, and dynamic. Without a lot of thought and work (and design sense on your part), Atahualpa sites can come out looking a little “static.”</p>
<p>-Typography<br />
The internet is the bane of all people who care about the way text looks. From available fonts to justification issues to imperfect kerning, browsers just aren’t smart enough to make things look like they should. Other than standard CSS, Atahualpa doesn’t give you any help with typography. Thesis has some great built-in tools to make Typography work better (it’s actually one of their selling points).</p>
<p>-Tutorials and Support<br />
Atahualpa has a fantastic support forum. Almost everything I’ve ever had trouble with, I’ve been able to find out about on the Atahualpa Support Forum. But Thesis goes even further- support, tutorials, videos, guides. And a lot of third party material.<br />
The developers of Thesis were smart enough to create an affiliate selling program, which means that other bloggers and web masters have an economic incentive to get people to use Thesis. That also gives them an incentive to create helpful guides and tutorials.<br />
Without a similar incentive, there isn’t nearly as much third-party help with Atahualpa.</p>
<p>-SEO<br />
Atahualpa is good at Search Engine Optimization, and plays well with SEO plugins like All-In-One or Platinum. The developer of Atahualpa “lived off SEO for several years” (whatever that means). But Thesis creates cleaner, better optimized HTML, which the Google spiders like just a little more. If you’re looking for an SEO edge, Thesis is the way to go.</p>
<p>-Load Time<br />
Because of it’s cleaner code (another Thesis selling point), Thesis pages tend to load a little faster than Atahualpa pages.</p>
<p>-Hackiness<br />
Hackiness is fixing your above-ground swimming pool with duct-tape and a blue tarp. Elegance is an in-ground swimming pool with a screened enclosure.<br />
Both “get the job done” (providing a place for neighborhood children to splash around and pee), but one is much more relaxing, inviting, and attractive.<br />
Atahualpa is like a decent above-ground swimming pool (no blue tarp). It works well, it gets the job done, it seldom floods my yard. But it is a little hacky. Just a little. And tricking it out with a specific visual style and functionality can end up being very hacky. Duct-tape and chewing gum hacky, in some cases.<br />
Thesis is less hacky, more elegant; less blue tarp, more in-ground.</p>
<p>There are other issues as well, and the hard-core Thesis people all have their particular favorite thing that Thesis does.</p>
<p>Overall, the ROI on the Thesis price seems excellent- and if you have any capital at all, I’d recommend going with the <a href="http://diythemes.com/?a_aid=adamwood" target="_new">Thesis Theme for a business</a>. But if you’re broke, or a hobbyist, <a href="http://wordpress.bytesforall.com/" target="_new">Atahualpa</a> will serve very well with no or very few problems.</p>
<p>So which do I use?</p>
<p>As much as I love Thesis, this site runs on Atahualpa, for two reasons:<br />
-This site was designed before Thesis was available. When Thesis became available, I didn’t really want to take the time to redo the layout and visual design.<br />
-Moreover, the use of Atahualpa is a great Bootstrapping example. Social Bootstrap is all about stretching and leveraging of resources. I like to point out what is possible for businesses to accomplish with no or little capital. For some micro-startups or muse projects, even $87 might be too much. For them, I keep using the Atahualpa theme.</p>
<p>If you have additional thoughts about Thesis or Atahualpa, especially technical specifics, website examples, success stories, or tragic episodes- please share them in the comments. </p>
<hr />
<em>Disclaimer: The links to the Thesis Theme are affiliate links, which means that if you purchase the Theme through a link from this site, I&#8217;ll receive a small commission. If you think that makes me a bad person, but you still want to buy Thesis, then close this page and do a Google search for it yourself.</em></p>
<hr />
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.socialbootstrap.com%2Fatahualpa-vs-thesis%2F&amp;linkname=Which%20is%20Better%2C%20Atahualpa%20or%20Thesis%3F"><img src="http://www.socialbootstrap.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.socialbootstrap.com/atahualpa-vs-thesis/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>

