<?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>Best I know ... &#187; WordPress</title>
	<atom:link href="http://brandonmoeller.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://brandonmoeller.com</link>
	<description>A BrandonMoeller.com blog</description>
	<lastBuildDate>Sun, 29 Jan 2012 23:58:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>RSS Responsive Caption</title>
		<link>http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss-responsive-caption</link>
		<comments>http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 22:16:42 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=3123</guid>
		<description><![CDATA[New plugin fixes all that.  <a href="http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>The problem:</strong></p>
<p>Readers who use Google Reader to read WordPress powered website RSS feeds on their small-screen mobile devices don&#8217;t get the full picture if the WordPress site in question uses the caption short code functionality, because the resulting inline CSS code that displays does not instruct the feed reader to scale the image down to fit the screen.</p>
<p><em>See, i.e.:</em></p>
<div id="attachment_3135" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 810px"><img class=" wp-image-3135 " title="115_1039-800" src="http://brandonmoeller.com/wp-content/uploads/2011/12/115_1039-800.jpg" alt="" width="800" height="1067" /><p class="wp-caption-text">In this image, a giant photo in a post is poorly displayed in Google Reader as a result of the default settings of WordPress 3.3 (and previous versions that include the Caption feature). As displayed on my Android-powered Nexus S from Google, running the latest version of Google Reader, Version 1.1.1.</p></div>
<p><strong>The solution:</strong></p>
<p>I created a new WordPress plugin called <a href="http://wordpress.org/extend/plugins/rss-responsive-caption">RSS Responsive Caption</a> to adjust the inline CSS styles that get attached to images with captions to make them more &#8220;responsive.&#8221;</p>
<p>Really, all that was needed was the following CSS code to specify that the maximum width of an image should be 100% (of the screen size). That&#8217;s responsive web design, in a nutshell.</p>
<blockquote><p>max-width: 100% !important;<br />
height: auto;</p></blockquote>
<p>Creating a plugin to accomplish this was not necessary. In fact, anyone can do this without downloading the plugin, simply (heh) by altering lines 745-746 in the wp-includes/media.php file, from:</p>
<blockquote><p>return &#8216;&lt;div &#8216; . $id . &#8216;class=&#8221;wp-caption &#8216; . esc_attr($align) . &#8216;&#8221; style=&#8221;width: &#8216; . (10 + (int) $width) . &#8216;px&#8221;&gt;&#8217;<br />
. do_shortcode( $content ) . &#8216;&lt;p&gt;&#8217; . $caption . &#8216;&lt;/p&gt;&lt;/div&gt;&#8217;;</p></blockquote>
<p>to:</p>
<blockquote><p>return &#8216;&lt;div &#8216; . $id . &#8216;class=&#8221;wp-caption &#8216; . esc_attr($align) . &#8216;&#8221; style=&#8221;max-width: 100% !important; height: auto; width: &#8216; . (10 + (int) $width) . &#8216;px&#8221;&gt;&#8217;<br />
. do_shortcode( $content ) . &#8216;&lt;p&gt;&#8217; . $caption . &#8216;&lt;/p&gt;&lt;/div&gt;&#8217;;</p></blockquote>
<p>But! If I did it that way, then every time WordPress would release a new version of its frickin-awesome open source software package, I would have to manually go into the media.php file and change that line of code to keep my RSS feeds displaying properly in Google Reader.</p>
<p>Instead, I prefer the instant update method of installing the latest version of WordPress. I click the button, it does its thing and in a few moments of anticipatory suspense, I have the latest version of WordPress in all its glory, and I can troubleshoot it because my own specific modifications are separate.</p>
<p>That&#8217;s also why I typically choose to create child themes on top of existing themes &#8211; if the theme is ever updated by the theme author, I won&#8217;t have to manually sort out what was changed vs. how I reconfigured it, unless the theme author specifically chose to alter something I wanted to alter.</p>
<p>The plugin makes the viewing experience in Google Reader much better.</p>
<p><em>See, i.e.:</em></p>
<div id="attachment_3136" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 810px"><img class="size-full wp-image-3136" title="115_1040-800" src="http://brandonmoeller.com/wp-content/uploads/2011/12/115_1040-800.jpg" alt="" width="800" height="1067" /><p class="wp-caption-text">The photo as displayed in the RSS feed when the plugin is activated.</p></div>
<p><strong>Download my first-ever WordPress plugin here:</strong></p>
<p><a href="http://wordpress.org/extend/plugins/rss-responsive-caption">RSS Responsive Caption</a><a href="http://wordpress.org/extend/plugins/rss-responsive-caption"></p>
<p>http://wordpress.org/extend/plugins/rss-responsive-caption</a></p>
<p><strong>Credit:</strong></p>
<p><strong></strong>This plugin would not have been possible if the WordPress core team didn&#8217;t create a way to &#8220;allow a plugin to replace the content that would otherwise be returned&#8221; via the caption shortcode function (see: wp-includes/media.php, line 711), or, if they didn&#8217;t further explain the <a href="http://codex.wordpress.org/Function_Reference/add_filter">add_filter function in the codex</a>, even going so far as suggesting the following plugin:</p>
<blockquote>
<pre>add_filter('img_caption_shortcode', 'my_img_caption_shortcode_filter',10,3);

/**
 * Filter to replace the  shortcode text with HTML5 compliant code
 *
 * @return text HTML content describing embedded figure
 **/
function my_img_caption_shortcode_filter($val, $attr, $content = null)
{
	extract(shortcode_atts(array(
		'id'	=&gt; '',
		'align'	=&gt; '',
		'width'	=&gt; '',
		'caption' =&gt; ''
	), $attr));

	if ( 1 &gt; (int) $width || empty($caption) )
		return $val;

	$capid = '';
	if ( $id ) {
		$id = esc_attr($id);
		$capid = 'id="figcaption_'. $id . '" ';
		$id = 'id="' . $id . '" aria-labelledby="figcaption_' . $id . '" ';
	}

	return '&lt;figure ' . $id . 'class="wp-caption ' . esc_attr($align) . '" style="width: '
	. (10 + (int) $width) . 'px"&gt;' . do_shortcode( $content ) . '&lt;figcaption ' . $capid
	. 'class="wp-caption-text"&gt;' . $caption . '&lt;/figcaption&gt;&lt;/figure&gt;';
}</pre>
</blockquote>
<p>Basically, I took the plugin above and altered it to fit my needs, after an exhaustive search to determine that someone else hadn&#8217;t already done what I wanted to do.</p>
<p>I got the idea for this plugin by looking at the HTML source code of the posts WordPress generates for images with captions and images without, then Googling until I discovered what made what worked.</p>
<p>Articles and forum posts that I came across in the exploratory process include, but are likely not limited to:</p>
<ul>
<li><a href="http://wordpress.org/support/topic/auto-resizing-images-to-fit-max-width">Auto resizing images to fit max width?</a> original forum post by <a href="http://wordpress.org/support/profile/caffeinedreamer">caffeinedreamer</a></li>
<li><a href="http://wordpress.org/support/topic/should-i-edit-mediaphp">Should I edit media.php?</a> original forum post by <a href="http://wordpress.org/support/profile/avalera">avalera</a></li>
</ul>
<p>Want to further alter the way captions are handled in WordPress? This plugin looks very interesting:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/links-in-captions/">Links in Captions</a>, by <a href="http://profiles.wordpress.org/users/katzwebdesign/">katzwebdesign</a></li>
</ul>
<p><strong>About RSS Responsive Caption<br />
</strong><em>from the documentation section of the plugin:</em><strong><br />
</strong></p>
<p><em>This plugin allows publishers to better control the width of photos that use the WordPress caption shortcode feature, when that content is displayed in RSS feed readers like Google Reader, as displayed on small-screen mobile devices. </em></p>
<p><em>This plugin accomplishes the same thing that adjusting the &#8220;function img_caption_shortcode&#8221; code in includes/media.php would, but allows the user to automatically update WordPress without worrying about losing these changes. </em></p>
<p><em>It is the author&#8217;s hope that in future releases of WordPress (post 3.3), this plugin will prove unnecessary if (hard-working, responsive-minded) WordPress core developers decide to include the fix in newer versions of the awesome great open source software we have all come to love.</em></p>
<p>(Hint, hint)</p>
<p><strong>Download my first-ever WordPress plugin here:</strong></p>
<p><a href="http://wordpress.org/extend/plugins/rss-responsive-caption">RSS Responsive Caption</a><a href="http://wordpress.org/extend/plugins/rss-responsive-caption"></p>
<p>http://wordpress.org/extend/plugins/rss-responsive-caption</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2011/12/18/rss-responsive-caption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The August redesign</title>
		<link>http://brandonmoeller.com/blog/2011/08/08/the-august-redesign/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-august-redesign</link>
		<comments>http://brandonmoeller.com/blog/2011/08/08/the-august-redesign/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 04:05:03 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=2773</guid>
		<description><![CDATA[The new BrandonMoeller.com launched quietly on Sunday. It was redesigned using the same color palette and, similar to its predecessor, was created as a child theme on top of the new TwentyEleven parent theme that ships as the default theme &#8230; <a href="http://brandonmoeller.com/blog/2011/08/08/the-august-redesign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The new <a href="http://brandonmoeller.com/">BrandonMoeller.com</a> launched quietly on Sunday. It was redesigned using the same color palette and, similar to its predecessor, was created as a child theme on top of the new TwentyEleven parent theme that ships as the default theme with the latest and greatest version of WordPress. I <a href="http://brandonmoeller.com/blog/2011/07/09/wordpress-3-2/">previously wrote</a> about how much I liked the new TwentyEleven theme.</p>
<p>The static pages of the previous version are archived here:</p>
<p><a href="http://brandonmoeller.com/old_design1107/">http://brandonmoeller.com/old_design1107</a></p>
<div id="attachment_2774" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 810px"><img class="size-full wp-image-2774" title="Last year's brandonmoeller website" src="http://brandonmoeller.com/wp-content/uploads/2011/08/old-design800.jpg" alt="Previous version" width="800" height="427" /><p class="wp-caption-text">This is the previous design.</p></div>
<h3>WHY I DID IT</h3>
<p>Here&#8217;s an example of what my new responsive Hire Me page looks like when you adjust your web browser to a skinny sliver (or view it on a smart phone).</p>
<div id="attachment_2775" class="wp-caption alignright" style="max-width: 100% !important; height: auto; width: 210px"><img class="size-full wp-image-2775" title="Smart phone view" src="http://brandonmoeller.com/wp-content/uploads/2011/08/skinny-hire.jpg" alt="Smart phone view" width="200" height="786" /><p class="wp-caption-text">The responsive style of this page was achieved with media queries and alternate content and style for thinner widths.</p></div>
<p>What really made me take the plunge and do the redesign was the responsiveness built into the new TwentyEleven theme, and the web standards community&#8217;s recent embrace of a responsive design philosophy, probably best articulated by Ethan Marcotte in his book, <a href="http://www.abookapart.com/products/responsive-web-design">Responsive Web Design</a>. His book was the first e-book I have ever purchased (it was cheaper than a physical copy!) and by the looks of the way things are going these days &#8211; it won&#8217;t be the last.</p>
<p>I&#8217;ll put the &#8220;responsive&#8221; philosophy in my own words here. Websites should look great on all devices, and by great, I mean you should be able to easily read the copy and see the crucial images and most importantly, use the website as it is intended to be used.</p>
<p>I think the new default TwentyEleven theme does just that, and I&#8217;m happy to develop my own style on top of it with a child theme I&#8217;m calling ….</p>
<p><a href="http://brandonmoeller.com/downloads/bmo2.rar">Bmo Two 1.0.0 Child Theme for TwentyEleven Theme for WordPress 3.2.1</a> (Download it.)</p>
<h3>WHAT CHANGED</h3>
<p>I&#8217;d like to say not much changed, but the new background image and the desire to switch the body content of the page to white from the previous blue make the redesign look more involved than it really is.</p>
<div id="attachment_2776" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 810px"><img class="size-full wp-image-2776" title="Screen capture of new site on a 27&quot; iMac" src="http://brandonmoeller.com/wp-content/uploads/2011/08/imac-capture8001.jpg" alt="iMac screen cap" width="800" height="381" /><p class="wp-caption-text">This is what the new homepage looks on a 27&quot; iMac, when the browser window is expanded to fill the whole screen.</p></div>
<p>I ditched the &#8220;about&#8221; page, because, you know. Who cares? (It was also getting depressing changing the age that I am every year on that page).</p>
<p>Besides, I&#8217;m not really who I say I am, am I? I&#8217;m who you think I am. And to that end, I want you to see a lot of pretty photos, and a lot of hard work and that way, you may draw the conclusion that I am blank or perhaps blank, or maybe even blank. But! I&#8217;ll let you figure it out &#8230; instead of me telling you.</p>
<p><em>Oh no, I&#8217;ve told too much. . . </em></p>
<p>So, with the redesign, I now have four items in my main navigation menu. &#8220;Home,&#8221; &#8220;Hire Me,&#8221; &#8220;Photos&#8221; and &#8220;Blog.&#8221;</p>
<p>For easier navigation, and to drive more traffic to them, I made the subpages of the &#8220;Hire Me&#8221; appear in the menu when one passes their mouse over it. This freed me from having to create a new navigation box on the subpages.</p>
<p>And now, all pages on the website are built into the WordPress system, the more elaborate of which like the main &#8220;Hire Me&#8221; page, were created by using WordPress page templates that I hand-coded.</p>
<p>I also removed most, if not all, of the Facebook integration. I might bring this back. Or, I might just integrate Google+ instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2011/08/08/the-august-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.2</title>
		<link>http://brandonmoeller.com/blog/2011/07/09/wordpress-3-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-3-2</link>
		<comments>http://brandonmoeller.com/blog/2011/07/09/wordpress-3-2/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 03:41:57 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=2461</guid>
		<description><![CDATA[I like WordPress 3.2. There are a lot of improvements, and as you&#8217;d expect, everything looks better. I&#8217;d write more, but I&#8217;m too busy working on customizing the new default template, which I think is the best default template yet. &#8230; <a href="http://brandonmoeller.com/blog/2011/07/09/wordpress-3-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I like WordPress 3.2. There are a lot of improvements, and as you&#8217;d expect, everything looks better.</p>
<p>I&#8217;d write more, but I&#8217;m too busy working on customizing the new default template, which I think is the best default template yet.</p>
<p>See what I&#8217;m up to here:</p>
<p>http://brandonmoeller.com/twentyeleven/</p>
<div id="attachment_2462" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><img class="size-full wp-image-2462" title="new-child" src="http://brandonmoeller.com/wp-content/uploads/2011/07/new-child.jpg" alt="New child theme work" width="450" height="304" /><p class="wp-caption-text">My first stabs at customizing the new Twenty Eleven WordPress theme, by creating a new child theme.</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2011/07/09/wordpress-3-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Houston History Magazine site launches</title>
		<link>http://brandonmoeller.com/blog/2010/12/07/houston-history-magazine-site-launches/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=houston-history-magazine-site-launches</link>
		<comments>http://brandonmoeller.com/blog/2010/12/07/houston-history-magazine-site-launches/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 12:32:19 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=2124</guid>
		<description><![CDATA[Today, the WordPress-based website for the Houston History Magazine launched, which represents a significant redesign for an interesting magazine that traces the history of Houston through the lens of special issues that focus on pivotal issues. My role in this &#8230; <a href="http://brandonmoeller.com/blog/2010/12/07/houston-history-magazine-site-launches/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, the WordPress-based website for the <a href="http://houstonhistorymagazine.org/">Houston History Magazine</a> launched, which represents a significant redesign for an interesting magazine that traces the history of Houston through the lens of special issues that focus on pivotal issues.</p>
<div id="attachment_2125" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://houstonhistorymagazine.org/"><img class="size-full wp-image-2125" title="hh-01-450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/hh-01-450.jpg" alt="The new Houston History Magazine website " width="450" height="461" /></a><p class="wp-caption-text">The new Houston History Magazine website </p></div>
<p>My role in this project was to advise and consult the small staff of the academic magazine of what tool to use for the job, what services they need to acquire and suggest a template that would give the magazine an engaging look. I was also responsible for designing the Past Issues archive page in the new WordPress system &#8211; previously it was designed as a three-column table. I was also responsible for installing WordPress and maintaining its installations, and customizing it for the needs of the magazine.</p>
<div id="attachment_2126" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://houstonhistorymagazine.org/past-issues/"><img class="size-full wp-image-2126" title="hh-02-450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/hh-02-450.jpg" alt="new Past Issues" width="450" height="481" /></a><p class="wp-caption-text">The new Past Issues archive page improves the usability of the previous page by inserting links to full-issue PDFs on the index, so readers can easily download them without opening each issue page. The design also breaks out of the previous three column table, allowing the elements to float left of each other, allowing for continued backward and forward compatibility with web trends and layout. If/when the design ever changes again, these elements will naturally flow to fit the size of their container.</p></div>
<p>We chose WordPress because of my familiarity with it and its ongoing maturity as a user-friendly CMS that works best with time-oriented publications.</p>
<p>We chose hosting the WordPress custom installation on GoDaddy because the company offered affordable web hosting with an interface that the magazine&#8217;s staff was familiar with. Hosting the system on a third party&#8217;s web server was necessary because the college does not have all the required pieces of a modern web environment in the same place, and is currently in a period of transition. Hosting the site on GoDaddy provides stability now, with the option to transfer the database of information to the college web server later.</p>
<p>We chose the <a href="http://themeforest.net/item/blueprint-magazine/123409">BluePrint Magazine WP 1.0</a> theme, designed by Dany Duchaine of DDStudios, because it allows for a sophisticated look and an engaging featured image slideshow on the homepage.</p>
<div id="attachment_2127" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://themeforest.net/item/blueprint-magazine/123409"><img class="size-full wp-image-2127" title="hh-03-450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/hh-03-450.jpg" alt="BluePrint Magazine theme" width="450" height="303" /></a><p class="wp-caption-text">This is the original design of the BluePrint magazine, which I altered to fit the needs of the Houston History Magazine. </p></div>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2010/12/07/houston-history-magazine-site-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bradley&#8217;s Art and Frame site launches</title>
		<link>http://brandonmoeller.com/blog/2010/10/30/bradleys-art-and-frame-site-launches/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bradleys-art-and-frame-site-launches</link>
		<comments>http://brandonmoeller.com/blog/2010/10/30/bradleys-art-and-frame-site-launches/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 02:34:09 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://brandonmoeller.com/?p=2116</guid>
		<description><![CDATA[Today, I launched a website for Bradley&#8217;s Art and Frame, a frame shop located in west Houston that has served customers for more than 40 years. The site was built using WordPress as a content management system, to allow Bradley&#8217;s &#8230; <a href="http://brandonmoeller.com/blog/2010/10/30/bradleys-art-and-frame-site-launches/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, I launched a website for <a href="http://bradleysartandframe.com">Bradley&#8217;s Art and Frame</a>, a frame shop located in west Houston that has served customers for more than 40 years.</p>
<p>The site was built using WordPress as a content management system, to allow Bradley&#8217;s staff to make updates to the content and post news items.</p>
<p>At launch, the site&#8217;s features include:</p>
<ul>
<li>A custom theme</li>
<li>Custom header designs</li>
<li>Customized menu</li>
<li>Six jQuery javascript-based image slideshows</li>
<li>24 pages and a 3 news posts</li>
<li>A randomized &#8220;testimonials&#8221; sidebar graphic</li>
<li>Facebook integration</li>
<li>A sign-up form for the Bradley&#8217;s newsletter</li>
</ul>
<p>I worked with Bradley&#8217;s Art and Frame co-owner Pat Bradley to develop the site. She provided the content and most of the photos, and I designed the website and customized WordPress for her business&#8217; unique needs.</p>
<p>I&#8217;m most proud of the following design elements:</p>
<div id="attachment_2117" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://bradleysartandframe.com/"><img class="size-full wp-image-2117" title="bradleys-headers450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/bradleys-headers450.jpg" alt="Bradleys header designs" width="450" height="239" /></a><p class="wp-caption-text">With mostly provided art and photography, I created header banner images and modified the WordPress system so that Bradley&#39;s employees could easily switch out the banners depending on the season.</p></div>
<div id="attachment_2118" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://bradleysartandframe.com/service/"><img class="size-full wp-image-2118" title="css3-focus-box450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/css3-focus-box450.jpg" alt="css3 box" width="450" height="396" /></a><p class="wp-caption-text">This sidebar on the What We Do page is stylized with CSS3 to a create rounded borders and a drop shadow to make the menu items stand out prominently on this page. </p></div>
<div id="attachment_2119" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://bradleysartandframe.com/you-framed-a-what/"><img class="size-full wp-image-2119" title="you-framed-a-what450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/you-framed-a-what450.jpg" alt="You Framed a What" width="450" height="427" /></a><p class="wp-caption-text">For years, Bradley&#39;s Art and Frame has been highlighting what its customers have custom framed in its newsletter&#39;s You Framed a What article. To publish the feature on the Bradley&#39;s website, I was asked to desgin a page that would display each piece of art and when users move their mouse over it, it enlarges to show detail. I found a jQuery-based javascript and customized it to perform this requested function, and I think it turned out great.</p></div>
<div id="attachment_2120" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 460px"><a href="http://bradleysartandframe.com/who-we-are/"><img class="size-full wp-image-2120" title="bradleys-staff450" src="http://brandonmoeller.com/wp-content/uploads/2011/05/bradleys-staff450.jpg" alt="Bradleys staff" width="450" height="366" /></a><p class="wp-caption-text">I designed this page to tell readers about the Bradley&#39;s staff. Also pictured is the randomized testimonial widget graphic in the sidebar, featuring Casey, the Bradley&#39;s four-legged family member and Certified Master Shop Greeter.</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2010/10/30/bradleys-art-and-frame-site-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bran Moe</title>
		<link>http://brandonmoeller.com/blog/2010/07/23/bran-moe/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bran-moe</link>
		<comments>http://brandonmoeller.com/blog/2010/07/23/bran-moe/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 03:17:25 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=1282</guid>
		<description><![CDATA[I created a favicon for my newly redesigned website. When I tried to jam my whole name into 16 pixels by 16 pixels, it didn&#8217;t look too swell. Just cramming seven letters looked better. A favicon.ico is a small icon &#8230; <a href="http://brandonmoeller.com/blog/2010/07/23/bran-moe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I created a favicon for my newly redesigned website.</p>
<p>When I tried to jam my whole name into 16 pixels by 16 pixels, it didn&#8217;t look too swell. Just cramming seven letters looked better.</p>
<div id="attachment_1283" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 26px"><a rel="attachment wp-att-1283" href="http://brandonmoeller.com/blog/2010/07/23/bran-moe/"><img class="size-full wp-image-1283 " src="http://brandonmoeller.com/wp-content/uploads/2010/07/iconstab-low.jpg" alt="My new ico" width="16" height="16" /></a><p class="wp-caption-text">My new ico</p></div>
<p>A favicon.ico is a small icon that browsers use to add some flair to the window tabs and bookmark links. It&#8217;s the closest I&#8217;ll ever come to corporate <em>bran</em>ding.</p>
<p>I also modified my functions.php file in my WordPress theme to include the code to call the .ico on every page within the blog.</p>
<p>Here are some helpful web pages I found that helped me accomplish these tasks.</p>
<p>&#8220;<a href="http://www.photoshopsupport.com/tutorials/jennifer/favicon.html" target="_blank">How to create a favicon.ico</a>&#8221; from PhotoshopSupport.com</p>
<p>&#8220;<a href="http://codex.wordpress.org/Child_Themes" target="_blank">Child Themes</a>&#8221; from the WordPress Codex</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2010/07/23/bran-moe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The July redesign</title>
		<link>http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-july-redesign-of-brandonmoeller-com</link>
		<comments>http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 03:01:25 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[Sites]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=1265</guid>
		<description><![CDATA[It has been two weeks since my last redesign. My redesign project for BrandonMoeller.com began on July 5 and ended a week later on July 11, and I&#8217;m very happy with the results. The previous design had served me well &#8230; <a href="http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1721" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 328px"><a href="http://brandonmoeller.com/wp-content/uploads/2010/07/square-text-web1.jpg"><img class="size-full wp-image-1721" title="BrandonMoeller.com" src="http://brandonmoeller.com/wp-content/uploads/2010/07/square-text-web1.jpg" alt="BrandonMoeller.com" width="318" height="318" /></a><p class="wp-caption-text">BrandonMoeller.com</p></div>
<p>It has been two weeks since my last redesign.</p>
<p>My redesign project for BrandonMoeller.com began on July 5 and ended a week later on July 11, and I&#8217;m very happy with the results.</p>
<p>The <a href="http://www.brandonmoeller.com/old_design100710/index.html)" target="_blank">previous design</a> had served me well for a number of years, from Feb. 6, 2008 to July 5, 2010.</p>
<p>It was time for a change.</p>
<p><strong>COLORS</strong></p>
<div id="attachment_1269" class="wp-caption alignleft" style="max-width: 100% !important; height: auto; width: 460px"><img class="size-full wp-image-1269" src="http://brandonmoeller.com/wp-content/uploads/2010/07/GoodFriends-palette-web-crop.jpg" alt="The Good Friends color palette, used on the new BrandonMoeller.com" width="450" height="102" /><p class="wp-caption-text">The Good Friends color palette, used on the new BrandonMoeller.com</p></div>
<p>I started by deciding on a color palette. I chose &#8220;<a href="http://www.colourlovers.com/palette/77121/Good_Friends" target="_blank">Good Friends</a>&#8221; desgined by Colour Lovers user <a href="http://www.colourlovers.com/lover/Yasmino" target="_blank">Yasmino</a>.</p>
<p><strong>FONTS</strong></p>
<p>Next, I chose Franklin Gothic FS by <a href="http://www.fontsite.com/download-fonts-f-g/franklin-gothic/" target="_blank">FontSite Inc.</a> to be my official font, so I bought the whole family from <a href="http://www.fontspring.com/fonts/fontsite/franklin-gothic-fs" target="_blank">FontSpring.com</a>, and unlimited licenses to put it on as many websites as I please. The two fonts currently used on the site are Franklin Gothic FS Medum Condensed and Franklin Gothic FS Book. I even incorporate these fonts in my blog.</p>
<p>A picked a (free) secondary font  from FontSpring called <a href="http://www.fontspring.com/fonts/philatype/merge" target="_blank">Merge Regular</a> from <a href="http://www.philatype.com/" target="_blank">Philatype</a>. I really like this font, but I just don&#8217;t have many places to put it at the moment. Currently, it makes the text in my sidebar on my &#8220;<a href="http://www.brandonmoeller.com/hire/index.php" target="_blank">Hire Me</a>&#8221; page stand apart.</p>
<p><strong>A SIMPLER DESIGN</strong></p>
<p>I wanted a simplistic design that would allow the content to shine. So, I spent a lot of time revising my content, consolidating pages and reducing clutter. I got it down to five pages, and developed intuitive titles for the pages: &#8220;home,&#8221; &#8220;about,&#8221; &#8220;hire me,&#8221; &#8220;photos,&#8221; and &#8220;blog.&#8221; I wanted my homepage to be free of the boring introductory text that — for whatever reason — everyone else is convinced they must have. However, I think visitors to my website are aware that they&#8217;re at my website, and I&#8217;d rather have graphics and the content to do the talking.</p>
<div id="attachment_1724" class="wp-caption alignright" style="max-width: 100% !important; height: auto; width: 222px"><a href="http://brandonmoeller.com/wp-content/uploads/2010/07/icon-crop-web1.jpg"><img class="size-full wp-image-1724" title="A sample vector-based icon as it appears on the homepage." src="http://brandonmoeller.com/wp-content/uploads/2010/07/icon-crop-web1.jpg" alt="A sample vector-based icon as it appears on the homepage." width="212" height="212" /></a><p class="wp-caption-text">A sample vector-based icon as it appears on the homepage.</p></div>
<p>Being a fan of the social media, I wanted to maintain my previous website&#8217;s homepage feature that listed all of my other pages out there on the Internet. But, instead of a list, I decided to make vector-based graphics for my 10 favorite external sites. Hovering over these images reveals a splash of color and movement. Soon, I&#8217;ll probably use the jQuery javascript library to add more icons in a slider format for the other websites I didn&#8217;t have room to mention.</p>
<p><strong>FACEBOOK + PICASA</strong></p>
<p>Also, I wanted to tap into the Facebook API on the homepage. At launch, I added the famous &#8220;like&#8221; button to the homepage, and future plans including a Facebook comment box on every page. That&#8217;s coming soon. I want more people to hit that &#8220;like&#8221; button, first, though — before I go to the trouble. Ahem. I&#8217;m talking to you.</p>
<p>I also created a new section for my photos using a javascript that embeds my Picasa Web Albums right onto my website, making it appear as though the photos are housed on BrandonMoeller.com. The JavaScript I used was written by Jesse Berman and works just like he promised it would on the open source website <a href="http://sourceforge.net/projects/pwa/" target="_blank">SourceForge</a>.</p>
<p><strong>THE NEW BLOG</strong></p>
<p>Last but not least &#8211; certainly not least because it probably took up most of the time I spent during the redesign — I updated my WordPress blog from version 2.6 something to the brand new WordPress 3.0 &#8220;Thelonious.&#8221; I then took the new standard WordPress theme of Twenty Ten and built on top of it, customizing it to look like the design I created for the new BrandonMoeller.com, allowing for a seamless experience for my blog visitors. When I get around to it, I&#8217;ll likely make the new BrandonMoeller.com into a template file that can be publicly downloaded for anybody who wants to mimic my design, as well as make my WordPress theme build-on available.</p>
<p>I&#8217;m also now tracking the traffic of my website with Google Analytics — I&#8217;m very impressed with what the tool allows me to discover about my visitors.</p>
<p>If you like the new website, please let me know what you like — and why — in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2010/07/22/the-july-redesign-of-brandonmoeller-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Typekit makes the heart grow fonder</title>
		<link>http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=typekit-makes-the-heart-grow-fonder</link>
		<comments>http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 17:43:02 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[BrandonMoeller.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wedding]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=440</guid>
		<description><![CDATA[TypeKit is here and as more browsers start to adopt the @font-face rule, I decided to take it for the old free trial spin for BrandonandKimberly.com. It was easy. I went to their website, signed up, chose two fonts from &#8230; <a href="http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>TypeKit is here and as more browsers start to adopt the @font-face rule, I decided to take it for the old free trial spin for BrandonandKimberly.com.</p>
<p>It was easy. I went to their website, signed up, chose two fonts from the free trial selection and specified what domain I will be using them on. The free trial only allows for the use of two fonts on one domain. I then copied the two-line Java call and pasted it into the head of all the site&#8217;s pages, then configured the easy-to-use TypeKit editor to specify which font corresponded to which selector in my HTML/CSS of the site, and after a few minutes, I was done.</p>
<p class="details">I chose<em> <a class="font-name">FF Enzo Web </a></em> <span class="font-byline"><em>by FontFont</em> for my headlines.</span></p>
<p class="details">I chose <em><a class="font-name">Scrivano</a> </em><span class="font-byline"><em>by Outras Fontes</em> for my regular body text. I know, I know â€“ it&#8217;s a little wild. And kind of a little fancy pants, but it really highlights the fact that I&#8217;m using a unique font on my Web site and if you&#8217;re cool enough to have an updated browser, then you&#8217;re cool enough to see it and, perhaps, be inspired by it and the brilliant web developer behind the Web site. All that, and Kim let me, so there. </span></p>
<p>But it doesn&#8217;t work in all the browsers I use. Here&#8217;s the results of my survey:</p>
<h2>Go</h2>
<p><strong>MAC</strong><br />
Firefox 3.5.5<br />
Safari*</p>
<p><strong>PC</strong><br />
Firefox 3.5.5<br />
Internet Explorer 8</p>
<h2>No Go</h2>
<p><strong>Mac</strong><br />
Camino<br />
Google Chrome<br />
Opera</p>
<p><strong>PC</strong><br />
Chrome 3<br />
Internet Explorer 6+7</p>
<p>* Though BrandonandKimberly.com keeps crashing Safari. Doh! Man, I hate that browser.</p>
<p>Also, I&#8217;m kind of disappointed in the way that various browsers display the fonts I chose.</p>
<p>Check out these screen shots. Discuss.</p>
<div id="attachment_442" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 310px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffpc.jpg"><img class="size-full wp-image-442" src="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffpc.jpg" alt="Firefox 3.5.5 (PC): This is how Typekit displays our wedding Web site on the browser of my choice. " width="300" height="317" /></a><p class="wp-caption-text">Firefox 3.5.5 (PC): This is how Typekit displays our wedding Web site on the browser of my choice. </p></div>
<div id="attachment_444" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 310px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ie8.jpg"><img class="size-full wp-image-444" src="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ie8.jpg" alt="Internet Explorer 8 (PC): It doesn't display as nicely, but, maybe that's just my opinon. Notice how the weights of the headlines between this one and FF are inconsistent." width="300" height="317" /></a><p class="wp-caption-text">Internet Explorer 8 (PC): It doesn&#039;t display as nicely, but, maybe that&#039;s just my opinion. Notice how the weights of the headlines between this one and FF are inconsistent.</p></div>
<div id="attachment_445" class="wp-caption alignnone" style="max-width: 100% !important; height: auto; width: 310px"><a href="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffmac.jpg"><img class="size-full wp-image-445" src="http://www.brandonmoeller.com/wp-content/uploads/2009/11/ffmac.jpg" alt="Firefox 3.5.5 (Mac): It looks pretty good on Firefox for Mac. " width="300" height="317" /></a><p class="wp-caption-text">Firefox 3.5.5 (Mac): It looks pretty good on Firefox for Mac. </p></div>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2009/11/21/typekit-makes-the-heart-grow-fonder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barefoot theme activated …</title>
		<link>http://brandonmoeller.com/blog/2008/10/22/barefoot-theme-activated/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=barefoot-theme-activated</link>
		<comments>http://brandonmoeller.com/blog/2008/10/22/barefoot-theme-activated/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 13:16:18 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=115</guid>
		<description><![CDATA[Welcome to the official blog of Brandon Moeller. Right now, this blog is being used to demonstrate the new WordPress theme I created for Barefoot Drums of Houston &#8230; I will be installing this theme + WordPress on the organization&#8217;s &#8230; <a href="http://brandonmoeller.com/blog/2008/10/22/barefoot-theme-activated/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Welcome to the official blog of Brandon Moeller. Right now, this blog is being used to demonstrate the new WordPress theme I created for Barefoot Drums of Houston &#8230; I will be installing this theme + WordPress on the organization&#8217;s server soon and this theme is activated so the organization can see what its future blog will look like once their new design is installed on their server.</p>
<p>Click to return to <a href="http://www.brandonmoeller.com" target="_self">BrandonMoeller.com</a>.</p>
<p>Click to return to the <a href="http://www.brandonmoeller.com/old_design100710/barefoot/sweetgarden/indextest4.html" target="_blank">Barefoot Drums of Houston</a> working redesign.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/10/22/barefoot-theme-activated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My custom wordpress themes</title>
		<link>http://brandonmoeller.com/blog/2008/09/06/my-custom-wordpress-themes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-custom-wordpress-themes</link>
		<comments>http://brandonmoeller.com/blog/2008/09/06/my-custom-wordpress-themes/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 21:10:20 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=95</guid>
		<description><![CDATA[Thought I&#8217;d like to share, so please find below the two themes I have recently created and extensively modified to match two Web sites I designed. Barefoot Drums of Houston -AND- BrandonMoeller.com]]></description>
			<content:encoded><![CDATA[<p>Thought I&#8217;d like to share, so please find below the two themes I have recently created and extensively modified to match two Web sites I designed.</p>
<p><a href="http://www.brandonmoeller.com/wp-content/themes/barefoot-drums/barefoot-drums.zip"><img class="alignnone" src="http://www.brandonmoeller.com/wp-content/themes/barefoot-drums/screenshot.png" alt="" width="300" height="240" /></a></p>
<p><a href="http://www.brandonmoeller.com/wp-content/themes/barefoot-drums/barefoot-drums.zip">Barefoot Drums of Houston </a></p>
<p>-AND-</p>
<p>BrandonMoeller.com</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/09/06/my-custom-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installed: ShareThis!</title>
		<link>http://brandonmoeller.com/blog/2008/09/06/installed-sharethis/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installed-sharethis</link>
		<comments>http://brandonmoeller.com/blog/2008/09/06/installed-sharethis/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 20:04:57 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=87</guid>
		<description><![CDATA[Last night, I added a new plugin to my blog which allows users to share my posts across any imaginable social network or link posting service. I originally stumbled upon the ShareThis service by avidly reading Wired.com, which uses it. &#8230; <a href="http://brandonmoeller.com/blog/2008/09/06/installed-sharethis/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last night, I added a new plugin to my blog which allows users to share my posts across any imaginable social network or link posting service.</p>
<p>I originally stumbled upon the <a href="http://www.sharethis.com/">ShareThis</a> service by avidly reading <a href="http://www.wired.com">Wired.com</a>, which uses it. I used it a few times to forward articles to that certain someone, you know, to further affirm my geekness 2.0. When I first saw the ShareThis interface, I thought: How much is <a href="http://www.twitter.com/brandonmoeller">too</a> much? I mean, seriously: All of the latest and greatest Web services just seem to be small variations on the same four-pronged theme: <em>Post content. Share it. Comment on what your friends are posting. Repeat. </em></p>
<p>Of course, the only problem with that idea is that, thanks to the outburst of all these nifty services, everyone does the same thing a different way. Usually, compatibility seems to be the last consideration.</p>
<p>With ShareThis&#8217; more-is-never-enuff approach, though, at least none of my readers can claim they were left out.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/09/06/installed-sharethis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6</title>
		<link>http://brandonmoeller.com/blog/2008/08/05/wordpress-26/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-26</link>
		<comments>http://brandonmoeller.com/blog/2008/08/05/wordpress-26/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 18:35:08 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=67</guid>
		<description><![CDATA[Just upgraded my blog app, WordPress, to 2.6. Neat.]]></description>
			<content:encoded><![CDATA[<p>Just upgraded my blog app, WordPress, to 2.6. Neat.</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/08/05/wordpress-26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://brandonmoeller.com/blog/2008/01/13/hello-world/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hello-world</link>
		<comments>http://brandonmoeller.com/blog/2008/01/13/hello-world/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 20:30:45 +0000</pubDate>
		<dc:creator>Brandon Moeller</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.brandonmoeller.com/blog/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://brandonmoeller.com/blog/2008/01/13/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

