<?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>VisualComa &#187; WordPress</title>
	<atom:link href="http://visualcoma.com/category/web/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://visualcoma.com</link>
	<description>bringing you something fun...</description>
	<lastBuildDate>Fri, 30 Jul 2010 13:54:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>VC WordPress Theming</title>
		<link>http://visualcoma.com/2010/04/22/vc-wordpress-theming/</link>
		<comments>http://visualcoma.com/2010/04/22/vc-wordpress-theming/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 11:15:46 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Developing WordPress]]></category>
		<category><![CDATA[VC WordPress Theming]]></category>
		<category><![CDATA[WordPress Theming]]></category>
		<category><![CDATA[wp_parse_args]]></category>

		<guid isPermaLink="false">http://visualcoma.com/?p=2828</guid>
		<description><![CDATA[I&#8217;ve been developing with WordPress for about 2.5 yrs and this morning I really wanted to write something about all the work that I do, but am realizing that I just don&#8217;t know what to say with out writing a freaking book on the DevTime of WordPress. Not to mention there are so many people [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been developing with <a href="http://wordpress.org/" target="_blank">WordPress</a> for about 2.5 yrs and this morning I really wanted to write something about all the work that I do, but am realizing that I just don&#8217;t know what to say with out writing a freaking book on the DevTime of WordPress. Not to mention there are so many people out there who have already laid down the law on what WordPress is.</p>
<p>So to curb my need to publish I though I would share a WP function that I have found to be a huge time saver, and something WP uses a lot. As you&#8217;ll see below it&#8217;s not much to speak of and it&#8217;s fairly basic in the scheme of things, but it will save a lot of time when comparing incoming variables with default variables.</p>
<p><strong>wp_parse_args()</strong></p>
<p><em>You can find this in wp-includes/functions.php -&gt; line 2887 wp3.0 beta1</em></p>
<div style="border: solid 1px #ddd; padding: 5px 10px; margin: 0 0 10px;"><code><br />
/**<br />
* Merge user defined arguments into defaults array.<br />
*<br />
* This function is used throughout WordPress to allow for both string or array<br />
* to be merged into another array.<br />
*<br />
* @since 2.2.0<br />
*<br />
* @param string|array $args Value to merge with $defaults<br />
* @param array $defaults Array that serves as the defaults.<br />
* @return array Merged user defined values with defaults.<br />
*/<br />
function wp_parse_args( $args, $defaults = '' ) {<br />
if ( is_object( $args ) )<br />
$r = get_object_vars( $args );<br />
elseif ( is_array( $args ) )<br />
$r =&amp; $args;<br />
else<br />
wp_parse_str( $args, $r );</code></p>
<p><code> </code></p>
<p><code> if ( is_array( $defaults ) )<br />
return array_merge( $defaults, $r );<br />
return $r;<br />
}<br />
</code></p>
</div>
<p><em>Here is an example being used in the form function of a widget class, which is a great place to set defaults variables.</em></p>
<div style="border: solid 1px #ddd; padding: 5px 10px; margin: 0 0 10px;"><code><br />
function form( $instance ) {</p>
<p>$widget_options = get_option('_my_widget_options');</p>
<p>//Defaults<br />
$defaults = array(<br />
'title_display' =&gt; 'Text',<br />
'text_title' =&gt; '',<br />
'image_title' =&gt; '',<br />
'link' =&gt; '',<br />
'post_cat' =&gt; $widget_options['post_cat'],<br />
'post_count' =&gt; $widget_options['post_count'],<br />
'word_count' =&gt; $widget_options['word_count'],<br />
'read_more' =&gt; $widget_options['read_more'],<br />
'strip_tags' =&gt; $widget_options['strip_tags'],<br />
'show_thumbnail' =&gt; '',<br />
'show_video' =&gt; '',<br />
'css_class' =&gt; ''<br />
);</p>
<p>$r = wp_parse_args( $instance, $defaults );<br />
extract( $r, EXTR_SKIP );</p>
<p></code><code> echo 'do cool stuff here...';<br />
}<br />
</code></p>
</div>
<p>So yeah, really exciting stuff right? Maybe not, but hey if you&#8217;re into php &amp; WordPress you should check this out for sure. It&#8217;s been around for while so there is really no excuse.</p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2010/04/22/vc-wordpress-theming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Recent Work</title>
		<link>http://visualcoma.com/2010/04/19/my-recent-work-2/</link>
		<comments>http://visualcoma.com/2010/04/19/my-recent-work-2/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 14:35:39 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Amy Grant]]></category>
		<category><![CDATA[Brody Harper]]></category>
		<category><![CDATA[BuzzPlant]]></category>
		<category><![CDATA[Groupaway]]></category>
		<category><![CDATA[Shane & Shane]]></category>
		<category><![CDATA[Skorinc]]></category>
		<category><![CDATA[Stephen Mansfield]]></category>
		<category><![CDATA[The Rock and Worship Roadshow]]></category>
		<category><![CDATA[THiNQ]]></category>
		<category><![CDATA[What's In The Bible]]></category>

		<guid isPermaLink="false">http://visualcoma.com/?p=2826</guid>
		<description><![CDATA[I&#8217;ve been on the keyboard for the last 3.5 months and it&#8217;s been quite a crazy time. So far 2010 has been more busy then I ever expected. My recent work has been expanding my theme by leaps and bounds. It&#8217;s odd that every site I build kills all the previous ones. (it&#8217;s almost time [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been on the keyboard for the last 3.5 months and it&#8217;s been quite a crazy time. So far 2010 has been more busy then I ever expected. My recent work has been expanding my theme by leaps and bounds. It&#8217;s odd that every site I build kills all the previous ones. <em>(it&#8217;s almost time to update my site, I just wish I had some time :)</em></p>
<p>There is a lot to go over so I&#8217;ll just list off the latest projects. <em>(Most of these are <a href="http://skorinc.com/">Skörinc</a>, but one or two came from <a href="http://buzzplant.com/">BuzzPlant</a>)</em></p>
<ul>
<li><a title="The Rock and Worship Roadshow" href="http://therockandworshiproadshow.com/" target="_blank">The Rock and Worship Roadshow</a> &#8211; Rebuild &#8211; http://therockandworshiproadshow.com/</li>
<li><a title="Stephen Mansfield" href="http://mansfieldgroup.com/" target="_blank">Stephen Mansfield</a> &#8211; New Development &#8211; http://mansfieldgroup.com/</li>
<li><a title="Amy Grant" href="http://www.amygrant.com/" target="_blank">Amy Grant</a> &#8211; New Development &#8211; http://www.amygrant.com/</li>
<li><a title="Shane &amp; Shane" href="http://shaneandshane.com/" target="_blank">Shane &amp; Shane</a> &#8211; Rebuild &#8211; http://shaneandshane.com/</li>
<li><a title="Brody Harper" href="http://brodyharper.com/" target="_blank">Brody Harper</a> &#8211; Rebuild &#8211; http://brodyharper.com/</li>
<li><a title="What's In The Bible" href="http://whatsinthebible.com/" target="_blank">What&#8217;s In The Bible</a> &#8211; New Development &#8211; http://whatsinthebible.com/</li>
<li><a title="Groupaway" href="http://groupawaytravel.com/" target="_blank">Groupaway</a> &#8211; New Development &#8211; http://groupawaytravel.com/</li>
<li><a title="THiNQ" href="http://drinkthinq.com/" target="_blank">THiNQ</a> &#8211; New Development &#8211; http://drinkthinq.com/</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2010/04/19/my-recent-work-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I want the Box of WordPress Legos!!</title>
		<link>http://visualcoma.com/2009/03/29/i-want-the-box-of-wordpress-legos/</link>
		<comments>http://visualcoma.com/2009/03/29/i-want-the-box-of-wordpress-legos/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 02:15:36 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[How to WordPress]]></category>
		<category><![CDATA[WordPress as a CMS]]></category>
		<category><![CDATA[WordPress Legos]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=2347</guid>
		<description><![CDATA[I think one of the most frequently asked questions I hear on a regular basis is; &#8220;Can WordPress Do That?&#8221; The answer is always the same&#8230;. Yes!!! The best response to any question like that is, &#8220;Who&#8217;s building it?&#8221; Honestly the question isn&#8217;t about weather or not &#8220;WordPress&#8221; can do something or not. Sure &#8220;out [...]]]></description>
			<content:encoded><![CDATA[<p>I think one of the most frequently asked questions I hear on a regular basis is; <strong>&#8220;Can WordPress Do That?&#8221;</strong> The answer is always the same&#8230;. <strong>Yes!!!</strong></p>
<p>The best response to any question like that is, &#8220;Who&#8217;s building it?&#8221; Honestly the question isn&#8217;t about weather or not &#8220;WordPress&#8221; can do something or not. Sure &#8220;out of the Box WP&#8221; can only do you so much. You add a dozen good plugins, a standard theme and you&#8217;ll have yourself a serious platform.</p>
<p>I find that the best approach to explaining a Platform like WordPress is comparing it to a <a href="http://www.visualcoma.com/wp-content/uploads/2009/03/pile-of-legos.jpg" target="_blank" title="">Pile of Legos</a>. &#8220;In My Mind&#8221; every Version of WP is like an updated version of my favorite &#8220;Web Legos&#8221;. <a href="http://wordpress.org/development/" target="_blank" title="The WordPress Community">The WordPress Community</a> and <a href="http://automattic.com/projects/" target="_blank" title="Automattic">Automattic</a> have been so kind as to create all these different pieces for us to use.</p>
<p>For me the idea of building something for a Web Site isn&#8217;t about just building something for one person. Every time I build a page I think about how I might use it in the future and I build it with development in mind&#8230;<br />
&#8220;Could This be a Plugin&#8221;,<br />
&#8220;Should This be a Plugin&#8221;,<br />
&#8220;Should I work this into the Admin&#8221;,<br />
&#8220;Should this be a Template&#8221;&#8230;.<br />
<em class="sarcasm">(and the list goes on and on and on&#8230;)</em></p>
<p><img class="" src="http://www.visualcoma.com/wp-content/uploads/2009/03/wp-lego-man.png" alt="wp_lego_man.png" title="wp_lego_man.png" width="" height="" /></p>
<p>What it comes down to is that &#8220;WordPress is an Engine that lets the Average Person Interact with a Database&#8221;</p>
<p>Step 1. Build Your Own Legos &#8211; HTML / CSS FrameWork.<br />
Step 2. Add WordPress Legos &#8211; PHP Functions &#038; Plugins.<br />
Step 3. Populate the Database Via WP Admin. <em class="sarcasm">the smart legos..</em><br />
Step 4. Write Posts about Sailor Lego Men in Nasty Tank-tops&#8230;.</p>
<p><em class="sarcasm">This has been a message of <a href="http://en.wikipedia.org/wiki/Blog" target="_blank" title="">Blogs for Blogs Network&#8230;</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2009/03/29/i-want-the-box-of-wordpress-legos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Media UpLoader</title>
		<link>http://visualcoma.com/2009/03/03/wordpress-media-uploader/</link>
		<comments>http://visualcoma.com/2009/03/03/wordpress-media-uploader/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 15:23:07 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Uploading Images to WordPress]]></category>
		<category><![CDATA[WordPress Media UpLoader]]></category>
		<category><![CDATA[WP Media Uploader Plugin]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=2317</guid>
		<description><![CDATA[The other day a friend of mine asked me if there was a place in the WP Admin where he could upload his images and get the url &#8220;easily&#8220;. My first response was just type in wp-admin/media-upload.php and there you go!!! Apparently I under estimated his Laziness and the Laziness of the blogging community as [...]]]></description>
			<content:encoded><![CDATA[<p>The other day a friend of mine asked me if there was a place in the WP Admin where he could upload his images and get the url &#8220;<em class="sarcasm">easily</em>&#8220;. My first response was just type in <strong>wp-admin/media-upload.php</strong> and there you go!!!</p>
<p>Apparently I under estimated <span style="text-decoration: underline;">his</span> Laziness and the Laziness of the blogging community as a whole. <em class="sarcasm">(in a very sarcastic way)</em> So, here is what I did&#8230; <strong>↓</strong></p>
<p><img class="alignleft" title="WP_Media_UpLoader.png" src="http://www.visualcoma.com/wp-content/uploads/2009/03/wp-media-uploader.png" alt="WP_Media_UpLoader.png" />I pulled the <em>media-upload.php</em> file into the WP Admin through a link in &#8220;Media&#8221; menu. I didn&#8217;t put in any bells or whistles to WOW you, Simplicity is key!!! Oh, and I put in a button so you can open a PopUp of the Uploader.</p>
<div class="clear center"><a title="Download" href="http://visualcoma.matt626.com/download-manager.php?id=2" target="_blank"><br />
</a></p>
<h4><a title="Download" href="http://www.visualcoma.com/downloads/WP_Media_uploader" target="_blank">↓<span style="text-decoration: underline;"> Download VC_MediaUploader </span>↓</a></h4>
<p><a title="Download" href="http://www.visualcoma.com/downloads/WP_Media_uploader" target="_blank"><img title="Zip.png" src="http://www.visualcoma.com/wp-content/uploads/2009/03/zip.png" alt="Zip.png" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2009/03/03/wordpress-media-uploader/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Galleries Got You Down?</title>
		<link>http://visualcoma.com/2008/12/17/wordpress-galleries-got-you-down/</link>
		<comments>http://visualcoma.com/2008/12/17/wordpress-galleries-got-you-down/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 16:14:42 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[gallery_shortcode]]></category>
		<category><![CDATA[gallery_style]]></category>
		<category><![CDATA[WP Gallery Short Code]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=2001</guid>
		<description><![CDATA[You ever put in a Gallery in a Post and it acts weird and looks off and there just seems to be no hope. And then you look at the html only to find out there is a style right in the middle of your code&#8230; Well, here is a little something I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>You ever put in a Gallery in a Post and it acts weird and looks off and there just seems to be no hope. And then you look at the html only to find out there is a style right in the middle of your code&#8230;</p>
<p>Well, here is a little something I decided to pay attention to yesterday. It&#8217;s been around for a while, but you know how it is when there are a million things going on. <em>(and honestly this isn&#8217;t high on the priority list)</em></p>
<p>None the less this will help out those of you that are daring enough to open up your functions.php file and put in a little css.</p>
<p>And if you want the full effect, go to the wp-includes/media.php file line 587 and check out the part of the gallery_shortcode function you&#8217;re filtering.</p>
<p><a title="download gallery_style.php.zip" href="http://www.visualcoma.com/downloads/gallery_style.php.zip" target="_blank"><img title="gallery_style.png" src="http://visualcoma.matt626.com/wp-content/uploads/2008/12/gallery-style1.png" alt="gallery_style.png" /></a></p>
<p><a title="download gallery_style.php.zip" href="http://www.visualcoma.com/downloads/gallery_style.php.zip" target="_blank">Download gallery_style.php</a> <em>ps &#8211; if there is a mistake in this let me know and I&#8217;ll update it!!! :cool:</em></p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2008/12/17/wordpress-galleries-got-you-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is that WP 2.7 ???</title>
		<link>http://visualcoma.com/2008/11/16/is-that-wp-27/</link>
		<comments>http://visualcoma.com/2008/11/16/is-that-wp-27/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 04:16:16 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Getting Ready for mass updates]]></category>
		<category><![CDATA[I Like]]></category>
		<category><![CDATA[Using WP2.7]]></category>
		<category><![CDATA[WP2.7 Beta3]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=1742</guid>
		<description><![CDATA[As some of you know I&#8217;m huge WordPress fan and sort of a Dork about it, and many of you know that there is a huge update coming out soon. Could be this week, who knows??? None the less I decided to go ahead and update my blog and see what happens. Nothings happened&#8230; I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wordpress.org/" target="_blank" title=""><img class="alignright" src="http://visualcoma.matt626.com/wp-content/uploads/2008/11/wplogo-notext-rgb.png" alt="wplogo-notext-rgb.png" title="wplogo-notext-rgb.png" width="90" /></a>As some of you know I&#8217;m huge WordPress fan and sort of a Dork about it, and many of you know that there is a huge update coming out soon. <em>Could be this week, who knows???</em> None the less I decided to go ahead and update my blog and see what happens. <em>Nothings happened&#8230;</em></p>
<p>I&#8217;m sure there are plenty of reasons to wait for the stable release to update a blog that has major worth and needs a good solid stable WP to run it, but not here. I&#8217;m usually running things about half mast, unfortunately I put all my time into other peoples work.</p>
<p>All the same, I can honestly say WP2.7 is going to be a great release. I&#8217;ve been building my themes with it for the last 3 weeks, <em>since before the beta 1 release</em> and now I can&#8217;t stand going into 2.6. In fact I just spent the last hour cleaning up my categories and using the &#8220;quick edit&#8221; options and &#8220;bulk edit&#8221; option.</p>
<p>Admin Navigation has been cut in half, How?&#8230; Now there is one click to get to widgets instead of two or possibly three. Upload and install Plugins strait from the Plugins page. <em>(although the plugins search is still just as crap as ever so good luck with that outside of the most popular plugins)</em> All pages are customizable with &#8220;Screen Options&#8221; and moveable pallets. Not to mention they got some handy little icons that are kinda nice.</p>
<div class="center"><img class="" src="http://visualcoma.matt626.com/wp-content/uploads/2008/11/menu.png" alt="menu.png" title="menu.png" /></div>
<p>I&#8217;ll admit there is always room for improvement and I can already think of a few, but I&#8217;m not about to bitch about such an awesome upgrade. :cool:</p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2008/11/16/is-that-wp-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP2.7 Parent Child Themes</title>
		<link>http://visualcoma.com/2008/11/09/wp27-parent-child-themes/</link>
		<comments>http://visualcoma.com/2008/11/09/wp27-parent-child-themes/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 04:37:10 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Future of WP Design]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Theme Development]]></category>
		<category><![CDATA[WP Parent Child Themes]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=1581</guid>
		<description><![CDATA[As some of you folks out there know WP2.7 is getting closer. (im not sure how close, I haven&#8217;t been keeping up on the news) There&#8217;s a lot of new stuff and a fresh new admin section. I&#8217;ve been following the updates through the nightly builds, testing out some new theme options that come with [...]]]></description>
			<content:encoded><![CDATA[<p>As some of you folks out there know WP2.7 is getting closer. <em>(im not sure how close, I haven&#8217;t been keeping up on the news)</em> There&#8217;s a lot of new stuff and a fresh new admin section. I&#8217;ve been following the updates through the nightly builds, testing out some new theme options that come with this 2.7. New Comment Features which you should check out. <em><a href="http://ottodestruct.com/blog/2008/09/29/wordpress-27-comments-enhancements/" target="_blank">here</a>, <a href="http://sivel.net/2008/10/wp-27-comment-separation/" target="_blank">here</a>, &amp; <a href="http://weblogtoolscollection.com/archives/2008/09/02/first-look-at-wordpress-27/" target="_blank">here</a>. oh yeah and a <a href="http://demo.talkpress.de/trunk/" target="_blank">Demo</a>.</em></p>
<h3>My Big Excitement!!! :cool:</h3>
<p>WP 2.7 has a some new features for their Parent Child Theme operations, the biggest of which to me is the use of template pages in your child theme that override the Parent Theme. <em>(what are Parent Child Thems??? read <a href="http://weblogtoolscollection.com/archives/2008/10/04/ian-stewart-on-child-themes-part-1/" target="_blank">here</a> &amp; <a href="http://weblogtoolscollection.com/archives/2008/10/05/ian-stewart-on-child-themes-part-2/" target="_blank">here</a>)</em></p>
<p>This is a big deal because now Designers can concentrate their efforts on a master Parent Theme that can handle multiple layouts, better functions, admin options, special template pages &amp;&amp; special loops. Every thing can be controlled from the child theme functions page and css. <em>(im not talking about distributed work here, this is all in-house stuff)</em></p>
<h3>What Have I Done  8-O</h3>
<p>What I did was build a house without putting it together. Using actions you can put anything anywhere from the functions page. You can even create special loop(s); give it a query, format the loop contents and insert it into any available action. <em>(i freaking wet my pants when i figured that one out)</em></p>
<h3>Why does this matter?</h3>
<p>If your HTML and CSS frame work are solid and you don&#8217;t plan on changing it anytime soon. Than all you&#8217;re adding are Functions, Usability and New Features. You can continually be adding and adding to your Parent Theme&#8217;s capabilities with out having to worry about what it looks like.</p>
<p>And!!! if you have three different sites all using the same Parent Theme but different Child Themes you can Update all three at once vs going into each one and messing with core stuff that&#8217;s irritating and tedious.</p>
<h3>Things to Remember!!!</h3>
<p>Don&#8217;t jump on this train to quick and start blindly into the tunnel. Do a little research first see what others have done and try and figure out why they did it.</p>
<p>For me the Best Example of a great Parent Theme is <a href="http://themeshaper.com/thematic-for-wordpress/" target="_blank">Thematic by Ian Stewart</a>&#8230; ;-) The biggest help I found was that after seeing what was under the hood I realized I already had everything I needed I just had to organize it and simplify it.</p>
<p>Do your homework&#8230; <em>and no this theme is not a child&#8230; this theme was a one night stand with an iStock photo&#8230; mmmm yummy iStock&#8230;</em></p>
<p><a href="http://codex.wordpress.org/Main_Page" target="_blank" title="Do Your Homework..."><img title="wplogo-stacked-rgb.png" src="http://visualcoma.matt626.com/wp-content/uploads/2008/11/wplogo-stacked-rgb.png" alt="wplogo-stacked-rgb.png" width="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2008/11/09/wp27-parent-child-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Sites and a Guy you should Subscribe to&#8230;</title>
		<link>http://visualcoma.com/2008/09/07/2-sites-and-a-guy-you-should-subscribe-to/</link>
		<comments>http://visualcoma.com/2008/09/07/2-sites-and-a-guy-you-should-subscribe-to/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 03:48:16 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Adii]]></category>
		<category><![CDATA[Nettuts]]></category>
		<category><![CDATA[Top 3 Subscriptions]]></category>
		<category><![CDATA[Weblogtoolscollection]]></category>
		<category><![CDATA[You Should Read]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=1347</guid>
		<description><![CDATA[In side your reader some where there is an "A" list, the people you're sure to read every time you actually go to or through the reader...]]></description>
			<content:encoded><![CDATA[<p>In side your reader some where there is an &#8220;A&#8221; list, the people you&#8217;re sure to read every time you actually go &#8216;to&#8217; or &#8216;through&#8217; your <a href="http://www.google.com/reader" target="_blank" title="">reader</a>. I&#8217;ll admit I don&#8217;t read every post I see, which is why I guess titles are important. <em>Heck if I read the titles I wrote, I wouldn&#8217;t read my own blog:(</em></p>
<p>All joking aside here are my top two Informational sites and a guy that knows some stuff about wordpress.</p>
<h3>#1 <a href="http://weblogtoolscollection.com/" target="_blank" title=""><img src="http://visualcoma.matt626.com/wp-content/uploads/2008/09/wltc.jpg" alt="wltc.jpg" border="0" width="100"/></a></h3>
<p>If you&#8217;re ever in need of a plugin review or some free themes to hi-jack this is your place. Not to mention their is a crap load of good info streaming through this place. They actually come with the standard WordPress install down at the bottom of your dashboard. <a href="http://weblogtoolscollection.com/" target="_blank" title="">Check them out if you haven&#8217;t already&#8230;</a></p>
<h3>#2 <a href="http://nettuts.com/" target="_blank" title=""><img src="http://visualcoma.matt626.com/wp-content/uploads/2008/09/header-logo.jpg" alt="header_logo.jpg" border="0" width="100" /></a></h3>
<p>Here you&#8217;ll find just about everything under the dark shroud of the interwebnet and maybe even an ebay or two. It would seem their isn&#8217;t any secret their not willing to give out. And when I mean give out, they actually offer the scripts for download&#8230;</p>
<h3>#3 <a href="http://www.adii.co.za/" target="_blank" title=""><img src="http://visualcoma.matt626.com/wp-content/uploads/2008/09/adii-mascott-bigger.gif" alt="adii-mascott_bigger.gif" border="0" width="50"/>Adii</a></h3>
<p>I&#8217;m not exactly sure what to say about this guy, although I guarantee you&#8217;ve seen his work. It&#8217;s hard to say what it is that he talks about specifically. I thinks it&#8217;s more of the fact that over the last 6mo he&#8217;s joined forces with some other well respected guys and I like what their doing. Be sure to go by <a href="http://www.woothemes.com/" target="_blank" title="">Woo Themes</a> and browse a little. I think you&#8217;ll like it.<br />
<br/><br/><br />
So that&#8217;s it, go and have fun&#8230; I know, I know, you don&#8217;t really have space in your reader for more&#8230; We&#8217;ll if you&#8217;re not into <a href="http://wordpress.org/" target="_blank" title="">WordPress</a> than this post isn&#8217;t for you and go <a href="http://failblog.org/" target="_blank" title="">here</a> instead&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2008/09/07/2-sites-and-a-guy-you-should-subscribe-to/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6 and Automatic Upgrade</title>
		<link>http://visualcoma.com/2008/07/15/wordpress-26-and-automatic-upgrade/</link>
		<comments>http://visualcoma.com/2008/07/15/wordpress-26-and-automatic-upgrade/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 15:01:52 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Upgrade]]></category>
		<category><![CDATA[WordPress Rules]]></category>
		<category><![CDATA[WP2.6]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=933</guid>
		<description><![CDATA[This is just a quicky, I'll save all the good stuff for Web App Wed...]]></description>
			<content:encoded><![CDATA[<p>This is just a quicky, I&#8217;ll save all the good stuff for Web App Wed&#8230; But in the mean time here is a little info for you WordPress self-hosted users.</p>
<p>I would suggest checking out this plugin before you go and download and upload a crap load of files manually. <span class="opt4">Don&#8217;t forget!!!</span> Always do your homework on a plugin before you use it, and if possible test it on someone else first. <em>no I&#8217;m not testing it on you&#8230;I already tested it on some of my theme sites and this one as well.</em></p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/" target="_blank" title=""><img src="http://visualcoma.matt626.com/wp-content/uploads/2008/07/wp-auto-upgrade.jpg" alt="wp-auto-upgrade.jpg" border="0" width="294" height="31" /></a></p>
<p><img src="http://visualcoma.matt626.com/wp-content/uploads/2008/07/download-auto-uploader.jpg" alt="download-auto-uploader.jpg" border="0" width="231" height="326" /></p>
<p><span class="opt4">&amp;</span></p>
<p><img src="http://visualcoma.matt626.com/wp-content/uploads/2008/07/download-wp26.jpg" alt="download-wp26.jpg" border="0" width="187" height="32" /></p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2008/07/15/wordpress-26-and-automatic-upgrade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A little WP 2.5</title>
		<link>http://visualcoma.com/2008/03/29/a-little-wp-25/</link>
		<comments>http://visualcoma.com/2008/03/29/a-little-wp-25/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 19:49:58 +0000</pubDate>
		<dc:creator>Randy Hicks</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.visualcoma.com/?p=439</guid>
		<description><![CDATA[I decided the other day to go ahead and go for it. I upgraded my WP to 2.5 even though it&#8217;s still a little raw. I thought that i would go ahead and get a feel for it so i could be up to par with what going to be the new WP standard. This [...]]]></description>
			<content:encoded><![CDATA[<p>I decided the other day to go ahead and go for it. I upgraded my <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">WP to 2.5</a> even though it&#8217;s still a little raw. I thought that i would go ahead and get a feel for it so i could be up to par with what going to be the new WP standard. This way i&#8217;ll know if i should be using it for my clients or waiting for a better version.</p>
<p>There are a few new features that i think everyone is going to love. The Add Media is absolutely great. They cut out the need for a couple of plugins and helped out with placement of multimedia objects. (im really not that big on putting video on here anyway, but it&#8217;s still nice to know there thinking about me.)</p>
<p>Here are a few screen captures to take a peak at.</p>
<p><a rel="attachment wp-att-445" href="http://www.visualcoma.com/2008/03/29/a-little-wp-25/wp-dashbord/"><img class="aligncenter size-medium wp-image-445" title="wp-dashbord" src="http://www.visualcoma.com/wp-content/uploads/2008/03/wp-dashbord-500x172.gif" alt="" width="500" height="172" /></a></p>
<p><a rel="attachment wp-att-444" href="http://www.visualcoma.com/2008/03/29/a-little-wp-25/wp-write/"><img class="aligncenter size-medium wp-image-444" title="wp-write" src="http://www.visualcoma.com/wp-content/uploads/2008/03/wp-write-500x245.gif" alt="" width="500" height="245" /></a></p>
<p>Another great option that has been added is that there are now three options for putting an image into a post.</p>
<ol>
<li>Thumbnail</li>
<li>Medium</li>
<li>Full Size</li>
</ol>
<p>What&#8217;s the big woop? well you can go to Setting / Miscellaneous and enter you sized for Thumbnail &amp; Medium. You can still re-size it the way you&#8217;re used too. The actual big woop is the combination of these things when your uploading a huge image you dont have to scroll through you Post window to get to the corner. (again and again) &#8211; just another way to skin the cat -</p>
<p>ps &#8211; if you&#8217;re not a <a href="http://www.wordpress.com">WP</a> user thats nice, but ive used <a href="https://www.blogger.com/start">Blogger</a> and its finiky and somewhat unreliable. The next time you get pissed off you should go check out <a href="http://www.wordpress.com">WP</a>. Im not telling you what to do, but do it anyway<br />
:-)</p>
]]></content:encoded>
			<wfw:commentRss>http://visualcoma.com/2008/03/29/a-little-wp-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
