<?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>Jake Spurlock &#187; Wordpress</title>
	<atom:link href="http://jakespurlock.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://jakespurlock.com</link>
	<description>Something subtle from the heart of Utah County, recently grafted into Sonoma County.</description>
	<lastBuildDate>Wed, 02 May 2012 20:40:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<cloud domain='jakespurlock.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Use wp_trim_words to limit words in WordPress</title>
		<link>http://jakespurlock.com/2012/02/use-wp_trim_words-to-limit-words-in-wordpress/</link>
		<comments>http://jakespurlock.com/2012/02/use-wp_trim_words-to-limit-words-in-wordpress/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 18:52:48 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=2080</guid>
		<description><![CDATA[Using wp_trim_words allows us to limit the title and excerpt, and anything else really, to a particular number of words. How practical a name. You can define the number of words to limit them to, and also define what you’d &#8230; <a href="http://jakespurlock.com/2012/02/use-wp_trim_words-to-limit-words-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using wp_trim_words allows us to limit the title and excerpt, and anything else really, to a particular number of words. How practical a name. You can define the number of words to limit them to, and also define what you’d like the “more” text to be.</p>
<p>via <a href="http://krogsgard.com/2012/quick-tip-use-wp_trim_words-to-limit-words-in-wordpress/">Use wp_trim_words to limit words in WordPress</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2012/02/use-wp_trim_words-to-limit-words-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube Embederrator</title>
		<link>http://jakespurlock.com/2011/11/youtube-embederrator/</link>
		<comments>http://jakespurlock.com/2011/11/youtube-embederrator/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 06:46:05 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=2031</guid>
		<description><![CDATA[Needed a simple WordPress function to provide a way to build a YouTube video embed. This is a nice little trick. All you need to do is add a custom field that has a key of Big_Video and the value &#8230; <a href="http://jakespurlock.com/2011/11/youtube-embederrator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Needed a simple WordPress function to provide a way to build a YouTube video embed. This is a nice little trick. All you need to do is add a custom field that has a key of Big_Video and the value of the ID of the YouTube video.</p>
<pre class="brush: php; title: ; notranslate">
function js_youtube_embed($width,$height) {
	global $wp_query;
	$big_video = get_post_custom_values('Big_Video');
?&gt;
&lt;iframe width=&quot;&lt;?php echo $width; ?&gt;&quot; height=&quot;&lt;?php echo $height; ?&gt;&quot; src=&quot;http://www.youtube.com/embed/&lt;?php echo $big_video[0]; ?&gt;?showinfo=0&amp;hd=1&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;?php } ?&gt;
</pre>
<p>Example, if this is your YouTube video: http://www.youtube.com/watch?v=C1p6A7X64Qg, you would use C1p6A7X64Qg as the value.</p>
<p>In you template, the function would look like this:</p>
<pre class="brush: php; title: ; notranslate">
js_youtube_embed('940', '528');
</pre>
<p>The two values are the size of the video that you want embedded. So, in this case 940&#215;528.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2011/11/youtube-embederrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The CMS</title>
		<link>http://jakespurlock.com/2011/07/the-cms/</link>
		<comments>http://jakespurlock.com/2011/07/the-cms/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 17:00:11 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1921</guid>
		<description><![CDATA[One of my favorite things about WordPress is its extensibility. We’re on the same platform today as yesterday, but have built new tools for writers and editors. Featured and pinned articles get expiration dates, so editors don’t have to go back and &#8230; <a href="http://jakespurlock.com/2011/07/the-cms/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>One of my favorite things about <a href="http://www.crunchbase.com/company/wordpress">WordPress</a> is its extensibility. We’re on the same platform today as yesterday, but have built new tools for writers and editors. Featured and pinned articles get expiration dates, so editors don’t have to go back and manually <em>un</em>-feature things. Selecting a post layout is as simple as clicking a button. Automated resizing of images means faster load times and fewer distorted photos. And choosing which articles go on the home page is a single-click affair.</p></blockquote>
<p>Really loving the new design of TechCrunch. It is getting a lot of heat, but I like the change. Looks nice. Would love to steer <a title="Make Magazine - Where I work" href="http://makezine.com">Make</a> in a similar direction.</p>
<p>via: <a href="http://techcrunch.com/2011/07/11/redesigning-techcrunch-we-picked-this-logo-just-to-piss-you-off/">Redesigning TechCrunch: We Picked This Logo Just to Piss You Off</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2011/07/the-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raptorize This</title>
		<link>http://jakespurlock.com/2010/11/raptorize-this/</link>
		<comments>http://jakespurlock.com/2010/11/raptorize-this/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 20:07:28 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Jurassic Park]]></category>
		<category><![CDATA[Velociraptor]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1764</guid>
		<description><![CDATA[An awesome jQuery plugin that unleahes a Raptor of Jurassic proportions&#8230; Well, technically it&#8217;s Cretaceous proportions, but we&#8217;ll let that slide for now. WE&#8217;VE ALL BEEN HERE BEFORE&#8230; You&#8217;re sitting at your desk, coding up a 500 page site, knee-deep &#8230; <a href="http://jakespurlock.com/2010/11/raptorize-this/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>An awesome jQuery plugin that unleahes a Raptor of Jurassic proportions&#8230; Well, technically it&#8217;s Cretaceous proportions, but we&#8217;ll let that slide for now.</em></p>
<h2>WE&#8217;VE ALL BEEN HERE BEFORE&#8230;</h2>
<p><strong>You&#8217;re sitting at your desk</strong>, coding up a 500 page site, knee-deep in <a rel="nofollow" href="http://www.youtube.com/watch?v=eGS1-2T-wUU" target="_blank">Extreme Cheddar Doritos</a> sipping on a liter of <a rel="nofollow" href="http://www.wikihow.com/Make-Mountain-Dew-Code-Red" target="_blank">Code Red Mountain Dew</a> when you realize&#8230;this page would be som much more awesome with a VELOCIRAPTOR. You immediately scramble home to grab your Jurassic Park DVDs so can screencap a Velociraptor attack, but then you realize how hard it would be to make an awesome raptor run across the site you were coding. Plus, how are you going to get that <a rel="nofollow" href="http://www.youtube.com/watch?v=mqdkNlngMJM" target="_blank">trademark velociraptor screech</a>? How about we let you in on a little secret?</p>
<p><strong>We already did it.</strong></p>
<p>Well, the guys at <a href="http://www.zurb.com/">Zurb.com</a> did it. And I made it into a WordPress plugin.</p>
<p><strong>The Options</strong></p>
<p>What&#8217;s that? You want to be able to control the entrance handler? You can! Raptorize can be activated on a click event (that is the default and what we have hooked up above), a timer which just fires after the page is loaded, or the legendary Konami-Code. Our personal favorite is the Konami-Code (but it only works once per page load).</p>
<p>Go ahead, try the Konami Code (&uarr; &uarr; &darr; &darr; &larr; &rarr; &larr; &rarr; B A)</p>
<p>Works when you give a class of button to anything that can be clicked. i.e. <span style="font-size: small;"><span style="line-height: 19px;">&lt;a href=&#8221;#&#8221; class=&#8221;button&#8221;&gt;Button&lt;/a&gt;</span></span></p>
<p><a href="http://wordpress.org/extend/plugins/raptorize-it/">Download here</a></p>
<p><a href="http://wordpress.org/extend/plugins/raptorize-it/" class="button">Try me&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2010/11/raptorize-this/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordCamp Vegoose</title>
		<link>http://jakespurlock.com/2010/10/wordcamp-vegoose/</link>
		<comments>http://jakespurlock.com/2010/10/wordcamp-vegoose/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 17:20:31 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Posts]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Vegas]]></category>
		<category><![CDATA[Vegoose]]></category>
		<category><![CDATA[wordcamp]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1713</guid>
		<description><![CDATA[Just a little wrap up from WordCamp Vegas that was this last weekend. I had a great time, I am always impressed with the WordPress community. Open, caring, and would literally give you warm cookies just for driving down to &#8230; <a href="http://jakespurlock.com/2010/10/wordcamp-vegoose/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just a little wrap up from WordCamp Vegas that was this last weekend. I had a great time, I am always impressed with the WordPress community. Open, caring, and would literally give you warm cookies just for driving down to Vegas.</p>
<p>This trip was a lot of fun. The conference was great, lots of really good, relevant talks. Highlights included <a href="http://twitter.com/brandondove">Brandon Dove</a> of <a href="http://pixeljar.net/">PixalJar.net</a> gave a great presentation about Child Themes vs. Theme Framworks. Having built a bunch of custom themes and child themes, personally I have stayed away from frameworks, but after hearing him, I kind of want to dig into Thematic and see what else there is to learn. Also really like when we looked into a site and he said, &#8220;This filter applies to all the single ladies.&#8221; Kind of a WordPress joke&#8230;</p>
<p>I had the opportunity to present myself, and was really happy when John Hawkins invited me to come down at WordCamp Utah. I spoke on the Loop, on how to build custom queries, template tags, and working with custom post types. My slides, similar to the WordCamp Utah ones below:</p>
<p><object id="__sse5597551" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordcamp2010-101028114415-phpapp02&amp;rel=0&amp;stripped_title=wordcamp-vegas-2010&amp;userName=whyisjake" /><param name="name" value="__sse5597551" /><param name="allowfullscreen" value="true" /><embed id="__sse5597551" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordcamp2010-101028114415-phpapp02&amp;rel=0&amp;stripped_title=wordcamp-vegas-2010&amp;userName=whyisjake" name="__sse5597551" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I also enjoyed hearing the flamboyant <a href="http://xentek.net/">Eric Marden</a> and hearing him speak on DevCraft: Best Practices for WordPress Teams. I never worked professionally as part of a dev shop, so his comments were interesting on a lot of levels. Taking a lot of his critique and commentary to heart, hoping to become a better developer as a result.</p>
<p>I guess this brings me to the crux. No one is a perfect developer.  For all of the WordCamps that I have been to, (been to eight now in the last two years) there is always something to learn. For the $20-$30 that they normally cost, there is no better way to spend a Saturday learning from everyone around you on how to be a better developer, better blogger, or better designer.</p>
<p>Hope to see you at the next one!</p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2010/10/wordcamp-vegoose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The WordPress Loop &#8211; WordCamp 2010</title>
		<link>http://jakespurlock.com/2010/08/the-wordpress-loop-wordcamp-2010/</link>
		<comments>http://jakespurlock.com/2010/08/the-wordpress-loop-wordcamp-2010/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 17:21:42 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordcamp]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1708</guid>
		<description><![CDATA[WordCamp 2010 The WordPress LoopView more presentations from Jake Spurlock. Thanks for all that were in attendance for your great conversation. Also, download all of the source code here: Schtuff.txt]]></description>
			<content:encoded><![CDATA[<div id="__ss_5076532" style="width: 425px;"><strong><a title="WordCamp 2010 The WordPress Loop" href="http://www.slideshare.net/whyisjake/wordcamp-2010-the-wordpress-loop">WordCamp 2010 The WordPress Loop</a></strong><object id="__sse5076532" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordcamp2010-100828121142-phpapp01&amp;stripped_title=wordcamp-2010-the-wordpress-loop" /><param name="name" value="__sse5076532" /><param name="allowfullscreen" value="true" /><embed id="__sse5076532" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordcamp2010-100828121142-phpapp01&amp;stripped_title=wordcamp-2010-the-wordpress-loop" name="__sse5076532" allowscriptaccess="always" allowfullscreen="true"></embed></object><span style="font-size: 13px; line-height: 19px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/whyisjake">Jake Spurlock</a>.</span></div>
<p>Thanks for all that were in attendance for your great conversation. Also, download all of the source code here: <a href="http://jakespurlock.com/wp-content/uploads/2010/08/schtuff.txt">Schtuff.txt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2010/08/the-wordpress-loop-wordcamp-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Utah 2010</title>
		<link>http://jakespurlock.com/2010/08/wordcamp-utah-2010/</link>
		<comments>http://jakespurlock.com/2010/08/wordcamp-utah-2010/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:16:00 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[teaching]]></category>
		<category><![CDATA[utah]]></category>
		<category><![CDATA[wordcamp]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1695</guid>
		<description><![CDATA[WordCamp Utah 2010 will be held August 28th at University of Utah, in the Skaggs Biology Building. This is a great opportunity to spend a day with local WordPress developers, users, and fans of all kinds! Presentations will cover a &#8230; <a href="http://jakespurlock.com/2010/08/wordcamp-utah-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-1697" title="WordCamp Utah" src="http://jakespurlock.com/wp-content/uploads/2010/08/wordcamp-preview-215x300.png" alt="" width="215" height="300" />WordCamp Utah 2010 will be held August 28th at University of Utah, in the Skaggs Biology Building.  This is a great opportunity to spend a day with local WordPress developers, users, and fans of all kinds! Presentations will cover a range of topics, with two tracks running throughout the day.</p>
<p>Just getting started or looking for a little help with your WordPress questions?  We&#8217;ll have a Genius Bar where you get some help.  Already a WordPress whiz?  Come volunteer at Genius Bar!  Contact <a href="http://2010.utah.wordcamp.org/contact/">us</a> and we&#8217;ll put you on the list.</p>
<p>And finally, at WordCamp Utah 2010 we&#8217;ll get an answer to that question you&#8217;ve always wondered about, <a href="http://2010.utah.wordcamp.org/2010/07/15/will-it-blend/">Will WordPress Blend</a>?</p>
<p>If you are interested in sponsoring, presenting, or helping make everything run smoothly please <a href="http://2010.utah.wordcamp.org/contact/">let us know</a> &#8211;  we are still looking for help with video recording in both rooms so if you know someone who can help in that area we&#8217;d really like to hear from you.</p>
<p>The vital details:</p>
<ul>
<li>URL:            <a href="http://2010.utah.wordcamp.org/">http://2010.utah.wordcamp.org/</a></li>
<li>Registration:   <a href="http://wordcamputah2010.eventbrite.com/">http://wordcamputah2010.eventbrite.com/</a> ($20 + Eventbrite fee)</li>
<li>Twitter: @wordcamputah</li>
<li>Hash Tag:       <a href="http://search.twitter.com/search?q=%23wcut">#wcut</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2010/08/wordcamp-utah-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cameron Moll Colosseo iPad Martian Giveaway</title>
		<link>http://jakespurlock.com/2010/04/cameron-moll-colosseo-ipad-martian-giveaway/</link>
		<comments>http://jakespurlock.com/2010/04/cameron-moll-colosseo-ipad-martian-giveaway/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 21:27:16 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Cameron Moll]]></category>
		<category><![CDATA[Colosseo]]></category>
		<category><![CDATA[Giveaway]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Letterpress]]></category>
		<category><![CDATA[Martian]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1629</guid>
		<description><![CDATA[Well, now that I have your attention&#8230; Just wanted to let you all know about the Cameron Moll Colosseo iPad Martian Giveaway. Cameron Moll is one of my favorite designers, creating the prominent typeset edition of LDS Temple that I &#8230; <a href="http://jakespurlock.com/2010/04/cameron-moll-colosseo-ipad-martian-giveaway/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, now that I have your attention&#8230; <img src='http://jakespurlock.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just wanted to let you all know about the <a href="http://jakespurlock.com/2010/04/cameron-moll-colosseo-ipad-martian-giveaway/">Cameron Moll Colosseo iPad Martian Giveaway</a>.</p>
<p><a title="Cameron Moll Colosseo iPad Martian Giveaway" href="http://jakespurlock.com/2010/04/cameron-moll-colosseo-ipad-martian-giveaway/"><img style="margin-right: 10px;" src="http://farm3.static.flickr.com/2792/4464176485_656ec236d4_m.jpg" alt="Salt Lake Temple - In Type" width="161" height="240" align="left" /></a>Cameron Moll is one of my favorite designers, creating the prominent typeset edition of LDS Temple that I am proud to hang in my home. In addition to hanging this in my home, it has also made the rounds at Stevens-Henager college to all of my classes, all the while sharing the video of the creation at the same time. (embedded below)</p>
<p>I first met Cameron two years ago at a dinner for speakers and sponsors of the WordCamp Utah. I had been following the blog <a href="http://northtemple.com">NorthTemple.com</a> for a while and new some of the names of the authors. After doing a little bit of digging around, I stumbled on to Cameron&#8217;s site, <a href="http://cameronmoll.com">Authentic Boredom</a> and became an active reader. It was exciting to get the chance to have dinner with him that night.</p>
<p>I didn&#8217;t think that our paths would cross again, but I was excited to see that he needed some help done a WordPress site last October. I jumped at the chance to help. I was chosen, and as a result, I can claim that I did the WordPress theme for <a href="http://authenticjobs.com/blog">AuthenticJobs.com/blog/</a>. It was a fun project, one of the coolest designs that I have ever done.</p>
<p>So, now that the pitch is over, I wanted to mention <a href="http://colosseotype.com/">colosseotype.com</a>. This is the new letterpress poster of the Roman Coliseum. It was modeled from a photograph that was taken while on a trip there with his wife. I don&#8217;t own this yet, bet already have a spot reserved above my desk for it.</p>
<p>On a slightly nerdy note, I love the design of <a href="http://colosseotype.com/">colosseotype.com</a>. It is built using HTML5 and some kewl things using CSS3.</p>
<p>Love it&#8230;</p>
<p>So, if you looking for a smashing gift that will really leave an impression, check out Cameron&#8217;s fantastic letterpress posters. You will be amazed at the craftsmanship.</p>
<p><iframe src="http://player.vimeo.com/video/9971247" width="584" height="329" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2010/04/cameron-moll-colosseo-ipad-martian-giveaway/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>The Loop</title>
		<link>http://jakespurlock.com/2009/10/the-loop/</link>
		<comments>http://jakespurlock.com/2009/10/the-loop/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 04:55:20 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cheat sheet]]></category>
		<category><![CDATA[codex]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1592</guid>
		<description><![CDATA[Had a great WordPress Meetup tonight at SEO.com. I gave a short presentation about the WordPress loop, and how to integrate different content into theme templates. The WordPress Loop View more presentations from Jake Spurlock. During my presentation, I mentioned my &#8230; <a href="http://jakespurlock.com/2009/10/the-loop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Had a great WordPress Meetup tonight at <a href="http://seo.com">SEO.com</a>. I gave a short presentation about the WordPress loop, and how to integrate different content into theme templates.</p>
<div id="__ss_2224892" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="The WordPress Loop" href="http://www.slideshare.net/whyisjake/the-wordpress-loop">The WordPress Loop</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=thewordpressloop-091014191038-phpapp02&amp;stripped_title=the-wordpress-loop" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=thewordpressloop-091014191038-phpapp02&amp;stripped_title=the-wordpress-loop" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<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/whyisjake">Jake Spurlock</a>.</div>
</div>
<p>During my presentation, I mentioned my secret weapon in WordPress theme design, and that is the <a href="http://ekinertac.com/?p=259">WordPress Cheat Sheet</a>. Great tool for designing, lots easier then digging through the <a href="http://codex.wordpress.org/Template_Tags">WordPress codex</a>.</p>
<p>Thanks to <a title="Ash" href="http://ashbuckles.com">Ash Buckles</a> and <a href="http://thomallen.com">Thom Allen</a> for also presenting and for all those that attended!</p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2009/10/the-loop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WPMU Missing Link</title>
		<link>http://jakespurlock.com/2009/10/wpmu-missing-link/</link>
		<comments>http://jakespurlock.com/2009/10/wpmu-missing-link/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 15:28:41 +0000</pubDate>
		<dc:creator>Jake Spurlock</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[petomundo]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[WordPressMU]]></category>

		<guid isPermaLink="false">http://jakespurlock.com/?p=1582</guid>
		<description><![CDATA[For the last year or so, I have been heavily invested into the WordPressMU platform. For those that are unaware, WordPressMU is similar to WordPress, but allows the creation and implementation of literally thousands of other blogs all under the &#8230; <a href="http://jakespurlock.com/2009/10/wpmu-missing-link/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For the last year or so, I have been heavily invested into the <a title="WordPressMU" href="http://mu.wordpress.org/">WordPressMU</a> platform. For those that are unaware, WordPressMU is similar to WordPress, but allows the creation and implementation of literally thousands of other blogs all under the same domain. This software is what powers blogging networks like <a href="http://wordpress.com">WordPress.com</a>, <a href="http://edublogs.org">EduBlogs.org</a>, and projects that I have built, like <a title="Pet Lovers Community" href="http://petomundo.com">Petomundo!</a>, <a title="Photo Blogging" href="http://photo-bloggers.com">Photo-Bloggers.com</a>, and <a href="http://urtur.com">UrTur</a>.</p>
<p><a href="http://jakespurlock.com/wp-content/uploads/2009/10/Picture-2.png"><img class="alignright size-full wp-image-1583" title="WPMU,org" src="http://jakespurlock.com/wp-content/uploads/2009/10/Picture-2.png" alt="WPMU,org" width="270" height="74" /></a>When you are building around the WordPress platform, you get the benefit of the thousands of beautiful themes, robust plugins, and dedicated community of the platform, but WordPressMU, sometimes you need a little more, and that is where <a title="WPMU Support" href="http://wpmu.org/">WPMU.org</a> fits in. WPMU.org, and its premium version <a href="http://premium.wpmudev.org/">Premium.WPMUDEV.org</a> which I am happily paying member are priceless tools when developing around the WPMU platform. Here are some of the essential tools for building a WordPressMU community.</p>
<ul>
<li><a title="WPMU Support" href="http://premium.wpmudev.org/forums/">The Support Forums</a> &#8211; Great place to get help when you need. They are always quick with a response, and happy to help.</li>
<li><a title="WordPressMU Training Videos" href="http://premium.wpmudev.org/videos/">Training Videos</a> &#8211; When creating a blogging network, some people are going to need some help. These videos were such a help when people needed help on Petomundo!.</li>
<li><a href="http://premium.wpmudev.org/project/google-analytics-for-wordpress-mu-sitewide-and-single-blog-solution">Google Analytics for WordPressMU</a> &#8211; Able to be used for site-wide analytics, and for individual blogs. Great tool.</li>
<li><a href="http://premium.wpmudev.org/project/mailchimp-newsletter-integration">MailChimp Newsletter Integration</a> &#8211; For a project that I haven&#8217;t announced yet&#8230; Able to rapidly manage users and create email marketing campaigns.</li>
<li><a href="http://premium.wpmudev.org/project/rebranding-wordpress-mu">Rebranding WordPressMU</a> &#8211; Remove and modify all of the images and links to WordPress. Sometime you want it to be your own! Part of the beauty of using Open Source Software&#8230;</li>
<li><a href="http://premium.wpmudev.org/project/terms-of-service">Terms of Service</a> &#8211; Simply shows a terms of service box during signup that must be agreed to during signup. Great simple plugin.</li>
<li><a href="http://premium.wpmudev.org/project/wordpress-mu-affiliate">WordPressMU Affiliate</a> &#8211; Create your own affiliate tools via this great plugin. Have your users help you in developing membership.</li>
<li><a href="http://premium.wpmudev.org/themes/">The Premium Themes</a> &#8211; Beautiful WordPress and BuddyPress themes with enough customization options to keep anyone happy. The themes alone are worth the price of the membership alone.</li>
</ul>
<p>If you are developing around WordPressMU, membership to this site shouldn&#8217;t even be question. Every tool in the box is worth an annual membership, especially considering the robust support given.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakespurlock.com/2009/10/wpmu-missing-link/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

