<?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>Rob Yardman &#187; Beginning WordPress</title>
	<atom:link href="http://www.robyardman.com/tag/beginning-wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.robyardman.com</link>
	<description>Switching gears in life...</description>
	<lastBuildDate>Tue, 07 Feb 2012 21:17:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Controlling Image Sizes In WordPress</title>
		<link>http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=controlling-image-sizes-in-wordpress</link>
		<comments>http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress#comments</comments>
		<pubDate>Fri, 26 Mar 2010 02:55:00 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Clients]]></category>
		<category><![CDATA[Beginning WordPress]]></category>
		<category><![CDATA[CMS Image Control]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress Client]]></category>
		<category><![CDATA[Wordpress Designer]]></category>
		<category><![CDATA[Wordpress Image Control]]></category>
		<category><![CDATA[Wordpress Images]]></category>
		<category><![CDATA[WordPress Theme]]></category>
		<category><![CDATA[WordPress Theming]]></category>

		<guid isPermaLink="false">http://www.robyardman.com/?p=464</guid>
		<description><![CDATA[When building a Content Management System for a client, one of the main concerns for a designer is image sizes. If your client is going to be uploading and inserting images into their pages and blog posts then you want the integrity of the design to remain intact; while still allowing your client the freedom [...]<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip" rel="bookmark">WordPress Client: The Santa Fe VIP</a><!-- (8.3)--></li>
		<li><a href="http://www.robyardman.com/wordpress/more-into-wordpress-vs-joomla-and-a-new-rob-theme" rel="bookmark">More WordPress Vs. Joomla and a New Theme</a><!-- (6.4)--></li>
		<li><a href="http://www.robyardman.com/news/design-inspiration-education" rel="bookmark">Design, Inspiration &#038; Education</a><!-- (6.1)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.robyardman.com/wp-content/uploads/2010/03/image-width.jpg" rel="lightbox[464]"><img class="alignright size-full wp-image-470" title="image-width" src="http://www.robyardman.com/wp-content/uploads/2010/03/image-width.jpg" alt="" width="150" height="150" /></a>When building a Content Management System for a client, one of the main concerns for a designer is image sizes. If your client is going to be uploading and inserting images into their pages and blog posts then you want the integrity of the design to remain intact; while still allowing your client the freedom to post media without the concern of breaking stuff.</p>
<p>No one wants to open their web page only to see that a huge, or mis-managed, image has pushed content off to the side and completely damaged any credibility of the website to its current or potential readers. Typically this isn&#8217;t due to a lack of caring by the author. It&#8217;s usually an issue of content providers not understanding the complexities of image sizes and resolutions in relation to web design an content authoring.<span id="more-464"></span></p>
<p>This problem came to me during a recent project where my client was posting images and content on a daily basis. I needed a way to constrain the pixel size of images that were being uploading to the server and into articles. I found myself spending a great deal of time re-editing and re-inserting images that were being published way too large. It became a tedious problem after a while and I needed a solution that would benefit me and still give my client the comfort of knowing he wasn&#8217;t damaging his own website.</p>
<h2>The Easy Way Out</h2>
<p>Okay, so there is a simple CSS trick ( <span class="span-code" style="color: #ff6600;">img { max-width: 500px; }</span> ) that you can use to fix this problem. Using CSS width limits on &#8220;img&#8221; html tags will constrain the maximum width an image is displayed in the browser. However, this approach is a little funky and the image isn&#8217;t actually optimized at the specified width. It&#8217;s only scaled down, or &#8220;squeezed&#8221; by the browser, so it&#8217;s still not an ideal solution because you&#8217;re rendering an image that&#8217;s at a resolution way too large for web optimization. I needed a solution that would re-optimize the image to fit into the content space and be at a resolution that&#8217;s suitable for web publishing.</p>
<p>After a couple days of research I found a WordPress extention and an easy code hack that could help me get what I needed.</p>
<h2>My Requirements</h2>
<p>First of all, I want the maximum size of the image uploaded onto the web server to be no larger than 980 pixels in width. This is an optimal image size that will display a perfectly proportioned image when its thumbnail is clicked. A full sized picture is displayed by Lightbox that&#8217;s not larger than the width of the web page (1,010 pixels wide).</p>
<p>In order to achieve this I installed <a title="Resize At Upload Plus" href="http://wordpress.org/extend/plugins/resize-at-upload-plus/">Resize at Upload Plus</a> through the WordPress plugin library. This plugin was written by Daniel Mores and A. Huizingais. It lets you set the maximum size an image can be uploaded onto the web server. If the image is larger than that maximum size, the plugin resizes it to whatever size and width you specify. It&#8217;s a really sweet and simple plugin and something I would hope to see built into WordPress in future updates.</p>
<p style="text-align: center;"><a href="http://www.robyardman.com/wp-content/uploads/2010/03/resize-at-upload.png" rel="lightbox[464]"><img class="aligncenter size-medium wp-image-485" title="Resize At Upload Screen" src="http://www.robyardman.com/wp-content/uploads/2010/03/resize-at-upload-300x165.png" alt="" width="300" height="165" /></a></p>
<p><a title="Resize At Upload Plus" href="http://wordpress.org/extend/plugins/resize-at-upload-plus/">Resize at Upload Plus</a> solves a lot for me. Now my client can upload images directly from his digital camera or computer and not have to worry about the physical pixel size of the image.</p>
<p>Before I had him resizing his images in Photoshop before uploading and publishing them. Now my server doesn&#8217;t take such a huge hit with the giant images that were once being uploaded onto it and I&#8217;m not having to spend valuable time to go back and correct these image size issues.</p>
<p>The next part of the problem could be solved natively in WordPress without needing an extension or plugin. WordPress lets content contributors insert images at four different specified sizes: &#8220;Thumbnail Size,&#8221; &#8220;Medium Size,&#8221; &#8220;Large Size,&#8221; and &#8220;Full Size.&#8221; Although the intermediate sizes of the image can be constrained, the &#8220;Full Size&#8221; image option is still going to be a problem since it allows the author to insert an image at a width up to 980 pixels.</p>
<p>In the &#8220;Media&#8221; section I set the &#8220;Thumbnail Size&#8221;, &#8220;Medium Size&#8221; and &#8220;Large Size&#8221; accordingly to fit the content column so that the image would not be larger than it. That was pretty easy.</p>
<p style="text-align: center;"><a href="http://www.robyardman.com/wp-content/uploads/2010/03/media-settings.png" rel="lightbox[464]"><img class="aligncenter size-medium wp-image-489" title="Media Settings" src="http://www.robyardman.com/wp-content/uploads/2010/03/media-settings-300x173.png" alt="" width="300" height="173" /></a></p>
<p>Having solved that problem there was one more item left to address&#8230;</p>
<h2>Solving the &#8220;Full Size&#8221; Problem</h2>
<p>The next problem I was dealing with is that the &#8220;Add Image&#8221; dialog was still allowing the content author the ability to insert an image at its full size of up to 980 pixels.</p>
<p style="text-align: center;"><a href="http://www.robyardman.com/wp-content/uploads/2010/03/add-image.png" rel="lightbox[464]"><img class="aligncenter size-medium wp-image-490" title="Add Image" src="http://www.robyardman.com/wp-content/uploads/2010/03/add-image-300x194.png" alt="" width="300" height="194" /></a></p>
<p>I don&#8217;t want &#8220;Full Size&#8221; to be an option available to the author. It gives them the opportunity to make the mistake of selecting &#8220;Full Size&#8221; and inserting a 980 pixel wide image into an article. Which in effect would break the theme and defeat the purpose of limitations and constraints.</p>
<p>The easiest way to solve this is to disable the code that displays the &#8220;Full Size&#8221; option. Although considered a &#8220;hack&#8221; to the core WordPress files it solves my problem. The particular portion of code we need to disable is located in the <span class="span-code" style="color: #ff6600;">/wp-admin/includes/media.php</span> file on line 822.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$size_names</span> <span style="color: #339933;">=</span>
	<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
&nbsp;
		<span style="color: #0000ff;">'thumbnail'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Thumbnail'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'medium'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Medium'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'large'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Large'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'full'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Full size'</span><span style="color: #009900;">&#41;</span>
&nbsp;
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Change to:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$size_names</span> <span style="color: #339933;">=</span>
	<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
&nbsp;
		<span style="color: #0000ff;">'thumbnail'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Thumbnail'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'medium'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Medium'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'large'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Large'</span><span style="color: #009900;">&#41;</span><span style="color: #666666; font-style: italic;">/*,
		'full' =&amp;gt; __('Full size')*/</span>
&nbsp;
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Next, save and upload the media.php file to the server, and the option to insert &#8220;Full Size&#8221; images has been removed and is no longer available to the author.</p>
<p><a href="http://www.robyardman.com/wp-content/uploads/2010/03/removed-fullsize.png" rel="lightbox[464]"><img class="aligncenter size-medium wp-image-504" title="removed-fullsize" src="http://www.robyardman.com/wp-content/uploads/2010/03/removed-fullsize-300x95.png" alt="" width="300" height="95" /></a>That&#8217;s it. The fix is as simple as installing an extension and a change to the core admin media.php file.</p>
<p>The only remaining problem with this &#8220;hack&#8221; is that if you ever update WordPress you may need to go back and comment out the &#8220;Full Size&#8221; code again. Other than that, there should be no problems for you or your client. You no longer have to sit with the thought of images breaking your theme and your client is happy with their ability to edit and contribute to their website. Win &#8211; Win situation.</p>
<p style="text-align: center;">
<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip" rel="bookmark">WordPress Client: The Santa Fe VIP</a><!-- (8.3)--></li>
		<li><a href="http://www.robyardman.com/wordpress/more-into-wordpress-vs-joomla-and-a-new-rob-theme" rel="bookmark">More WordPress Vs. Joomla and a New Theme</a><!-- (6.4)--></li>
		<li><a href="http://www.robyardman.com/news/design-inspiration-education" rel="bookmark">Design, Inspiration &#038; Education</a><!-- (6.1)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Client: The Santa Fe VIP</title>
		<link>http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-client-the-santa-fe-vip</link>
		<comments>http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip#comments</comments>
		<pubDate>Thu, 18 Mar 2010 21:59:53 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress Clients]]></category>
		<category><![CDATA[Beginning WordPress]]></category>
		<category><![CDATA[Rob Yardman]]></category>
		<category><![CDATA[Santa Fe]]></category>
		<category><![CDATA[Santa Fe Web Design]]></category>
		<category><![CDATA[The Santa Fe VIP]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Tips And Tricks]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme]]></category>
		<category><![CDATA[WordPress Theming]]></category>

		<guid isPermaLink="false">http://www.robyardman.com/?p=431</guid>
		<description><![CDATA[So as I mentioned in a previous post, I have decided to take on a few side projects. I was recently approached by a friend of mine to build his vision of a website that would highlight Santa Fe&#8217;s nightlife and daytime entertainment as well as various &#8220;exclusive&#8221; businesses. I happily and eagerly took on the project even [...]<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.robyardman.com/news/design-inspiration-education" rel="bookmark">Design, Inspiration &#038; Education</a><!-- (8.8)--></li>
		<li><a href="http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress" rel="bookmark">Controlling Image Sizes In WordPress</a><!-- (8.4)--></li>
		<li><a href="http://www.robyardman.com/wordpress/southwest-spray-foam" rel="bookmark">WordPress Client: SouthWest Spray Foam</a><!-- (7.1)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>So as I mentioned in a previous post, I have decided to take on a few side projects. I was recently approached by a friend of mine to build his vision of a website that would highlight Santa Fe&#8217;s nightlife and daytime entertainment as well as various &#8220;exclusive&#8221; businesses. I happily and eagerly took on the project even though I knew was going to be somewhat of a difficult task because of my time constraints. Despite that, I was ready to get back into design work and this was definitely the project to get the ball rolling.</p>

<a href='http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip/attachment/santafe-vip-01' title='santafe-vip-01'><img src="http://www.robyardman.com/wp-content/uploads/2010/03/santafe-vip-01.jpg" class="attachment-thumbnail" alt="santafe-vip-01" title="santafe-vip-01" /></a>
<a href='http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip/attachment/santafe-vip-02' title='santafe-vip-02'><img src="http://www.robyardman.com/wp-content/uploads/2010/03/santafe-vip-02.jpg" class="attachment-thumbnail" alt="santafe-vip-02" title="santafe-vip-02" /></a>
<a href='http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip/attachment/santafe-vip-03' title='santafe-vip-03'><img src="http://www.robyardman.com/wp-content/uploads/2010/03/santafe-vip-03.jpg" class="attachment-thumbnail" alt="santafe-vip-03" title="santafe-vip-03" /></a>
<a href='http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip/attachment/santafe-vip-04' title='santafe-vip-04'><img src="http://www.robyardman.com/wp-content/uploads/2010/03/santafe-vip-04.jpg" class="attachment-thumbnail" alt="santafe-vip-04" title="santafe-vip-04" /></a>

<p>In my friend Victor&#8217;s vision, <a title="The Santa Fe VIP" href="http://www.thesantafevip.com" target="_blank">The Santa Fe VIP</a> was set out to be an end-all be-all resource for everything related to Santa Fe and in particular, it&#8217;s nightlife. After a little deliberating and getting an understanding for his project I had him focus the scope of his website on nightlife and highlight various businesses in town on a more concentrated scale.<span id="more-431"></span></p>
<p>Instead of being &#8220;all inclusive&#8221; I suggested he make <strong>exclusivity</strong> his selling point. My idea to him was, &#8220;What would make a persons night in Santa Fe a VIP experience?&#8221; People want to know about the deals in town. They want to feel like they&#8217;re getting the hook up or they&#8217;re part of &#8220;the crew&#8221;. If anyone has ever been to a night club that had a cover charge and known the bouncer well enough to get a deal at the door, that&#8217;s a &#8220;VIP Experience&#8221; and was going to be our model.</p>
<p>So far, it&#8217;s working, and because of Victor&#8217;s range of friends and connections in the restaurant and night club industry he&#8217;s been able to lock in some great deals and pass them on to readers of the website. He&#8217;s locked in a following and people appreciate the service.</p>
<h2>My Role&#8230;</h2>
<p>My role was simply to build and maintain the website and to help Victor get an understanding of publishing web content through a Content Management System; WordPress in this instance. The website went through a slew of design changes while Victor and I deliberated over how he could manage and maintain content as well as sell the site to potential customers with ad space and exclusively offered customized web pages.</p>
<h2>Requirements</h2>
<p>Victor initially didn&#8217;t express many requirements or things that were a MUST HAVE which gave me complete control over the creative process. He expressed to me his idea and I simply translated that into a functional web design. Some things that he did like were rotating and dynamic content; &#8220;flashy&#8221; stuff. I had a few ideas and a couple things that I hadn&#8217;t really tried or used before. For one, this is a website that is about entertainment so it should have some entertaining value to it. This means content that changes and isn&#8217;t stale. A lot of my clients want their information out but aren&#8217;t necessarily looking for any entertaining value in their content. Victor, on the other hand was.</p>
<p>In order to achieve what Victor wanted I used a jquery rotating banner on the home page. This would serve as two functions: ad space for exclusive customers or content and it has an wow factor. It&#8217;s dynamic content; It&#8217;s &#8220;Flashy&#8221;.</p>
<h2>The Logo</h2>
<p>When creating the logo we had a lot of different opinions. I had my own vision of what I thought it should look like and so did Victor. So to remedy that issue I had him send me examples of what he liked; font&#8217;s etc. He directed me to the website of <a title="Cody Sanderson" href="http://www.codysanderson.com" target="_blank">Cody Sanderson</a>. Cody is an amazing local Native American Jeweler and Victor liked the font on his website banner. After about two days of trying to find the font that Cody used I realized it was most likely a custom font and I&#8217;d save time just making it myself. Using Trajan Normal as a template I was able to add the exaggerated columns, ornate swirls and pronounced swooshes. What transpired from that was a pretty cool font and a great logo.</p>
<p><a href="http://www.robyardman.com/wp-content/uploads/2010/03/vip-logo.png" rel="lightbox[431]"><img class="aligncenter size-full wp-image-452 no-border" title="vip-logo" src="http://www.robyardman.com/wp-content/uploads/2010/03/vip-logo.png" alt="" /></a></p>
<h2>Results?</h2>
<p>So far the website has been very successful and we&#8217;ve garnished a lot of attention from different resources namely Facebook and Twitter. I&#8217;ve always been a very big advocate for Social Networking. Not as a cool toy or a way to meet with old friends and reach out to social interests, but as a way to reach out to a large audience to gain interest in your content. More specifically in this case: Santa Fe locals and tourists were the target audience and both Facebook and Twitter offered a great way to reach out to that audience.</p>
<p>The site is growing everyday. Throughout the last month (even before announcing a launch) the website has had approximately 7,000 hits. Victor himself has managed to sell some of his newly found web-based real estate and produce some valuable content. Although we&#8217;ve experienced a few bumps with media content, Victor has grown comfortable in publishing regular blogs and events with pictures and links.</p>
<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.robyardman.com/news/design-inspiration-education" rel="bookmark">Design, Inspiration &#038; Education</a><!-- (8.8)--></li>
		<li><a href="http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress" rel="bookmark">Controlling Image Sizes In WordPress</a><!-- (8.4)--></li>
		<li><a href="http://www.robyardman.com/wordpress/southwest-spray-foam" rel="bookmark">WordPress Client: SouthWest Spray Foam</a><!-- (7.1)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.robyardman.com/news/wordpress-client-the-santa-fe-vip/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More WordPress Vs. Joomla and a New Theme</title>
		<link>http://www.robyardman.com/wordpress/more-into-wordpress-vs-joomla-and-a-new-rob-theme?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=more-into-wordpress-vs-joomla-and-a-new-rob-theme</link>
		<comments>http://www.robyardman.com/wordpress/more-into-wordpress-vs-joomla-and-a-new-rob-theme#comments</comments>
		<pubDate>Mon, 30 Mar 2009 16:46:45 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Beginning WordPress]]></category>
		<category><![CDATA[Joomla WordPress Comparisons]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress Theme]]></category>
		<category><![CDATA[WordPress vs. Joomla]]></category>

		<guid isPermaLink="false">http://www.robyardman.com/?p=24</guid>
		<description><![CDATA[So I have continued my journey into WordPress and so far so good. I haven&#8217;t had to &#8220;hack&#8221; anything yet but I&#8217;m not holding my breath. Some things to be considered: I really like the WordPress admin interface. It&#8217;s simple and easy to work with. I have also discovered the automatic installation for &#8220;official&#8221; or [...]<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.robyardman.com/wordpress/my-dig-into-wordpress-so-far-vs-joomla" rel="bookmark">My Dig Into WordPress So Far; Vs. Joomla</a><!-- (15.4)--></li>
		<li><a href="http://www.robyardman.com/wordpress/wordpress-plugin-update" rel="bookmark">WordPress: Plugin Update Available</a><!-- (9.6)--></li>
		<li><a href="http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress" rel="bookmark">Controlling Image Sizes In WordPress</a><!-- (7.4)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-29" title="WordPress Vs. Joomla" src="http://www.robyardman.com/wp-content/uploads/2009/03/wp-vs-joomla1.jpg" alt="WordPress Vs. Joomla" width="147" height="138" />So I have continued my journey into WordPress and so far so good. I haven&#8217;t had to &#8220;hack&#8221; anything yet but I&#8217;m not holding my breath. Some things to be considered: I really like the WordPress admin interface. It&#8217;s simple and easy to work with. I have also discovered the automatic installation for &#8220;official&#8221; or <a title="WordPress.org" href="http://www.wordpress.org">WordPress.org</a> endorsed extensions. I guess I should have looked for that feature before commenting on it in one of my previous posts. Although it&#8217;s not as user-friendly as Joomla&#8217;s extension/component installation methods, it is convenient. I mean, who wants to download a .zip file and ftp into their web host just to install an extension? That&#8217;s so Web 1.0.</p>
<p>The differences between Joomla and WordPress have become even more apparent now that I&#8217;ve been able to become a little more familiar with WordPress. Joomla has A LOT more available to it from the initial install where as WordPress is simple and allows you to build from its simplicity. Joomla takes a different approach because of the fact that it&#8217;s a CMS in its entirety and not <em>just</em> a blogging platform. WordPress however seems to start off being easy and highly customizable without the headaches of how everything works and how it all comes together. I can appreciate both applications in what they do and how they approach the end-user experience. They&#8217;re both very great in their own right. I started this blog expecting to completely dis-own and bash the Joomla platform &#8211; if you want to call it that &#8211; only to realize that in it&#8217;s own right Joomla is an awesome application when used correctly. There is a definite learning curve but in the end it offers so much out of the box, it&#8217;s amazing.</p>
<p>On the other hand is WordPress. Simple and small but with an enormous user-base and wealth of support from it&#8217;s community of users and developers. I really appreciate the fact that it starts off easy and as simple as possible. I keep using the term &#8220;simple&#8221; because that&#8217;s exactly what it is: <strong>simple</strong>. For me this is more of a hobby that I anticipate being able to make a little money on for people/clients wanting a web presence with their business or personal endeavours. So I don&#8217;t want to spend a lot of time configuring and editing an interface on top of skinning a theme and creating menus or hacking components. So with that in mind, after the WordPress install and a few graphic modifications, I was off and running creating content.</p>
<p style="text-align: center;">
<p>The first thing I did after my WordPress installation was look for a blank and easily customizable theme. Initially I was using something a little more generic when I stumbled onto <a href="http://themeshaper.com/thematic-for-wordpress/">Thematic</a> from <a href="http://themeshaper.com/">ThemeShaper.com</a>. The install was fairly simple and so was the skinning of the theme. I obviously didn&#8217;t change much besides the page background and header graphics. That of course, is the beauty of open-source. No need to build what&#8217;s already been built and made available to you. So &#8220;thank you&#8221; <a title="About Ian Stewart" href="http://www.themeshaper.com/about/">Ian Stewart</a> for your work and dedication on the Thematic theme. Here&#8217;s your plug.</p>
<p style="text-align: center;"><a href="http://www.robyardman.com/wp-content/uploads/2009/03/ry-capture.jpg" rel="lightbox[24]"><img class="aligncenter size-medium wp-image-142" title="Rob Yardman.com Theme based on Thematic" src="http://www.robyardman.com/wp-content/uploads/2009/03/ry-capture-300x177.jpg" alt="Rob Yardman.com Theme based on Thematic" width="300" height="177" /></a></p>
<p>The theme isn&#8217;t completely finished and I have some IE tweaks to finish but for now the logo shows up fine only the background doesn&#8217;t in IE yet. Did I mention I can&#8217;t stand IE? If I haven&#8217;t stated that yet, I do.</p>
<p>Well, that&#8217;s it for now. I&#8217;ll obviously continue my ventures and hacks into WordPress so stay tuned for more. If you&#8217;re interested in my latest involvements or just &#8220;what I&#8217;m doing.&#8221; You can follow me on <a title="Follow Rob on Twitter" href="http://www.twitter.com/robYardman">Twitter</a>. Thanks for reading and comments are appreciated.</p>
<h3>Related Posts</h3>
<ol>
		<li><a href="http://www.robyardman.com/wordpress/my-dig-into-wordpress-so-far-vs-joomla" rel="bookmark">My Dig Into WordPress So Far; Vs. Joomla</a><!-- (15.4)--></li>
		<li><a href="http://www.robyardman.com/wordpress/wordpress-plugin-update" rel="bookmark">WordPress: Plugin Update Available</a><!-- (9.6)--></li>
		<li><a href="http://www.robyardman.com/wordpress/controlling-image-sizes-in-wordpress" rel="bookmark">Controlling Image Sizes In WordPress</a><!-- (7.4)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.robyardman.com/wordpress/more-into-wordpress-vs-joomla-and-a-new-rob-theme/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

