<?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>thisismyurl.com</title>
	<atom:link href="http://thisismyurl.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thisismyurl.com</link>
	<description>Tutorials for WordPress and Website Design</description>
	<lastBuildDate>Wed, 16 May 2012 17:44:06 +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>get_better_excerpt() for WordPress has been updated</title>
		<link>http://thisismyurl.com/7736/getbetterexcerpt-wordpress-updated/</link>
		<comments>http://thisismyurl.com/7736/getbetterexcerpt-wordpress-updated/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:44:06 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[get_better_excerpt()]]></category>
		<category><![CDATA[wp_trim_words()]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7736</guid>
		<description><![CDATA[After reading a post on bavotasan.com about the new wp_trim_words() function in WordPress, I took a bit of time this morning to update my get_better_excerpt() plugin for WordPress to version 2.0, which now makes use of the new function. http://thisismyurl.com/downloads/wordpress-plugins/]]></description>
			<content:encoded><![CDATA[<p>After reading a post on <a href="http://bavotasan.com/2012/trim-your-text-with-wp_trim_words-in-wordpress/">bavotasan.com</a> about the new <strong>wp_trim_words()</strong> function in WordPress, I took a bit of time this morning to update my get_better_excerpt() plugin for WordPress to version 2.0, which now makes use of the new function.</p>
<p><a href="http://thisismyurl.com/downloads/wordpress-plugins/">http://thisismyurl.com/downloads/wordpress-plugins/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7736/getbetterexcerpt-wordpress-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oops, I lost thisismyurl.com</title>
		<link>http://thisismyurl.com/7733/oops-lost-thisismyurlcom/</link>
		<comments>http://thisismyurl.com/7733/oops-lost-thisismyurlcom/#comments</comments>
		<pubDate>Wed, 16 May 2012 16:11:09 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7733</guid>
		<description><![CDATA[This morning I had a problem running WordPress Multisite, it turns out that it was a simple error with file permissions but somehow in the process of updating the network settings and moving files around,  I managed to lose the theme for thisismyurl.com]]></description>
			<content:encoded><![CDATA[<p>This morning I had a problem running WordPress Multisite, it turns out that it was a simple error with file permissions but somehow in the process of updating the network settings and moving files around,  I managed to lose the theme for thisismyurl.com</p>
<p>Not to worry, the content is all OK but the site design &#8230; not so much.</p>
<p>As a result, the new and improved thisismyurl.com is really just the default TwentyEleven theme from WordPress while I try to decide what to do with the old theme, if you see anything funky on the site please let me know via <a href="http://twitter.com/thisismyurl">Twitter</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7733/oops-lost-thisismyurlcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fetch Twitter Count for WordPress</title>
		<link>http://thisismyurl.com/7711/fetch-twitter-count-wordpress/</link>
		<comments>http://thisismyurl.com/7711/fetch-twitter-count-wordpress/#comments</comments>
		<pubDate>Mon, 14 May 2012 14:21:46 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[file_get_contents]]></category>
		<category><![CDATA[function_exists]]></category>
		<category><![CDATA[get_transient]]></category>
		<category><![CDATA[set_transient]]></category>
		<category><![CDATA[SimpleXMLElement]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7711</guid>
		<description><![CDATA[Looking for an easy way to include your current Twitter count in WordPress, here's a fast (and free) function to return your current Twitter count.]]></description>
			<content:encoded><![CDATA[<p>Looking for an easy way to include your current Twitter count in WordPress? Here&#8217;s a simple piece of code I&#8217;m using to fetch and display the current Twitter count, it includes transient caching of one hour for your most recent Twitter count.</p>
<pre>
/**
* Summary returns the current follower count of a specific Twitter account, or FALSE if not found
* @param String $twitter_username the username you wish to get a Twitter count for
* @param Number $transient_cache the time in seconds to cache the transient (default is one hour)
* @return String an unformatted number of followers from twitter
*
* @author Christopher Ross (@thisismyurl)
* @version 1.0.0
*/
function thisismyurl_twitter_count( $twitter_username = 'thisismyurl', $transient_cache = 3600 ) {

$current_twitter_count = get_transient( 'thisismyurl_twitter_count' );

if ( empty( $current_twitter_count ) ) {

$xml = file_get_contents ( 'http://twitter.com/users/show/' . $twitter_username );

if ( $xml ) {
$twitter_profile = new SimpleXMLElement ( $xml );
$current_twitter_count = $twitter_profile-&gt;followers_count;

if ( !empty( $current_twitter_count ) )
set_transient( 'thisismyurl_twitter_count' , $current_twitter_count, $transient_cache );
} else {
return FALSE;
}

}

return $current_twitter_count;

}
</pre>
<p>To display your current Twitter count in your WordPress theme, include the code:</p>
<pre>
if ( function_exists( 'thisismyurl_twitter_count' ) )
echo thisismyurl_twitter_count( 'thisismyurl', 3600 );
</pre>
<p>If the count can not be returned, the function will return FALSE which allows error checking such as:</p>
<pre>
if ( function_exists( 'thisismyurl_twitter_count' ) ) {

$twitter_count = thisismyurl_twitter_count( 'thisismyurl', 3600 );

if ( $twitter_count )
echo 'Twitter Count:' . $twitter_count;
}
</pre>
<p>What do you think? Is there a way to improve this function?</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7711/fetch-twitter-count-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five simple rules to writing a better blog</title>
		<link>http://thisismyurl.com/7677/simple-rules-writing-blog/</link>
		<comments>http://thisismyurl.com/7677/simple-rules-writing-blog/#comments</comments>
		<pubDate>Sun, 13 May 2012 18:07:25 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Indulgence (Sex)]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[online marketing]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7677</guid>
		<description><![CDATA[Ernest Hemingway might have been onto something when he wrote that there is nothing to writing. All you do is sit down at a typewriter and bleed. The same, not surprisingly holds true for writing on a blog. First off, be honest. The Internet is a huge place but it&#8217;s easily searchable. If you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Ernest Hemingway might have been onto something when he wrote that <em>there is nothing to writing. All you do is sit down at a typewriter and bleed</em>.</p>
<p>The same, not surprisingly holds true for writing on a blog.</p>
<p>First off, <strong>be honest</strong>. The Internet is a huge place but it&#8217;s easily searchable. If you don&#8217;t take the time to be honest, people will figure it out pretty quickly. The same goes for social media, but it&#8217;s particularly true with writing your blog. Follow some simple advice, it&#8217;s easier to tell the truth than to try to cover it up later.</p>
<p>Whenever possible, <strong>be assertive</strong> but not aggressive and learn the difference.</p>
<p><strong>Be accurate</strong>. This isn&#8217;t the same as being honest, it&#8217;s important to realize that bloggers aren&#8217;t journalists but that we&#8217;re still responsible to our readership. If you&#8217;re going to claim the new iPhone 5&#8242;s battery life is only one hour, have the data to back it up or you&#8217;ll look like a fool (I have no idea how long the iPhone 5&#8242;s battery life will be by the way, it&#8217;s just an example). Likewise if you&#8217;re going to quote another blogger, make sure they&#8217;re accurate first.</p>
<p>Remember your manners and <strong>be courteous</strong> to your fellow bloggers. If you&#8217;re going to quote them, source them, reference their work, or even duplicate their ideas take the time to link back to them and give them and give them some credit. The web is a surprisingly small place, be polite about it.</p>
<p>Most importantly, if you want to write a successful blog then you have to <strong>be willing to give</strong> more than others. Put a little bit of yourself into every post you write, admit your own mistakes, and always shed a little blood on your MacBook Pro.</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7677/simple-rules-writing-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Photography Website Design</title>
		<link>http://thisismyurl.com/7668/responsive-photography-website-design/</link>
		<comments>http://thisismyurl.com/7668/responsive-photography-website-design/#comments</comments>
		<pubDate>Wed, 02 May 2012 19:31:15 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[bavotasan]]></category>
		<category><![CDATA[responsive design]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7668</guid>
		<description><![CDATA[This week I decided to update my personal photography website and took advantage of a new responsive design template from c.Bavota, it wasn&#8217;t specifically developed to be a WordPress theme but was fairly easy to modify into a powerful WordPress theme. When I&#8217;m not busy developing websites for online media with Rodonic, I&#8217;m pursuing my [...]]]></description>
			<content:encoded><![CDATA[<p>This week I decided to update my personal photography website and took advantage of a new responsive design template from <a href="http://bavotasan.com/2012/gridiculous-another-responsive-grid-boilerplate/">c.Bavota</a>, it wasn&#8217;t specifically developed to be a WordPress theme but was fairly easy to modify into a powerful WordPress theme.<span id="more-7668"></span></p>
<p><a href="http://thisismyurl.com/files/2012/05/rooftop-photos-dawn.jpeg" rel="lightbox[7668]" title="Photos of Dawn in Fredericton"><img class="alignright size-medium wp-image-7669" title="Photos of Dawn in Fredericton" src="http://thisismyurl.com/files/2012/05/rooftop-photos-dawn-300x198.jpg" alt="rooftop photos dawn 300x198 Responsive Photography Website Design" width="300" height="198" /></a>When I&#8217;m not busy <a href="http://rodonic.com">developing websites for online media with Rodonic</a>, I&#8217;m pursuing my first career choice as a photographer. While I appreciate I&#8217;ll never make a living as a creative artist, my love for the technical aspects of photography will never fade.</p>
<p>The site however is pretty neat.</p>
<p>As the web browser changes size, the underlying CSS automatically adjusts the page display to accommodate the content and display properly on devices.</p>
<h2>Responsive Design in Action</h2>
<p>In the first example, the website is viewed on a normal laptop and images are scaled to a maximum width, with multiple columns appearing on the page.</p>
<p><a href="http://thisismyurl.com/files/2012/05/responsive-design-laptop.jpg" rel="lightbox[7668]" title="responsive design laptop"><img class="aligncenter size-medium wp-image-7670" title="responsive design laptop" src="http://thisismyurl.com/files/2012/05/responsive-design-laptop-300x191.jpg" alt="responsive design laptop 300x191 Responsive Photography Website Design" width="300" height="191" /></a></p>
<p>While in the second example, an iPhone in the portrait position the website will automatically resize the images and adjust the columns to display in a single series of images.</p>
<p><a href="http://thisismyurl.com/files/2012/05/responsive-design-iphone.jpg" rel="lightbox[7668]" title="responsive design iphone"><img class="aligncenter size-full wp-image-7671" title="responsive design iphone" src="http://thisismyurl.com/files/2012/05/responsive-design-iphone.jpg" alt="responsive design iphone Responsive Photography Website Design" width="220" height="347" /></a></p>
<p>The real beauty however is when the iPhone is turned to the landscape direction and resizes yet again. <img src='http://thisismyurl.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Responsive Photography Website Design" class='wp-smiley' title="website design  Responsive Photography Website Design" /> </p>
<p>Thanks to c.Bavota for another great tool, <a href="http://gridiculo.us/">Gridiculous</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7668/responsive-photography-website-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.4 allows for better theme file structures</title>
		<link>http://thisismyurl.com/7656/wordpress-34-theme-file-structures/</link>
		<comments>http://thisismyurl.com/7656/wordpress-34-theme-file-structures/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 17:14:04 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fire architecture]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7656</guid>
		<description><![CDATA[I was pretty impressed reading Andrew Nacin&#8217;s most recent post on the changes to how WordPress processes theme files, as of WordPress 3.4 the theme allows page files to be located in sub directories, without the need to specify the directory. So, instead of polluting the root directory with dozens of special cases you can now place [...]]]></description>
			<content:encoded><![CDATA[<p>I was pretty impressed reading Andrew Nacin&#8217;s most recent post on the changes to <a href="http://nacin.com/2012/03/29/page-templates-in-subdirectories-new-in-wordpress-3-4/">how WordPress processes theme files</a>, as of WordPress 3.4 the theme allows page files to be located in sub directories, without the need to specify the directory.</p>
<p>So, instead of polluting the root directory with dozens of special cases you can now place those files in a sub-directory (but not two levels deep!).</p>
<p>Here&#8217;s an example structure:</p>
<p>/theme-directory<br />
&#8212;-/pages<br />
&#8212;&#8212;&#8211;/page-about.php<br />
&#8212;&#8212;&#8211;/page-contact.php</p>
<p>There&#8217;s no need to worry about telling WordPress to find the files, as WordPress with automatically parse the directories for the page files (but only one level deep. Thanks for point it out Andrew, that&#8217;s a big improvement for structuring the theme!</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7656/wordpress-34-theme-file-structures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change a WordPress theme with PHP</title>
		<link>http://thisismyurl.com/7644/change-wordpress-theme-php/</link>
		<comments>http://thisismyurl.com/7644/change-wordpress-theme-php/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 19:39:48 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[add_action]]></category>
		<category><![CDATA[code sample]]></category>
		<category><![CDATA[get_current_theme()]]></category>
		<category><![CDATA[get_stylesheet()]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[switch_theme()]]></category>
		<category><![CDATA[template_redirect]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7644</guid>
		<description><![CDATA[There are times when a programmer needs to change a theme using PHP rather than using the WordPress administration tool, this little piece of code will allow you to do that by placing it in your functions.php file. add_action( 'template_redirect' , 'thisismyurl_change_theme_manually' ); function thisismyurl_change_theme_manually() { if ( 'twentyeleven' != get_current_theme() ) switch_theme( 'twentyeleven', 'style.css' [...]]]></description>
			<content:encoded><![CDATA[<p>There are times when a programmer needs to change a theme using PHP rather than using the <strong>WordPress</strong> administration tool, this little piece of code will allow you to do that by placing it in your functions.php file.</p>
<pre>
add_action( 'template_redirect' , 'thisismyurl_change_theme_manually' );
function thisismyurl_change_theme_manually() {
if ( 'twentyeleven' != get_current_theme() )
switch_theme( 'twentyeleven', 'style.css' );
}
</pre>
<p>Update: Nacin (<a href='http://twitter.com/nacin'>@nacin</a>) pointed out a couple fixes for this piece of code. First, the get_current_theme() is depreciated, so get_stylesheet() is a better function to use and secondly, running this on the front end of the site isn&#8217;t the best idea.</p>
<p>With that in mind, here&#8217;s the revised code.</p>
<pre>
add_action( 'template_redirect' , 'thisismyurl_change_theme_manually' );
function thisismyurl_change_theme_manually() {
if ( 'twentyeleven' != get_stylesheet() &#038;&#038; is_admin() )
switch_theme( 'twentyeleven', 'style.css' );
}
</pre>
<p>You can read more from Andrew Nacin at <a href='http://nacin.com/2012/03/29/page-templates-in-subdirectories-new-in-wordpress-3-4/'>nacin.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7644/change-wordpress-theme-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assign a Template to a Page and all Child Pages</title>
		<link>http://thisismyurl.com/7641/assign-template-page-child-pages/</link>
		<comments>http://thisismyurl.com/7641/assign-template-page-child-pages/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 11:48:21 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[add_action]]></category>
		<category><![CDATA[code sample]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[template_redirect]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7641</guid>
		<description><![CDATA[An interesting question popped up the other day while I was developing a theme for a WordPress website. The client wanted to load a specific template for a specific page, as well as all of the child pages. For example, the About Us section but also the Contact Us (assuming it was a child of [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting question popped up the other day while I was developing a theme for a WordPress website. The client wanted to load a specific template for a specific page, as well as all of the child pages. For example, the About Us section but also the Contact Us (assuming it was a child of About Us).</p>
<p>If they&#8217;d just wanted to load a single page template, I would refer to the default hierarchal structure and simply create a theme file named <em>page-[slug].php</em> but how to do it for each of the subsection pages as well? On Friday when I wrote the a piece on <a title="WordPress easy redirect" href="http://thisismyurl.com/7638/random-post-wordpress-redirection/">redirecting WordPress based on the URL</a>, it occurred to me that there are a couple really easy ways to do it.</p>
<p>Here&#8217;s my solution:</p>
<pre>

add_action( 'template_redirect','thisismyurl_about_template_override' );
function thisismyurl_about_template_override() {
if (  strpos( $_SERVER['REQUEST_URI'], '/about-us' ) &gt; 0 ) {
include ( TEMPLATEPATH . '/page-about-us.php');
exit;
}
}
</pre>
<p>So what&#8217;s it do? Simply put, it waits until after WordPress has loaded everything it needs to load to run smoothly, then just before WordPress tries to load the theme file we intercept the logic and force it to load <em>page-about-us.php</em> instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7641/assign-template-page-child-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Post WordPress Redirection</title>
		<link>http://thisismyurl.com/7638/random-post-wordpress-redirection/</link>
		<comments>http://thisismyurl.com/7638/random-post-wordpress-redirection/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 11:39:01 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[code sample]]></category>
		<category><![CDATA[function.php]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Redirect]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7638</guid>
		<description><![CDATA[This morning I came across a fantastic post on Smashing Magazine dealing with WordPress redirection and how to create a random redirect for visitors to your website. The post is absolutely correct in its method for creating a redirect as presented but there&#8217;s a slightly more elegant approach I&#8217;ve learnt with building newspaper websites with [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I came across a fantastic post on Smashing Magazine dealing with <a href="http://wp.smashingmagazine.com/2012/04/19/random-redirection-in-wordpress/">WordPress redirection</a> and how to create a random redirect for visitors to your website. The post is absolutely correct in its method for creating a redirect as presented but there&#8217;s a slightly more elegant approach I&#8217;ve learnt with building <a title="WordPress newspaper website design" href="http://rodonic.com">newspaper websites with WordPress</a>, and that&#8217;s to use a hook.</p>
<p>A hook is a means in WordPress to override the default functionality of WordPress and in this case, what we want to do is force WordPress to redirect before it&#8217;s even begun loading all the extra logic. To do that, we&#8217;ll tap into the <a href="http://codex.wordpress.org/Plugin_API/Action_Reference/template_redirect">template_redirect</a> function. This function loads immediately after the website is initiated but before the theme file is loaded. It&#8217;s a perfect place to do things like redirect a page or, (as the name implies) the template. For example if you want to override a post or page template, this is where you can do it.</p>
<p>I&#8217;ve made two other small edits to the Smashing code example. First, I&#8217;ve added the redirect 302 value to the wp_redirect() function to tell Google that this is a temporary redirect (301 would be permanent) and I&#8217;ve combined the array for get_posts() into a single line as we won&#8217;t be reusing the variable.</p>
<pre>
add_action( 'template_redirect','thisismyurl_random_post' );
function thisismyurl_random_post() {
if (  '/random-post' == $_SERVER['REQUEST_URI'] ) {foreach ( get_posts ( array( 'numberposts' =&gt; 1, 'orderby' =&gt; 'rand' ) ) as $post ) {
wp_redirect ( get_permalink ( $post-&gt;ID ) , 302 );
exit;
}

}
}
</pre>
<p>Simply place this bit of logic in your functions.php file and you&#8217;ll be able to randomly redirect people to articles using a URL such as <a title="Random Redirect" href="http://thisismyurl.com/random-post">http://thisismyurl.com/random-post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7638/random-post-wordpress-redirection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the Fastest, Cheapest Way to Get a Great Website?</title>
		<link>http://thisismyurl.com/7628/fastest-cheapest-great-website/</link>
		<comments>http://thisismyurl.com/7628/fastest-cheapest-great-website/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 18:04:05 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Security (Money)]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cheap hosting]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://thisismyurl.com/?p=7628</guid>
		<description><![CDATA[Let&#8217;s pretend for a minute that you&#8217;re broke (or near broke) but you still want a good website for your small business. You can hire a website designer like me to build your site but it&#8217;s not going to come cheap (quality never does), you can learn to build your website yourself (that&#8217;ll take weeks to get [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s pretend for a minute that you&#8217;re broke (or near broke) but you still want a good website for your small business. You can hire a <a title="website designer" href="http://thisismyurl.com">website designer</a> like me to build your site but it&#8217;s not going to come cheap (quality never does), you can learn to build your website yourself (that&#8217;ll take weeks to get a basic site up), or you can settle for something that looks bad.<span id="more-7628"></span></p>
<p>What if there was another option?</p>
<p>Take for example a guy like me, I build dozens of sites a year and work around the clock for big, fancy companies so you have to assume that sometimes I get requests to build websites from friends and family members. I can&#8217;t really spot work on my national newspaper clients to build a free marketing tool for my mom, yet I also can&#8217;t ask her to do it herself.</p>
<p>What people want from a fast, cheap website is simple, here&#8217;s my list:</p>
<ol>
<li>to be able to update content easily</li>
<li>for it to look nice</li>
<li>easy to manage, with few technical issues</li>
<li>fast to setup</li>
<li>cheap</li>
</ol>
<p>My honest advice, to business owners looking for the best, cheapest, and fastest way to get a professional website up and running in minutes has two parts to it.</p>
<h2>WordPress.com</h2>
<p><img class="alignright size-full wp-image-7629" title="Website business stats" src="http://thisismyurl.com/files/2012/04/business-stats.jpeg" alt=" Whats the Fastest, Cheapest Way to Get a Great Website?" width="432" height="170" />First, I recommend people sign up for <a href="http://en.wordpress.com/business/">WordPress.com to run their website</a>. It&#8217;s free and it takes all the hosting issues away. It comes with an easy updating tool, web stats, marketing details, protection etc. and it has one more thing that makes it perfect for small business owners, you can register your domain name for $17 a year which includes your hosting.</p>
<p>$17 gets you a branded, professional hosting environment with a fully functional content manager and thousands of templates to choose from.</p>
<h2>Facebook.com</h2>
<p>Once you setup your website with WordPress.com (either free or with a domain name) you can add a Facebook business page to your website, where your customers can easily talk to you and share their questions. Facebook is free.</p>
<p>Setting up a WordPress.com account and a Facebook page should take you about two hours, once you&#8217;re done you&#8217;ll have a professional and amazing website with full social media integration. If you&#8217;re not technical and could use a hand setting up this combination, drop me a line and we can work something out .</p>
<p>When I&#8217;m asked by my close friends how to create a fast, cheap website without sacrificing quality &#8230; that&#8217;s my answer.</p>
]]></content:encoded>
			<wfw:commentRss>http://thisismyurl.com/7628/fastest-cheapest-great-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

