<?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>gorirrajoe &#187; wordpress</title>
	<atom:link href="http://gorirrajoe.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://gorirrajoe.com</link>
	<description>another FPSA production</description>
	<lastBuildDate>Mon, 21 May 2012 01:40:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>wordpress php snippets</title>
		<link>http://gorirrajoe.com/wordpress-php-snippets/</link>
		<comments>http://gorirrajoe.com/wordpress-php-snippets/#comments</comments>
		<pubDate>Sun, 08 May 2011 21:35:48 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1718</guid>
		<description><![CDATA[here are a bunch of frequently used code snippets i&#8217;ve used with many of my projects * i really should know these by now&#8230; but what are ya gonna do? linking to the homepage &#60;a href="&#60;?php echo get_option('home'); ?&#62;"&#62;...&#60;/a&#62; image references &#60;img src="&#60;?php bloginfo('stylesheet_directory'); ?&#62;/images/FILE_NAME.jpg" alt="&#60;?php bloginfo('name'); ?&#62;" title="&#60;?php bloginfo('name'); ?&#62;" /&#62; dynamic widgets &#60;?php [...]]]></description>
			<content:encoded><![CDATA[<p>here are a bunch of frequently used code snippets i&#8217;ve used with many of my projects</p>
<p>* i really should know these by now&#8230; but what are ya gonna do?</p>
<p><strong> linking to the homepage</strong></p>
<ul></ul>
<pre>&lt;a href="&lt;?php echo get_option('home'); ?&gt;"&gt;...&lt;/a&gt;</pre>
<p><strong> image references</strong></p>
<ul></ul>
<pre>&lt;img src="&lt;?php bloginfo('stylesheet_directory'); ?&gt;/images/FILE_NAME.jpg"
alt="&lt;?php bloginfo('name'); ?&gt;" title="&lt;?php bloginfo('name'); ?&gt;" /&gt;</pre>
<p><strong> dynamic widgets</strong></p>
<ul></ul>
<pre>&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('WIDGET_NAME') ) : ?&gt;
&lt;?php endif; ?&gt;</pre>
<p>then, in functions.php, add this:</p>
<pre>register_sidebar(array('name'=&gt;'WIDGET_NAME',
'before_widget' =&gt; '',
'after_widget' =&gt; '',
'before_title' =&gt; '&lt;h3&gt;',
'after_title' =&gt; '&lt;/h3&gt;',
));</pre>
<p><strong> custom fields &#8211; mentioned before on my site, but just to have &#8216;em all together</strong></p>
<ul></ul>
<pre>&lt;?php $VARIABLE_NAME=get_post_meta($post-&gt;ID, "CUSTOM_FIELD_NAME", true);
if (get_post_meta($post-&gt;ID, "CUSTOM_FIELD_NAME", true)) {
echo ("&lt;img src=\"FULL_PATH_TO/$VARIABLE_NAME\" /&gt;");
} ?&gt;</pre>
<p><strong> copyright</strong></p>
<ul></ul>
<pre>&amp;copy; &lt;?php echo date('Y'); ?&gt; - &lt;?php bloginfo('name'); ?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/wordpress-php-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>frequently used wordpress plugins</title>
		<link>http://gorirrajoe.com/frequently-used-wordpress-plugins/</link>
		<comments>http://gorirrajoe.com/frequently-used-wordpress-plugins/#comments</comments>
		<pubDate>Sun, 08 May 2011 20:45:21 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1713</guid>
		<description><![CDATA[i needed to keep a list of the wordpress plugins i use, either on my personal site or on the various other sites i&#8217;ve worked on required all in one seo pack google analyticator google xml sitemaps db cache reloaded fix hyper cache dependent on project anyvar custom post limits shadowbox js wordpress related posts [...]]]></description>
			<content:encoded><![CDATA[<p>i needed to keep a list of the wordpress plugins i use, either on my personal site or on the various other sites i&#8217;ve worked on</p>
<h2>required</h2>
<ul>
<li>all in one seo pack</li>
<li>google analyticator</li>
<li>google xml sitemaps</li>
<li>db cache reloaded fix</li>
<li>hyper cache</li>
</ul>
<h2>dependent on project</h2>
<ul>
<li>anyvar</li>
<li>custom post limits</li>
<li>shadowbox js</li>
<li>wordpress related posts</li>
<li>contact form 7 (+really simple CAPTCHA)</li>
<li>audio player</li>
<li>my page order</li>
<li>widget entries</li>
</ul>
<p>i need to also put frequently-used code&#8230; nice segue, joe&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/frequently-used-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>me and 1and1 are cool again&#8230;</title>
		<link>http://gorirrajoe.com/me-and-1and1-are-cool-again/</link>
		<comments>http://gorirrajoe.com/me-and-1and1-are-cool-again/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 15:47:09 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[1and1]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1561</guid>
		<description><![CDATA[so i&#8217;ve had this long-standing issue with my host, 1and1, where i wasn&#8217;t able to install plugins or upgrade the wordpress software to the latest and greatest version&#8230; this really ticked me off because i would have to do plugin updates manually (upload via ftp) and the newest wordpress 3.x didn&#8217;t want to upgrade at [...]]]></description>
			<content:encoded><![CDATA[<p>so i&#8217;ve had this long-standing issue with my host, 1and1, where i wasn&#8217;t able to install plugins or upgrade the wordpress software to the latest and greatest version&#8230;</p>
<p>this really ticked me off because i would have to do plugin updates manually (upload via ftp) and the newest wordpress 3.x didn&#8217;t want to upgrade at all (i&#8217;d get server errors)</p>
<p>so i finally consulted google and was able to find a solution &#8212; apparently it has bothered other people!</p>
<blockquote><p><em>If you are a 1and1.com user</em> and are having problems getting the <strong>auto upgrade</strong> to work (for both the core and plugins), here&#8217;s the fix.</p>
<p>Add the following line to your <strong>.htaccess</strong> file (in the root directory of your WP install):</p>
<p><code>AddType x-mapp-php5 .php</code></p></blockquote>
<p>as soon as i updated the .htaccess file, i was able to upgrade plugins and even wordpress itself!</p>
<p>i was even able to install the <strong><a href="http://www.bravenewcode.com/products/wptouch-pro/" target="_blank">WPtouch</a> </strong>plugin through my phone! that&#8217;s sick.</p>
<p>happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/me-and-1and1-are-cool-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the band of primates</title>
		<link>http://gorirrajoe.com/the-band-of-primates/</link>
		<comments>http://gorirrajoe.com/the-band-of-primates/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 18:20:26 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[gorirra]]></category>
		<category><![CDATA[pedobear]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1327</guid>
		<description><![CDATA[so i&#8217;ve FINALLY updated the gorirra site&#8230; it wasn&#8217;t just a small cosmetic change neither&#8230; it&#8217;s a whole upgrade to the wordpress cms. i&#8217;m really happy with the way it turned out &#8212; it&#8217;s simple and modern &#60;toot toot&#62; i&#8217;m kinda glad i didn&#8217;t go with my initial mockup:]]></description>
			<content:encoded><![CDATA[<p>so i&#8217;ve FINALLY updated the <a href="http://gorirra.com/" target="_blank">gorirra site</a>&#8230; it wasn&#8217;t just a small cosmetic change neither&#8230; it&#8217;s a whole upgrade to the wordpress cms.</p>
<p>i&#8217;m really happy with the way it turned out &#8212; it&#8217;s simple and modern &lt;toot toot&gt;</p>
<p>i&#8217;m kinda glad i didn&#8217;t go with my initial mockup:</p>
<div id="attachment_1333" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2010/03/gorirra-wireframe3.jpg"><img class="size-thumbnail wp-image-1333" title="gorirra-wireframe3" src="http://www.gorirrajoe.com/wp-content/uploads/2010/03/gorirra-wireframe3-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">wise decision...</p></div>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/the-band-of-primates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>more coding funzz!</title>
		<link>http://gorirrajoe.com/more-coding-funzz/</link>
		<comments>http://gorirrajoe.com/more-coding-funzz/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 21:22:40 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1290</guid>
		<description><![CDATA[on the topic of &#8220;figuring things out wrt coding&#8221; &#8212; i was working on converting a site to wordpress and was trying to figure out how to get a home page movie to appear ONLY on the home page (easily). so i looked around and found out there was a wordpress function called &#8220;is_front_page()&#8221; so, [...]]]></description>
			<content:encoded><![CDATA[<p>on the topic of &#8220;figuring things out wrt coding&#8221; &#8212; i was working on converting a site to wordpress and was trying to figure out how to get a home page movie to appear ONLY on the home page (easily).<br />
so i looked around and found out there was a wordpress function called &#8220;is_front_page()&#8221;</p>
<p>so, along with a nifty fade in/fade out script, i created this in the header.php file:</p>
<pre>&lt;?php
  if ( is_front_page() ) {
  echo "
    &lt;div class=\"hpmovie\"&gt;
      &lt;div id=\"xlide\"&gt;
        &lt;img src=\"wp-content/themes/[THEMENAME]/images/5.jpg\"
          alt=\"\" /&gt;
        &lt;img src=\"wp-content/themes/[THEMENAME]/images/11.jpg\"
          alt=\"\" /&gt;
        ...
      &lt;/div&gt;
    &lt;/div&gt;
  ";
  }
?&gt;</pre>
<p>so basically, if it&#8217;s the home page, it&#8217;ll write stuff to the page&#8230; boom</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/more-coding-funzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>anything you want can be yours at any time</title>
		<link>http://gorirrajoe.com/anything-you-want-can-be-yours-at-any-time/</link>
		<comments>http://gorirrajoe.com/anything-you-want-can-be-yours-at-any-time/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 07:48:30 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[andy]]></category>
		<category><![CDATA[colourlovers]]></category>
		<category><![CDATA[jason mraz]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1157</guid>
		<description><![CDATA[new site theme is up and running! i&#8217;m sure i forgot something so if you see any errors&#8230; lemme know (my qc guy is in town, but i&#8217;m excited to roll out with this) not like you care, but this is hugely different than the previous theme i had (white with the red line at [...]]]></description>
			<content:encoded><![CDATA[<p>new site theme is up and running!</p>
<p>i&#8217;m sure i forgot something so if you see any errors&#8230; lemme know (my qc guy is in town, but i&#8217;m excited to roll out with this)</p>
<p>not like you care, but this is hugely different than the previous theme i had (white with the red line at the top)&#8230; this one has a bit more color in it and a few more elements that i&#8217;ve picked up recently</p>
<p>to start, the main logo is a transparent png with a rollover AND it degrades nicely if you&#8217;re using a shitty browser like ie6&#8230;</p>
<div id="attachment_1158" class="wp-caption alignnone"><img class="size-full wp-image-1158" title="gorirrajoe-logo" src="http://www.gorirrajoe.com/wp-content/uploads/2010/01/gorirrajoe-logo.png" alt="" width="339" height="200" /><p class="wp-caption-text">tranny ping (not some gay dood in china)</p></div>
<p>so it&#8217;s one image, and the css switches the image when you roll over it&#8230; this method is pretty cool and super easy to pull off. the end result is clean and it loads quick!</p>
<p>then there&#8217;s the overall color scheme&#8230; i wish i was better at color theory, but i&#8217;m not. so i gotta do research on colourlovers for inspiration. i knew i wanted a &#8220;web 2.0&#8243; (ugh) <a href="http://www.colourlovers.com/palette/919313/Papua_New_Guinea" target="_blank">color scheme</a> and i think i did it&#8230;</p>
<p>another thing that&#8217;s cool is the footer &#8212; i knew i wanted to do a design with a 3 column footer&#8230; i&#8217;ve seen kids these days doing it so i wanted to join that crew&#8230; i moved the archive list down here, put a short little bio (that&#8217;s a first for me), put the social networking sites, and re-added my signature in the copyright</p>
<p>i really like logos&#8230; especially when they&#8217;re sharp&#8230; thanks to the interwebs, i was able to find a set of illustrator vectors of the social networking site logos. so i was able to resize them down without losing quality&#8230; i used the rollover styling here as well</p>
<div id="attachment_1159" class="wp-caption alignnone"><img class="size-full wp-image-1159" title="socialNetworking" src="http://www.gorirrajoe.com/wp-content/uploads/2010/01/socialNetworking.gif" alt="" width="400" height="100" /><p class="wp-caption-text">tranny gif this time... </p></div>
<p>and to celebrate, i&#8217;ll throw in a song&#8230; it&#8217;s actually a song i just learned on guitar &#8212; it&#8217;s SUPER simple even <a href="http://andymorales.com" target="_blank">andy</a> could prolly play it</p>
<p>it&#8217;s <a title="Jason Mraz - Anything You Want" href="http://www.gorirrajoe.com/wp-content/uploads/2010/01/anythingYouWant.mp3"><img style="display: none;" src="http://www.gorirrajoe.com/wp-content/uploads/2009/01/album-art.jpg" border="0" alt="" />jason mraz&#8217;s &#8220;anything you want&#8221;</a> off his live cd &#8211; &#8220;<a href="http://jasonmraz.shop.musictoday.com/Dept.aspx?cp=418_23538" target="_blank">beautiful mess: live on earth</a>&#8221; (<a href="http://www.hulu.com/watch/121727/jason-mraz-anything%C2%A0you%C2%A0want-from-jason-mrazs-beautiful-mess---live-on-earth" target="_blank">hulu</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/anything-you-want-can-be-yours-at-any-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://www.gorirrajoe.com/wp-content/uploads/2010/01/anythingYouWant.mp3" length="8451639" type="audio/mpeg" />
<enclosure url="http://www.gorirrajoe.com/wp-content/uploads/2010/01/anythingYouWant.mp3" length="8451639" type="audio/mpeg" />
		</item>
		<item>
		<title>test post from crunchberry</title>
		<link>http://gorirrajoe.com/test-post-from-crunchberry/</link>
		<comments>http://gorirrajoe.com/test-post-from-crunchberry/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 23:55:47 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/2009/10/10/test-post-from-crunchberry/</guid>
		<description><![CDATA[So I got this new app for my phone made by wordpress &#8212; specifically to create posts on my blackberry. I don&#8217;t know if I&#8217;ll use it a bunch or anything but it&#8217;s pretty cool that the wp folks are looking out for non-iPhoners So this is just a small test to see what it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>So I got this new app for my phone made by wordpress &#8212; specifically to create posts on my blackberry.</p>
<p>I don&#8217;t know if I&#8217;ll use it a bunch or anything but it&#8217;s pretty cool that the wp folks are looking out for non-iPhoners</p>
<p>So this is just a small test to see what it&#8217;s like&#8230;</p>
<p>If you want the app and you have a bberry, go here: http://blackberry.wordpress.org/</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/test-post-from-crunchberry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>new look, same great taste</title>
		<link>http://gorirrajoe.com/new-look-same-great-taste/</link>
		<comments>http://gorirrajoe.com/new-look-same-great-taste/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 06:16:31 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1075</guid>
		<description><![CDATA[new wordpress theme for your collective asses&#8230; lemme know what you think &#8212; and more importantly, if anything&#8217;s broken&#8230;]]></description>
			<content:encoded><![CDATA[<p>new wordpress theme for your collective asses&#8230;</p>
<p>lemme know what you think &#8212; and more importantly, if anything&#8217;s broken&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/new-look-same-great-taste/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>wordpress: installing wordpress locally on your pc</title>
		<link>http://gorirrajoe.com/wordpress-installing-wordpress-locally-on-your-pc/</link>
		<comments>http://gorirrajoe.com/wordpress-installing-wordpress-locally-on-your-pc/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 03:03:57 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=1017</guid>
		<description><![CDATA[as i write the title of this tutorial, i can tell it might get long and/or complicated&#8230; i&#8217;ll try my best&#8230; here we go FIRST, you&#8217;ll need the tools &#8212; download virtual pc (especially if you run windows vista) and then grab an image here &#8212; i would suggest getting the IE6 image, since that [...]]]></description>
			<content:encoded><![CDATA[<p>as i write the title of this tutorial, i can tell it might get long and/or complicated&#8230; i&#8217;ll try my best&#8230; here we go</p>
<p>FIRST, you&#8217;ll need the tools &#8212; <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=04D26402-3199-48A3-AFA2-2DC0B40A73B6&amp;displaylang=en" target="_blank">download virtual pc</a> (<strong>especially </strong>if you run windows vista) and then <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;displaylang=en" target="_blank">grab an image here</a> &#8212; i would suggest getting the IE6 image, since that version of IE is the &#8220;worst&#8221; of them all<br />
<span id="more-1017"></span><br />
great &#8212; now you can run virtual pc (check out my settings below, i give it 1GB of memory)</p>
<div id="attachment_1018" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress1.jpg"><img class="size-medium wp-image-1018" title="localWordpress1" src="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress1-300x212.jpg" alt="localWordpress1" width="300" height="212" /></a><p class="wp-caption-text">my settings for an IE6 image</p></div>
<p>now you can download your favorite text editor, <a href="http://www.mozilla.com/en-US/firefox/personal.html?from=getfirefox" target="_blank">firefox</a> and all the necessary plugins (like <a href="http://getfirebug.com/" target="_blank">firebug</a>)&#8230; and then download <a href="http://www.apachefriends.org/en/xampp-windows.html#641" target="_blank">xampp</a> (xampp is like setting up IIS on your machine so you can view server-based code locally (like asp and .net &#8212; wordpress is php)</p>
<p>after installing xampp, run it and it&#8217;ll look like this:</p>
<div id="attachment_1019" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress2.jpg"><img class="size-medium wp-image-1019" title="localWordpress2" src="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress2-300x243.jpg" alt="xampp up and running" width="300" height="243" /></a><p class="wp-caption-text">xampp up and running</p></div>
<p>you can make sure you set it up correctly by going to http://localhost/xampp/ &#8212; it&#8217;ll look like below:</p>
<div id="attachment_1020" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress3.jpg"><img class="size-medium wp-image-1020" title="localWordpress3" src="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress3-300x183.jpg" alt="w00t... it's set up!" width="300" height="183" /></a><p class="wp-caption-text">w00t... it&#39;s set up!</p></div>
<p>noooowwww&#8230; grab a copy of <a href="http://wordpress.org/download/" target="_blank">wordpress</a> and unzip it to C:\xampp\htdocs &#8212; if you intend on having multiple projects, unzip the files into a unique folder, like so</p>
<div id="attachment_1022" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress5.jpg"><img class="size-medium wp-image-1022" title="localWordpress5" src="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress5-300x226.jpg" alt="magi, skimonkey, wordpress, and snuggib are four different projects" width="300" height="226" /></a><p class="wp-caption-text">magi, skimonkey, wordpress, and snuggib are four different projects</p></div>
<p>from here, it&#8217;s just like setting up wordpress (without having to ftp the files, of course), but with some minor changes</p>
<p><strong>database setup</strong></p>
<p>go to http://localhost/xampp/ and click the phpMyAdmin link in the left column</p>
<div id="attachment_1023" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress6.jpg"><img class="size-medium wp-image-1023" title="localWordpress6" src="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress6-300x208.jpg" alt="set up the database" width="300" height="208" /></a><p class="wp-caption-text">set up the database</p></div>
<p>in the &#8220;create new database&#8221; field, type in the name of the database and click the &#8220;create&#8221; button</p>
<div id="attachment_1024" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress7.jpg"><img class="size-medium wp-image-1024" title="localWordpress7" src="http://www.gorirrajoe.com/wp-content/uploads/2009/08/localWordpress7-300x150.jpg" alt="name your database" width="300" height="150" /></a><p class="wp-caption-text">name your database</p></div>
<p><strong>update wp-config.php file</strong></p>
<p>jump over to C:\xampp\htdocs\folder_name and rename the wp-config-sample.php file to wp-config.php. update the code block below:</p>
<pre>// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'putyourdbnamehere');

/** MySQL database username */
define('DB_USER', 'usernamehere');

/** MySQL database password */
define('DB_PASSWORD', 'yourpasswordhere');</pre>
<p>1 &#8211; <em>define(&#8216;DB_NAME&#8217;, &#8216;putyourdbnamehere&#8217;); </em>- rename &#8216;<em>putyourdbnamehere&#8217;</em> with whatever your database name is</p>
<p>2 &#8211; <em>define(&#8216;DB_USER&#8217;, &#8216;usernamehere&#8217;);</em> &#8211; rename &#8216;<em>usernamehere&#8217;</em> with &#8216;root&#8217;</p>
<p>3 &#8211; <em>define(&#8216;DB_PASSWORD&#8217;, &#8216;yourpasswordhere&#8217;);</em> &#8211; replace <em>&#8216;yourpasswordhere&#8217;</em> with &#8221; (2 single quotes)</p>
<p><strong>install wordpress</strong></p>
<p>save the file and then head over to http://localhost/folder_name/wp-admin/install.php, where you&#8217;ll be greeted with the wordpress setup screen</p>
<p>after typing in your blog name and email address, MAKE NOTE of the username and password it provides for you &#8212; otherwise, you&#8217;ll have to reset that information in the database (ooh another tutorial idea)</p>
<p>ta-da! that should do it, you&#8217;ll be able to get into the admin through http://localhost/folder_name/wp-admin/ and view the site through http://localhost/folder_name/</p>
<p>questions or comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/wordpress-installing-wordpress-locally-on-your-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress: creating your own custom theme (part 2)</title>
		<link>http://gorirrajoe.com/wordpress-creating-your-own-custom-theme-part-2/</link>
		<comments>http://gorirrajoe.com/wordpress-creating-your-own-custom-theme-part-2/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 00:45:08 +0000</pubDate>
		<dc:creator>Joey</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gorirrajoe.com/?p=974</guid>
		<description><![CDATA[i feel that i should add a few notes as an addendum to my previous post &#8212; call it the &#8220;companion pack,&#8221; if you will after you modify the &#8220;default&#8221; folder in the &#8220;wp-content\themes&#8221; directory, make a copy of it and rename it to something&#8230; anything&#8230; i found this out the hard way. wordpress just [...]]]></description>
			<content:encoded><![CDATA[<p>i feel that i should add a few notes as an addendum to my previous post &#8212; call it the &#8220;companion pack,&#8221; if you will</p>
<ul>
<li>after you modify the &#8220;default&#8221; folder in the &#8220;wp-content\themes&#8221; directory, make a copy of it and rename it to something&#8230; anything&#8230;
<ul>
<li>i found this out the hard way. wordpress just recently did a string of updates (currently 2.8.2) and every time i&#8217;d do an update, my site would revert back to the default layout</li>
<li>luckily i had all my files locally so i was able to re-upload to the default folder</li>
<li>it only took me 3 upgrades to figure out that i had to rename the folder so that wordpress wouldn&#8217;t overwrite my work</li>
</ul>
</li>
</ul>
<p><span id="more-974"></span><br />
in doing so, a couple changes need to be made:</p>
<p>update the &#8220;style.css&#8221; header info &#8212; by default, it reads this:</p>
<pre>/*
Theme Name: WordPress Default
Theme URI: http://wordpress.org/
Description: The default WordPress theme based on the famous
&lt;a href="http://binarybonsai.com/kubrick/"&gt;Kubrick&lt;/a&gt;.
Version: 1.6
Author: Michael Heilemann
Author URI: http://binarybonsai.com/
Tags: blue, custom header, fixed width, two columns, widgets

 Kubrick v1.5

http://binarybonsai.com/kubrick/

 This theme was designed and built by Michael Heilemann,
 whose blog you will find at http://binarybonsai.com/

 The CSS, XHTML and design is released under GPL:

http://www.opensource.org/licenses/gpl-license.php

*/</pre>
<p>i updated my site&#8217;s header to this:</p>
<pre>/*
Theme Name: gorirraJoe
Description: The theme for www.gorirrajoe.com.
Author: Joey Hernandez
*/</pre>
<p>OPTIONAL: if you want, you can create a new &#8220;screenshot.png&#8221; file, sized 300 x 225 (px) &#8212; it could be a screenshot, a logo, or a goatse photo (if you&#8217;re into that)</p>
<p>*upload these files to the server, then go to &#8220;<strong>Appearance &gt; Themes</strong>&#8221;</p>
<p>you&#8217;ll see your new screenshot along with the text that you added to the &#8220;style.css&#8221; file</p>
<div id="attachment_975" class="wp-caption aligncenter"><a href="http://www.gorirrajoe.com/wp-content/uploads/2009/07/wp-customTheme3.gif"><img class="size-medium wp-image-975" title="wp-customTheme3" src="http://www.gorirrajoe.com/wp-content/uploads/2009/07/wp-customTheme3-300x173.gif" alt="new theme activated!" width="300" height="173" /></a><p class="wp-caption-text">new theme activated!</p></div>
<p>it&#8217;s a nice little touch, especially if you created the theme for a client.</p>
]]></content:encoded>
			<wfw:commentRss>http://gorirrajoe.com/wordpress-creating-your-own-custom-theme-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

