<?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>BlueDog</title>
	<atom:link href="http://bluedogwebservices.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bluedogwebservices.com</link>
	<description>BlueDog Web Services</description>
	<lastBuildDate>Mon, 14 May 2012 05:08:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-beta3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>CSS Trick: Turning a background image into a clickable link &#8211; Take 2</title>
		<link>http://bluedogwebservices.com/css-trick-turning-a-background-image-into-a-clickable-link-take-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css-trick-turning-a-background-image-into-a-clickable-link-take-2</link>
		<comments>http://bluedogwebservices.com/css-trick-turning-a-background-image-into-a-clickable-link-take-2/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 15:33:42 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=1275</guid>
		<description><![CDATA[My previous solution to this was built on Phark&#8217;s &#8220;Accessible Image Replacement&#8221; technique. It works by pushing the text really far to the left (9,999 pixels) which makes sure it&#8217;s there for screen readers but hidden from users (unless someone &#8230; <a href="http://bluedogwebservices.com/css-trick-turning-a-background-image-into-a-clickable-link-take-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://bluedogwebservices.com/css-trick-turning-a-background-image-into-a-clickable-link/" title="CSS Trick: Turning a background image into a clickable link">previous solution to this</a> was built on Phark&#8217;s &#8220;Accessible Image Replacement&#8221; technique.  It works by pushing the text really far to the left (9,999 pixels) which makes sure it&#8217;s there for screen readers but hidden from users (unless someone has a display that&#8217;s able to show nearly 10,000 pixels to the left of the container in question).  The problem seems to be that some browsers, like the one on the iPad, render a 9,999px box even though it&#8217;s not visible.  This affects performance, especially for animations.</p>
<p>Well, there&#8217;s a better way.  It works similarly, but instead of pushing the textual content so far left that we&#8217;re sure it&#8217;s outside the visible area, we push it just outside the box to the right.  The advantage is that even without knowing how long the text is, we know exactly how far to push it to make sure it&#8217;s completely out of the box.  So if you&#8217;re asking &#8220;How do I make a background image clickable?&#8221; This is the new answer.  It&#8217;s easy, just follow these steps and I&#8217;ll show you how to make a clickable background image like this:</p>
<p><a href="http://bluedogwebservices.com/" title="Professional WordPress Development" style="background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);display:block;height:116px;width:250px;text-indent:100%;overflow:hidden;white-space:nowrap;">BlueDog Web Services</a></p>
<p><span id="more-1275"></span></p>
<p>Start with just a link exactly as you would make it for any other purpose, and make sure to give the link an id so that we can use that to apply our styles:</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href=&quot;http://bluedogwebservices.com/&quot; title=&quot;Professional WordPress Development&quot; id=&quot;bluedog-logo&quot;&gt;BlueDog Web Services&lt;/a&gt;</pre>
<p>That&#8217;s all the (X)HTML you&#8217;ll need to make your background image clickable.  Your link should look something like this: <a href="http://bluedogwebservices.com/" title="Professional WordPress Development" id="bluedog-logo">BlueDog Web Services</a></p>
<p>So, how can we make a background image a clickable link? It turns out it can be done with a clever CSS trick.  Let&#8217;s get started by adding the background image and make the link the same size as the image (so you can see the whole image).  Since an anchor tag isn&#8217;t a block level element, we need to force it to display as &#8220;block&#8221; so that we can specify the size:</p>
<pre class="brush: css; title: ; notranslate">
#bluedog-logo {
	background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);
	display:block;
	height:116px;
	width:250px;
}
</pre>
<p>At this point it should look something like this: <a href="http://bluedogwebservices.com/" title="Professional WordPress Development" style="background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png); width:250px; height:116px; display:block;">BlueDog Web Services</a></p>
<p>Now all we need to do is hide the text.  This can be done using &#8220;text-indent&#8221; to indent the text just outside the containing box, using &#8220;white-space&#8221; set to nowrap to keep the text from wrapping back into the box, and using &#8220;overflow&#8221; to hide content outside the box like this:</p>
<pre class="brush: css; highlight: [5,6,7]; title: ; notranslate">
#bluedog-logo {
	background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);
	display:block;
	height:116px;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	width:250px;
}
</pre>
<p>And the finished product looks like this: <a href="http://bluedogwebservices.com/" title="Professional WordPress Development" style="background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);display:block;height:116px;overflow:hidden;text-indent:-9999px;white-space:nowrap;width:250px;">BlueDog Web Services</a></p>
<p>And there you have it – a quick CSS trick with clean markup that turns your background images into clickable links.  The best thing is, these don&#8217;t adversely affect your <abbr title="Search Engine Optimization">SEO</abbr> and can even be easily used inside of header tags if needed!</p>
<p>Update:<br />
I was asked how to add a border.  Here it is with a CSS border:</p>
<pre class="brush: css; highlight: [3]; title: ; notranslate">
#bluedog-logo {
	background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);
	border:1px solid #CCC;
	display:block;
	height:116px;
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	width:250px;
}
</pre>
<p><a href="http://bluedogwebservices.com/" title="Professional WordPress Development" style="background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);border:1px solid #CCC;display:block;height:116px;overflow:hidden;text-indent:-9999px;white-space:nowrap;width:250px;">BlueDog Web Services</a></p>
<p>That obviously works, but the border is too close for my liking and adding padding causes our image to be out of place.  Here&#8217;s the solution:</p>
<pre class="brush: css; highlight: [3,4,9]; title: ; notranslate">
#bluedog-logo {
	background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);
	background-position:5px 5px;
	background-repeat:no-repeat;
	border:1px solid #CCC;
	display:block;
	height:116px;
	overflow:hidden;
	padding:5px;
	text-indent:100%;
	white-space:nowrap;
	width:250px;
}
</pre>
<p>Basically we&#8217;re adding 5 pixels of padding all around, re-positioning the background image to 5px in from the top and left, then setting the background image to not repeat.  Now our border looks nice:<br />
<a href="http://bluedogwebservices.com/" title="Professional WordPress Development" style="background-image:url(/bd-content/uploads/2009/11/BlueDogLogo-250x116.png);background-position:5px 5px;background-repeat:no-repeat;border:1px solid #CCC;display:block;height:116px;overflow:hidden;padding:5px;text-indent:-9999px;white-space:nowrap;width:250px;">BlueDog Web Services</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/css-trick-turning-a-background-image-into-a-clickable-link-take-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Different Post Formats per Post Type</title>
		<link>http://bluedogwebservices.com/different-post-formats-per-post-type/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=different-post-formats-per-post-type</link>
		<comments>http://bluedogwebservices.com/different-post-formats-per-post-type/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 07:04:00 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Post Formats]]></category>
		<category><![CDATA[Post Types]]></category>
		<category><![CDATA[WordPress Howto]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=1271</guid>
		<description><![CDATA[WordPress has had post formats for a while now, and it&#8217;s a really useful feature. However, what if you want to allow different post formats for different post types? Well it&#8217;s actually pretty easy, but if you&#8217;re unclear on the &#8230; <a href="http://bluedogwebservices.com/different-post-formats-per-post-type/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>WordPress has had <a href="http://codex.wordpress.org/Post_Formats">post formats</a> for a while now, and it&#8217;s a really useful feature.  However, what if you want to allow different post formats for different <a href="http://codex.wordpress.org/Post_Types">post types</a>?  Well it&#8217;s actually pretty easy, but if you&#8217;re unclear on the difference between post formats and post types, then you should really start by reading <a href="http://markjaquith.wordpress.com/2010/11/12/post-formats-vs-custom-post-types/">Post Formats vs. Custom Post Types</a> by Mark Jaquith.</p>
<p>A site I was recently working on wanted to use the &#8220;video&#8221; post format for regular posts and the &#8220;quote&#8221; post format in their &#8220;news&#8221; posts (these posts show like a news ticker).  Here&#8217;s what I did to get it working:</p>
<pre class="brush: php; title: ; notranslate">
function bd_remove_twentyeleven_options() {
	// We only support &quot;quote&quot; for News Items and &quot;video&quot; for posts
	add_theme_support( 'post-formats', array( 'quote', 'video' ) );
}
add_action( 'after_setup_theme','bd_remove_twentyeleven_options' );

function bd_adjust_post_formats() {
	if ( $post_id ) {
		$post = get_post( $post_id );
		if ( $post )
			$post_type = $post-&gt;post_type;
	} elseif ( !isset($_GET['post_type']) )
		$post_type = 'post';
	elseif ( in_array( $_GET['post_type'], get_post_types( array('show_ui' =&gt; true ) ) ) )
		$post_type = $_GET['post_type'];
	else
		return; // Page is going to fail anyway

	if ( 'news' == $post_type )
		add_theme_support( 'post-formats', array( 'quote' ) );
	elseif ( 'post' == $post_type )
		add_theme_support( 'post-formats', array( 'video' ) );
}
add_action( 'load-post.php','bd_adjust_post_formats' );
add_action( 'load-post-new.php','bd_adjust_post_formats' );
</pre>
<p>First, we set the post formats like usual.  These will be overridden on the new post and post edit pages, but everywhere else we will say that we support both quote and video post formats.</p>
<p>Then we hook in to the post edit page and the new post page.  The first chunk of if/elseif statements gets the post type by first checking the post (if we&#8217;re editing), then checking the $_GET variable.</p>
<p>Last we simply alter what post formats our theme says it supports based on the post type.  In this case for news we change it to just &#8216;quote&#8217; and for post we change it to just &#8216;video&#8217;.  For now I leave other post types alone.</p>
<p>Simple, effective, and REALLY useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/different-post-formats-per-post-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Phoenix 2012 &#8211; E-Commerce</title>
		<link>http://bluedogwebservices.com/wordcamp-phoenix-2012-e-commerce/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordcamp-phoenix-2012-e-commerce</link>
		<comments>http://bluedogwebservices.com/wordcamp-phoenix-2012-e-commerce/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 15:48:51 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[WordCamp Phoenix]]></category>
		<category><![CDATA[WordCamp Phoenix 2012]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=1207</guid>
		<description><![CDATA[It&#8217;s here! This is the video of my talk on e-commerce from WordCamp Phoenix 2012 and here are the slides to go with it. The slides are built in a WordPress theme file, and completely hosted on this WordPress site. &#8230; <a href="http://bluedogwebservices.com/wordcamp-phoenix-2012-e-commerce/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s here!  This is the video of my talk on e-commerce from WordCamp Phoenix 2012 and here are the <a href="http://bluedogwebservices.com/wordcamp-phoenix-2012/" title="WordCamp Phoenix 2012 – E-Commerce">slides to go with it</a>.  The slides are built in a WordPress theme file, and completely hosted on this WordPress site.  Click on any slide or press F5 to start the slideshow, and use the arrows to navigate between the slides.</p>
<p><embed src="http://v.wordpress.com/rHmizogA" type="application/x-shockwave-flash" width="590" height="331" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/wordcamp-phoenix-2012-e-commerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shame on GoDaddy</title>
		<link>http://bluedogwebservices.com/shame-on-godaddy/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shame-on-godaddy</link>
		<comments>http://bluedogwebservices.com/shame-on-godaddy/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 17:30:05 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[SOPA]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=1042</guid>
		<description><![CDATA[Update: I have good news and bad news. The good news is that GoDaddy says they no longer support SOPA! The bad news is that it seems GoDaddy are liars. The Stop Online Piracy Act (SOPA) is a horrible idea. &#8230; <a href="http://bluedogwebservices.com/shame-on-godaddy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="notice">Update: I have good news and bad news.  The good news is that <a href="http://www.godaddy.com/newscenter/release-view.aspx?news_item_id=378">GoDaddy says they no longer support SOPA</a>!  The bad news is that it seems <a href="http://techcrunch.com/2011/12/23/godaddy-ceo-there-has-to-be-consensus-about-the-leadership-of-the-internet-community/">GoDaddy are liars</a>.</p>
<p>The Stop Online Piracy Act (SOPA) is a horrible idea.  It threatens the Internet in the US, and thus it directly threatens my livelihood.  I like how Adam Savage of MythBusters fame put it in <a href="http://www.popularmechanics.com/science/mythbusters/articles/mythbuster-adam-savage-sopa-could-destroy-the-internet-as-we-know-it-6620300">SOPA Could Destroy the Internet as We Know It</a>:</p>
<blockquote><p>Make no mistake: These bills aren&#8217;t simply unconstitutional, they are anticonstitutional. &#8230; If we allow Congress to pass these draconian laws, we&#8217;ll be joining nations like China and Iran in filtering what we allow people to see, do, and say on the Web. And we&#8217;re better than that.</p></blockquote>
<p>Well, I found out yesterday that GoDaddy supports this awful legislation.  At first I assumed it was a mistake.  No tech company could get behind something like this.  However, after doing my due diligence I found that it is unfortunately true.  If you want to contact GoDaddy, send your emails to <a href="mailto:oop@godaddy.com">oop@godaddy.com</a> (This is the &#8220;office of the president&#8221;, the highest non-corporate level you can talk to) and/or <a href="mailto:suggestions@godaddy.com">suggestions@godaddy.com</a>.</p>
<p>I may not be a big customer with my 32 domains, but definitely put my money where my mouth is.  I just spent $256.38 to move 30 of my domains to <a href="http://www.namecheap.com/">Namecheap</a> using the promo code BYEBYEGD and the other two will move as soon as they&#8217;re 60 days old (01/30/2012).  I encourage you to do the same.</p>
<p>Update: <strong>Huge</strong> props to Ben Huh of the Cheezburger Network for his stance against GoDaddy.<br />
<a href="https://twitter.com/#!/benhuh/status/149965881479397376"><img src="http://bluedogwebservices.com/bd-content/uploads/2011/12/ben-huh-vs-godaddy.png" alt="" title="Ben Huh vs GoDaddy" width="526" height="253" class="alignnone size-full wp-image-1046" /></a><br />
You rock Ben!</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/shame-on-godaddy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stop Internet Censorship Legislation in the US</title>
		<link>http://bluedogwebservices.com/stop-internet-censorship-legislation-in-the-us/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stop-internet-censorship-legislation-in-the-us</link>
		<comments>http://bluedogwebservices.com/stop-internet-censorship-legislation-in-the-us/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 20:37:27 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=1024</guid>
		<description><![CDATA[I hate politics. I value honesty, morality, and personal responsibility, all of which seem to be overwhelmingly lacking in nearly every area of politics and law making. Having said all that, I still try to follow what&#8217;s going on. Why? &#8230; <a href="http://bluedogwebservices.com/stop-internet-censorship-legislation-in-the-us/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I hate politics.  I value honesty, morality, and personal responsibility, all of which seem to be overwhelmingly lacking in nearly every area of politics and law making.</p>
<p>Having said all that, I still try to follow what&#8217;s going on.  Why?  Well, because I need to know what&#8217;s going on if I plan to vote, and how can I expect things to get better (or not get worse) if I won&#8217;t do anything about it.  The <a href="http://www.opencongress.org/bill/112-s968/show">Protect IP Act</a> is a perfect example.  It needs to be stopped because it threatens our free speech and the internet as a whole.  The video below sums it up pretty well.</p>
<p><iframe src="http://player.vimeo.com/video/31100268" width="590" height="332" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p>Go to <a href="http://fightforthefuture.org/pipa/">Fight for the Future</a> and <a href="http://americancensorship.org/">American Censorship</a> to send a message to congress.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/stop-internet-censorship-legislation-in-the-us/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Speaking at WordCamp San Francisco 2011</title>
		<link>http://bluedogwebservices.com/speaking-at-wordcamp-san-francisco-2011/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=speaking-at-wordcamp-san-francisco-2011</link>
		<comments>http://bluedogwebservices.com/speaking-at-wordcamp-san-francisco-2011/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 21:17:00 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordCamp SF 2011]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=982</guid>
		<description><![CDATA[So it seems I&#8217;m speaking at WordCamp SF this year, which is awesome! I&#8217;ve attended for the last few years, and it has been instrumental in getting me involved more with the WordPress community and specifically with the development of &#8230; <a href="http://bluedogwebservices.com/speaking-at-wordcamp-san-francisco-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://2011.sf.wordcamp.org"><img title="I'm speaking at WordCamp San Francisco 2011!" src="http://2011.sf.wordcamp.org/files/2011/07/wcsf11-badge-speaker.png" alt="I'm speaking at WordCamp San Francisco 2011!" width="150" height="150" class="alignleft" /></a>So it seems <a href="http://2011.sf.wordcamp.org/speakers/#aaron-d-campbell">I&#8217;m speaking at WordCamp SF</a> this year, which is awesome!  I&#8217;ve attended for the last few years, and it has been instrumental in getting me involved more with the WordPress community and specifically with the development of WordPress.</p>
<p><a href="http://theandystratton.com/">Andy Stratton</a> and I will be presenting <strong>Getting Involved: Contribution &#038; Courtesy</strong> <em>A conversation about methods of contributing to WordPress and the community, why you should do it, and how it benefits everyone &#8211; including you.</em> Do you think you don&#8217;t have time to contribute to WordPress?  Are you unsure what makes contributing worth it?  Do you not know how to contribute or how to interact with the community as a whole?  Then don&#8217;t miss this!</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/speaking-at-wordcamp-san-francisco-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Dream Theme</title>
		<link>http://bluedogwebservices.com/wordpress-dream-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-dream-theme</link>
		<comments>http://bluedogwebservices.com/wordpress-dream-theme/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 01:48:16 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=961</guid>
		<description><![CDATA[James Pearson has always been an inspiration to me. Recently we had a chance to talk about chasing dreams and how the pursuit of dreams has had such a drastic impact on history. As we discussed dreams I spoke of &#8230; <a href="http://bluedogwebservices.com/wordpress-dream-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://jamesapearson.com/">James Pearson</a> has always been an inspiration to me.  Recently we had a chance to talk about chasing dreams and how the pursuit of dreams has had such a drastic impact on history.  As we discussed dreams I spoke of big picture dreams.  The life changing stuff.  It was inspiring, but that&#8217;s for another post.  This post is actually about my smaller dreams that I realized later.</p>
<p>I want a WordPress theme that is built and maintained like WordPress.  I want it to be licensed under the GPL, completely free, maintained by a group of lead developers, worked on by a larger group of contributors, lightweight, fast, flexible, and extremely extensible.  I&#8217;m not talking about a new default theme.  Twentyten and Twentyeleven are awesome for new users to be able to start a great looking site quickly and easily.  Instead I want something that is more like WordPress in that it&#8217;s basic and powerful, but mostly extensible.  I call it Essence.</p>
<p>My dream in a nutshell:</p>
<ul>
<li>The development would be guided by a small group of trusted developers</li>
<li>Anyone would be welcome to contribute code based on a meritocracy much like WordPress.org (and probably closely tied to it)</li>
<li>It would use the same 80/20 and &#8220;decisions over options&#8221; approach to development</li>
<li>More advanced functionality would come from plugins that the theme is designed to work with.  For example, I&#8217;d love to see the theme fully support Joost&#8217;s <a href="http://yoast.com/wordpress/seo/">WordPress SEO</a> plugin, giving it the hooks it needs to be as effective as possible.</li>
<li>I&#8217;d like to see it support BuddyPress, forums (like BBPress), even E-Commerce (like Shopp)</li>
<li>People that work in a niche (like publishing) would be able to make plugins that make developing a theme for their niche easier.</li>
<li>It needs to be well coded, secure, and fast</li>
<li>The most important thing is that someone should be able to easily create a child theme that inherits all this amazing functionality.  It should not only make it easier to make a theme, it should make it easier to make a powerful theme that supports nearly everything WordPress supports.</li>
</ul>
<p>There are some great theme frameworks out there (like <a href="http://www.studiopress.com/themes/genesis">Genesis</a>), but as far as I know none of them are community ran and completely free like I envision.</p>
<p>I&#8217;ve started on the theme and <a href="http://themes.trac.wordpress.org/ticket/4677">submitted it to the themes repository</a>.  I call it Essence because I want it to be &#8220;the most significant element, quality, or aspect of&#8221; other themes.  However, I need help.  It can&#8217;t be community developed without the community.  If you&#8217;re interested in helping out, <a href="http://xavisys.com/contact-us/">contact me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/wordpress-dream-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 3.2 is available</title>
		<link>http://bluedogwebservices.com/wordpress-3-2-is-available/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-3-2-is-available</link>
		<comments>http://bluedogwebservices.com/wordpress-3-2-is-available/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 19:46:19 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=967</guid>
		<description><![CDATA[WordPress 3.2 has officially been released. You can either update right from your dashboard or download it from WordPress.org. The main focus of this release was to speed everything up. Lighter and faster was the goal and we definitely accomplished &#8230; <a href="http://bluedogwebservices.com/wordpress-3-2-is-available/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/news/2011/07/gershwin/">WordPress 3.2 has officially been released</a>.  You can either update right from your dashboard or <a href="http://wordpress.org/download/">download it from WordPress.org</a>.  The main focus of this release was to speed everything up.  Lighter and faster was the goal and we definitely accomplished it.  The dashboard loads faster than ever before, as does every other admin page.</p>
<p>The speed difference is amazing and you can expect it to get faster still in the versions to come.  The main reasons are that we have stopped supporting ancient (in internet time) software.  The WordPress admin no longer supports Internet Explorer 6 (a 10 year old browser that <a href="http://ie6countdown.com/">even Microsoft wants to see disappear</a>) and bumped the required PHP version to 5.2.4 and the required MySQL version to 5.0.  Well over 90% of all WordPress installs will be completely unaffected by these changes in the system requirements, but for those of you on older versions a quick E-Mail to your hosting provider will probably get you what you need.</p>
<p>Additionally in 3.2 Distraction Free Writing was introduced.  You can now go full-screen when writing a post and see nothing but the text you are typing.  All the extra things that normally distract you simply fade away, letting you really focus on your writing.  I honestly wasn&#8217;t very sure about this feature during the planning phases of 3.2, but having used it and tested it throughout the process, I can say that I was converted.  I definitely recommend everyone try it out and see how much time you save while writing your posts!</p>
<p>There are a ton of other small enhancements in 3.2, but the last ones I want to mention are a couple new links in the footer of WordPress admin.  One says &#8220;Freedoms&#8221; and one says &#8220;Credits&#8221;.  WordPress is licensed under the <acronym title="GNU General Public License">GPL</acronym> and the Freedoms link takes you to a page that explains in relatively simple terms how you benefit from this particular license.  The Credits link will show you who you can thank for WordPress 3.2.  Well over 100 people contributed to making WordPress 3.2, and here you can see who those people are as well as see a list of third party libraries that WordPress uses.  If you get a chance, thank these people for helping to create a great product that you can use for free!</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/wordpress-3-2-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization (SEO) in Simple Terms</title>
		<link>http://bluedogwebservices.com/search-engine-optimization-seo-in-simple-terms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=search-engine-optimization-seo-in-simple-terms</link>
		<comments>http://bluedogwebservices.com/search-engine-optimization-seo-in-simple-terms/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 00:03:46 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[web developer resource]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=913</guid>
		<description><![CDATA[First let me say that search engine optimization is a very complex subject. There are people who really know what they are doing and plenty of people that don&#8217;t. This writeup will not get you to the point where you &#8230; <a href="http://bluedogwebservices.com/search-engine-optimization-seo-in-simple-terms/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>First let me say that search engine optimization is a very complex subject.  There are <a href="http://yoast.com/">people who really know what they are doing</a> and plenty of <a rel="nofollow" href="http://www.forumlinkbuilding.com/view/link_building_services">people that don&#8217;t</a>.  This writeup will not get you to the point where you really understand it all, and I highly recommend that you budget for a professional, but this will be a good start for people that are just starting and need to know what they can do.</p>
<p>Search Engine Optimization, in simple terms, breaks down into two sections; onsite and offsite.  Onsite is well within your control and is the first thing you should focus on.  Offsite is harder to control and is something you will focus more on later.</p>
<h3>Onsite</h3>
<p>First, make a list of key phrases that you want to rank well for in search engines.  Usually these should be two to five words long.  It is not realistic for you to think that your site will rank for a term like &#8220;jewelery&#8221; (you&#8217;d be competing against Jared, Tiffany, Kay, etc), but you may rank very well for something like &#8220;vintage typewriter jewelry&#8221;.  Make sure to be reasonable about what you can and cannot compete for.</p>
<p>I recommend using a something like <a href="https://adwords.google.com/select/KeywordToolExternal">Google&#8217;s Adwords Keyword Tool</a> to research your terms.  Obviously more traffic is good, but remember to check who you are competing against and always ask yourself &#8220;will my perfect client really search for this term?&#8221;.  Also try to keep an open mind.  Take a look at other terms that Google things are related to the one you put in.  Remember that you are likely far more knowledgeable about your products/services than your clients, which means they will likely be using different terminology when searching.</p>
<p>You need to also try to understand what I call key phrase clusters.  For example, when I checked out &#8220;Vintage Typewriter Jewelry&#8221; I found that it is searched for 140 times per month.  That&#8217;s not a lot.  However, I also saw that &#8220;Typewriter Key Jewelry&#8221; is searched 880 times per month (seven times as often).  I also saw that &#8220;Vintage Typewriter Key Jewelry&#8221; is searched 91 times per month and immediately I saw a key phrase cluster.  Basically, there are three phrases that are all basically the same, and if we are careful we can target them all at once.  How?  Well, we use the all inclusive &#8220;Vintage Typewriter Key Jewelry&#8221; phrase.  Take a look:</p>
<ul>
<li>&#8220;<strong>Vintage Typewriter Key Jewelry</strong>&#8221; = &#8220;Vintage Typewriter Key Jewelry&#8221; which is searched 91 times per month</li>
<li>&#8220;Vintage <strong>Typewriter Key Jewelry</strong>&#8221; = &#8220;Typewriter Key Jewelry&#8221; which is searched 880 times per month</li>
<li>&#8220;<strong>Vintage Typewriter</strong> Key <strong>Jewelry</strong>&#8221; = &#8220;Vintage Typewriter Jewelry&#8221; which is searched 140 times per month</li>
</ul>
<p>By using the one phrase regularly on a site you can actually target all three.  Search engines can easily understand that someone searching for &#8220;Vintage Typewriter Jewelry&#8221; may be interested in &#8220;Vintage Typewriter Key Jewelry&#8221;.</p>
<p>This takes time.  Quite a bit of time.  <strong>It takes time to build a list of key phrases (or key phrase clusters)</strong>.  There&#8217;s really no way around that.  The thing is&#8230;<strong>it will pay off</strong>.</p>
<p>So, once you have your list, when/where do you use these?  The answer in short is&#8230;everywhere.  You don&#8217;t want to &#8220;keyword stuff&#8221; which basically means to put them where they don&#8217;t make sense, but you do want to use them regularly.  When you write articles, when you write product descriptions, even when you write something on other sites and link back to yours.  These are supposedly phrases that describe something you are an authority on, so be authoritative!</p>
<h3>Offsite</h3>
<p>Offsite is something you have less control over.  The basics are that you want other sites to link to you.  These are called &#8220;inbound links&#8221; and are a metric that search engines use directly to rate your authority on any given phrase.  Often getting a link can be as easy as asking.  Sometimes a site would link to you if they just knew about you.  Asking is simple and effective, but remember that buying inbound links will get you penalized in search engines (I cannot be more clear than this: Do not buy links to your site).</p>
<p>The simplest way I can explain it is this: An inbound link is worth more to you if the site it&#8217;s coming from has content related to yours.  It&#8217;s worth even more if the page it&#8217;s on contains one or more of your target key phrases, and more still if the link itself contains one of your key phrases.  For example, this is ok: &#8220;I saw some great vintage typewriter key jewelry today, <a href="#">click here</a> to see it.&#8221; This is WAY better: &#8220;I saw some great <a title="eXtraordinary gifts making a world of difference" href="http://aesthetyx.com/">vintage typewriter key jewelry</a> today!&#8221;</p>
<p>You can help to curate incoming links by doing a few things:</p>
<ul>
<li>First and foremost you get incoming links by creating good content.  If someone sees a good article on your site, they will link to it.  I cannot stress enough that this is the absolute best thing you can do.  If you take nothing else from this entire article, please just remember that quality content is the key.</li>
<li>Approach sites whose users would be interested in your content and ask for a link.  Make sure to be specific when you ask.  It&#8217;s ok to say that you&#8217;d like the link text to be _____.  The worst they can do is say no.</li>
<li>Become active on other sites and link back to your own site.  I don&#8217;t mean spam, I mean really be active.</li>
<li>Other sites are looking for content too, so consider doing a guest post for another site that links to yours.</li>
</ul>
<p>This is by no means a definitive or exhaustive guide, but hopefully it&#8217;s enough to not only get you started, but carry you through for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/search-engine-optimization-seo-in-simple-terms/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>WordCamp Phoenix 2011 &#8211; A Developers Take</title>
		<link>http://bluedogwebservices.com/wordcamp-phoenix-2011-a-developers-take/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordcamp-phoenix-2011-a-developers-take</link>
		<comments>http://bluedogwebservices.com/wordcamp-phoenix-2011-a-developers-take/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 03:57:58 +0000</pubDate>
		<dc:creator>Aaron D. Campbell</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordCamp Phoenix]]></category>

		<guid isPermaLink="false">http://bluedogwebservices.com/?p=892</guid>
		<description><![CDATA[WordCamp Phoenix was amazing. The event was huge and well organized, thanks to Amanda Blum and Chuck Reynolds. I didn&#8217;t experience the event like most people, but here&#8217;s my take on it. Design/Developer Speed Meet Thursday there was a brand &#8230; <a href="http://bluedogwebservices.com/wordcamp-phoenix-2011-a-developers-take/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>WordCamp Phoenix was amazing.  The event was huge and well organized, thanks to <a href="http://www.howlingzoe.com/">Amanda Blum</a> and <a href="http://rynoweb.com/">Chuck Reynolds</a>.  I didn&#8217;t experience the event like most people, but here&#8217;s my take on it.</p>
<h3>Design/Developer Speed Meet</h3>
<p>Thursday there was a brand new event.  Basically, it applied the speed dating concept to connecting clients with designers/developers.  It was held at <a href="http://incohoots.com/">Co+Hoots</a> and went pretty well.  Designers and developers were separated based on whether they usually worked on projects over or under $3000, and the hirers were divided up likewise.  Chairs were positioned in lines facing one another, with developers/designers on one side and potential clients on the other.  Every five minutes the designers/developers moved one seat left.  All in all I thought it went quite well.  There <strong>were</strong> several problems, but only one could really be fixed.  The issues I had:</p>
<ol>
<li>Five minutes is really short
<ul>
<li>This was actually someone I heard a lot of people saying, but this is the whole point of the event.  My recommendation is just to show up early and stay late.  Use the time before and after to augment your five minute segments.</li>
</ul>
</li>
<li>People talk big
<ul>
<li>There were people that weren&#8217;t truthful about their budgets.  I&#8217;m assuming (although I wasn&#8217;t hiring so I don&#8217;t know for sure) there were developers that misrepresented their usual project size as well.  There&#8217;s not a lot you can do about this (at least no that I can think of).  People lie.  Still, it didn&#8217;t seem like an excessive percentage of the people.  Most seemed pretty legitimate.</li>
</ul>
</li>
<li>Loud music isn&#8217;t helpful
<ul>
<li>I know that the music was supposed to help break the ice and keep things upbeat, but unfortunately it made it nearly impossible to communicate well.  There is already a lot of noise just from all the voices going at once, so adding the music made it extra difficult.  To be fair, I happened to be on the side of the room with the speakers (this wasn&#8217;t by choice, it&#8217;s where I was supposed to be), but less music would be better.</li>
</ul>
</li>
</ul>
<h3>Friday Free Classes</h3>
<p>There were several class options.  I dropped in on the class <a href="http://boonebgorges.com/">Boone Gorges</a> was teaching and it looked like things were going well, but I was only there for about two minutes.  However, I spent the first half of the day at the <em>Intro to WordPress for Beginners</em> class taught by <a href="http://shaynesanderson.com" target="_blank">Shayne Sanderson</a>.  I had several friends local to Phoenix, who would consider themselves beginners, that attended the class as well.  The classes were quite long (both the teachers that I talked to were concerned about that), but the most difficult thing seemed to be that the audience was so diverse.  For example, even though my friends all considered themselves to be beginners, they seemed to be more advanced than the majority of the people there.  When we went to lunch they were saying that they really hadn&#8217;t got anything out of the class up to that point and were worried that unless the pace drastically changed they wouldn&#8217;t.  The solution seemed simple.  We went back to the hotel lobby and I have a mini-class.  It seemed to work out quite well.</p>
<p>I do want to stress that there was nothing wrong with the class.  Shayne was doing a great job, and most of the people in the class seemed to be learning a ton.  Maybe next time we could list things you can expect to learn from the class, so people can make sure it&#8217;s something that would work well for them.</p>
<h3>Pub Crawl</h3>
<p>Friday night there was a pub crawl.  The idea was great, but the location was a bummer.  My wife and I had a blast hanging out with <a href="http://andrewnacin.com/">Andrew Nacin</a>, <a href="http://koopersmith.wordpress.com/">Daryl Koopersmith</a>, <a href="http://sivel.net/">Matt Martz</a>, <a href="http://aaron.jorb.in/">Aaron Jorbin</a>, and <a href="http://developersmind.com/">Pete Mall</a>.  The only bummer was that we ended up at a bar that was about 30 minutes away from the hotel, where everyone else was.  It ended up spitting the group in two, which was a bummer.</p>
<h3>The Main Event</h3>
<p>I was at the <a href="http://www.chandlercenter.org/">Chandler Center for the Arts</a> at 6am to help set up.  All the volunteers were absolutely amazing.  There was a lot to do in order to make this event happen, and everyone did it with smiles on their faces (once they woke up completely).  Chairs were moved, equipment set up, food prepared, coffee made, check-in organized, etc.</p>
<p>Once check-in started, I started my main job for the day, which  was running the genius bar.  The genius bar actually went REALLY well.  We had enough geniuses to go around, so even though we helped around 60-80 people, only 3 people ever had to wait for a genius!  The geniuses answered questions about everything from setting up your first WordPress site, to Shopp specific questions, to CSS, to traffic building.</p>
<p><div id="attachment_898" class="wp-caption alignright" style="width: 310px"><a href="http://xavisys.com/wp-content/uploads/2011/02/wcphx-after-party-photo-booth.jpg"><img src="http://xavisys.com/wp-content/uploads/2011/02/wcphx-after-party-photo-booth-300x225.jpg" alt="Photo Booth at WordCamp Phoenix After Party" title="Photo Booth at WordCamp Phoenix After Party" width="300" height="225" class="size-medium wp-image-898" /></a><p class="wp-caption-text">Photo Booth at WordCamp Phoenix After Party - Notice the handcuffs hanging over Chelsea&#039;s name badge?</p></div><br />
<div id="attachment_897" class="wp-caption alignright" style="width: 310px"><a href="http://xavisys.com/wp-content/uploads/2011/02/wcphx-after-party-jjj-handcuffed.jpg"><img src="http://xavisys.com/wp-content/uploads/2011/02/wcphx-after-party-jjj-handcuffed-300x225.jpg" alt="JJJ Handcuffed at WordCamp Phoenix After Party" title="JJJ Handcuffed at WordCamp Phoenix After Party" width="300" height="225" class="size-medium wp-image-897" /></a><p class="wp-caption-text">Next time JJJ will watch out for Sally...she handcuffed him to the tree, then made him do shots from the ice luge to get out!</p></div></p>
<h3>The After Party</h3>
<p>You really have to hand it to Amanda and Chuck.  Not only did they pull off a truly great after party, but it was held at the Chandler City Hall!  There was plenty of alcohol and food, thanks to <a href="http://fourpeaks.com/">Four Peaks Brewery</a> and <a href="http://www.famousdaves.com/">Famous Dave&#8217;s BBQ</a>&#8230;and of course plenty of partying.  They set up a red carpet style photo booth, with plenty of props.  At first it was just photos, then the photos got funny as people continued to drink, then the props began to circulate (there were some really interesting red glasses with LEDs on them), and finally the handcuffs started circulating.  I saw no less than 4 people handcuffed throughout the night.</p>
<p>At midnight we cleaned up and headed out.</p>
<h3>The After After Party</h3>
<p>With the official after party over, several of us headed over to <a href="http://www.santanbrewing.com/">San Tan Brewing Co</a> next door to the hotel.  Many of the WordPress developers (myself included) only get to meet up a few times a year at various conferences, so we sat outside in the cold and continued the party until we closed down San Tan at a little after 2am.</p>
<h3>Dev Day &#8211; How to Contribute to WordPress</h3>
<p>Sunday afternoon we held a developer day.  The purpose was to show designers and developers how they could begin contributing to WordPress.  People learned about <abbr title="Subversion">SVN</abbr>, <a href="http://core.trac.wordpress.org/">TRAC</a>, etc, and even how the WordPress community works.  Hopefully we&#8217;ll have some brand new contributors soon!</p>
<div id="attachment_904" class="wp-caption alignleft" style="width: 310px"><a href="http://xavisys.com/wp-content/uploads/2011/02/wcphx-speaker-dinner.jpg"><img src="http://xavisys.com/wp-content/uploads/2011/02/wcphx-speaker-dinner-300x225.jpg" alt="WordCamp Phoenix Speaker/Organizer Appreciation Dinner" title="WordCamp Phoenix Speaker/Organizer Appreciation Dinner" width="300" height="225" class="size-medium wp-image-904" /></a><p class="wp-caption-text">The WordCamp Phoenix speaker/organizer appreciation dinner was held at this really cool urban farm in Central Phoenix</p></div>
<h3>Speaker/Organizer Dinner</h3>
<p>The event ended on a high note.  There was a speaker/organizer appreciation dinner that was held at <a href="http://www.myfarmyard.com/">MyFarmYard</a>, an urban farm in Central Phoenix.  The vegetables came from the urban farm, the meats were locally sourced, and even the wine was from an Arizona Winery.  The chef does pop-up restaurants all over Phoenix, offering amazing themed one-time menus at each location.  We dined outside, and there was a fire that made the crisp night enjoyable.  It was great food and great company, and a great way to end WordCamp Phoenix.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluedogwebservices.com/wordcamp-phoenix-2011-a-developers-take/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

