<?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>CliftonHatfield.com</title>
	<atom:link href="http://cliftonhatfield.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cliftonhatfield.com</link>
	<description>WordPress Blog Rockstar</description>
	<lastBuildDate>Sat, 18 May 2013 02:36:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Google Chrome&#8217;s Spell Checker</title>
		<link>http://cliftonhatfield.com/google-chromes-spell-checker/</link>
		<comments>http://cliftonhatfield.com/google-chromes-spell-checker/#comments</comments>
		<pubDate>Sat, 30 Mar 2013 02:22:54 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=5396</guid>
		<description><![CDATA[<p>Over the past several years, I&#8217;ve been using Mozilla Firefox as my browser of choice. A few months ago, I made a fulltime switch over to Chrome. (Sorry Internet Explorer, you are just a disappointment) Now, I&#8217;m not going to blab about why I left Firefox (Flash was constantly crashing the browser) or talk about [...]</p><p>The post <a href="http://cliftonhatfield.com/google-chromes-spell-checker/">Google Chrome&#8217;s Spell Checker</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Over the past several years, I&#8217;ve been using Mozilla Firefox as my browser of choice. A few months ago, I made a fulltime switch over to Chrome. (Sorry Internet Explorer, you are just a disappointment) Now, I&#8217;m not going to blab about why I left Firefox (Flash was constantly crashing the browser) or talk about everything <strong>I love about Chrome</strong>. However, there is something that caught my attention recently that Chrome offers and it has helped stop some lazy typos.</p>
<p>Now, I&#8217;m not a spell or grammar expert but I like to think that I can hold my own. I hope there aren&#8217;t <del>m</del>any grammar mistakes within this post. Chrome has an interesting feature that helps with my fast typing and occasional grammar mistake. Through Chrome, I am able to utilize the same engine that Google Search uses to correct mistakes when searches are being performed. So in real time, Google Chrome is proofreading my grammar in a way that will help prevent me from making 4th grade level mistakes. *hopefully</p>
<p>If you&#8217;re interested in using this amazing feature, you first need to be using Google Chrome as your browser. I hope you aren&#8217;t using Internet Explorer.</p>
<ol>
<li><span style="text-decoration: underline;"><a title="Download Google Chrome" href="http://google.com/chrome" target="_blank">Download Chrome</a></span></li>
<li>Right click into a text field</li>
<li>Select Spell-checker options</li>
<li>Select Ask Google for suggestions</li>
</ol>
<p>Next time Chrome spots a possible mistake, it will offer some suggestions.</p>
<p><img class="alignnone size-full wp-image-5397" alt="Google Chrome Spell Checker" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/google-chrome-spell-checker.jpg?resize=534%2C402" data-recalc-dims="1" /></p>
<p>The post <a href="http://cliftonhatfield.com/google-chromes-spell-checker/">Google Chrome&#8217;s Spell Checker</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/google-chromes-spell-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an Image with ImageMagick</title>
		<link>http://cliftonhatfield.com/creating-an-image-with-imagemagick/</link>
		<comments>http://cliftonhatfield.com/creating-an-image-with-imagemagick/#comments</comments>
		<pubDate>Fri, 29 Mar 2013 04:51:46 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=5387</guid>
		<description><![CDATA[<p>Recently, I wanted to create an image that contained the post title and I wanted to create that on-the-fly when the post was saved. I used ImageMagick and some PHP.  Here is the code I wrote to create the image. This is before I implemented it into WordPress. You will need ImageMagick installed. You can check if [...]</p><p>The post <a href="http://cliftonhatfield.com/creating-an-image-with-imagemagick/">Creating an Image with ImageMagick</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently, I wanted to create an image that contained the post title and I wanted to create that on-the-fly when the post was saved. I used ImageMagick and some PHP.  Here is the code I wrote to create the image. This is before I implemented it into WordPress.</p>
<p>You will need ImageMagick installed. You can check if you have it installed and compiled with PHP by checking your phpinfo() function.</p><pre class="crayon-plain-tag">&lt;?php

/*-----------------------------------------------------------*/
/* Set text */
/*-----------------------------------------------------------*/
$text = $_GET['text'];

/*-----------------------------------------------------------*/
/* Set width */
/*-----------------------------------------------------------*/
$width = '256';

/*-----------------------------------------------------------*/
/* Set height */
/*-----------------------------------------------------------*/
$height = '133';

/*-----------------------------------------------------------*/
/* Set size */
/*-----------------------------------------------------------*/
$size = $width.'x'.$height;

/*-----------------------------------------------------------*/
/* Set font */
/*-----------------------------------------------------------*/
$font = 'BebasNeue.otf';

/*-----------------------------------------------------------*/
/* Set background */
/*-----------------------------------------------------------*/
$background = 'bg.jpg';

/*-----------------------------------------------------------*/
/* Set quality */
/*-----------------------------------------------------------*/
$quality = '100';

/*-----------------------------------------------------------*/
/* Set position */
/*-----------------------------------------------------------*/
$position = 'center';

/*-----------------------------------------------------------*/
/* Set x window color */
/*-----------------------------------------------------------*/
$xc = 'transparent';

/*-----------------------------------------------------------*/
/* Set font size */
/*-----------------------------------------------------------*/
$pointsize = '28';

/*-----------------------------------------------------------*/
/* Set image path */
/*-----------------------------------------------------------*/
$path = 'images/video-thumbs/';

/*-----------------------------------------------------------*/
/* Set filename */
/*-----------------------------------------------------------*/
$filename = str_replace(array(' ', '&amp;', '\n'), '', strtolower($text));

/*-----------------------------------------------------------*/
/* Set file */
/*-----------------------------------------------------------*/
$file = $path.$filename.'.png';

exec('convert -size '.$size.' tile:'.$background.' -quality '.$quality.'  -gravity '.$position.' xc:'.$xc.' -font '.$font.' -pointsize '.$pointsize.' \
           -fill white        -annotate +2+2 "'.$text.'" \
           -fill gray         -annotate +0+0 "'.$text.'" \
           -fill transparent  -annotate +1+1 "'.$text.'" \
           -composite '.escapeshellarg($file));

?&gt;

<img alt="&lt;?php echo $text; ?&gt;" src="&lt;?php echo $file; ?&gt;" /></pre><p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/creating-an-image-with-imagemagick/">Creating an Image with ImageMagick</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/creating-an-image-with-imagemagick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If You&#8217;re Blogging to Sell Products Then You Will Fail, I Promise</title>
		<link>http://cliftonhatfield.com/blogging-to-sell-products/</link>
		<comments>http://cliftonhatfield.com/blogging-to-sell-products/#comments</comments>
		<pubDate>Wed, 27 Feb 2013 17:11:17 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Internet Lifestyle Network]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=5285</guid>
		<description><![CDATA[<p>Internet Lifestyle Network - I promise you will fail if you are trying to sell your products or service on your blog. Why are some blogs highly profitable and others crash and burn? The successful blogs sell without selling through relationship building.</p><p>The post <a href="http://cliftonhatfield.com/blogging-to-sell-products/">If You&#8217;re Blogging to Sell Products Then You Will Fail, I Promise</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a title="Internet Lifestyle Network" href="http://internetlifestylenetwork.com" target="_blank">Internet Lifestyle Network</a> &#8211; I promise you will fail if you are trying to sell your products or service on your blog. Why are some blogs highly profitable and others crash and burn? The successful blogs sell without selling through relationship building.</p>
<p>The post <a href="http://cliftonhatfield.com/blogging-to-sell-products/">If You&#8217;re Blogging to Sell Products Then You Will Fail, I Promise</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/blogging-to-sell-products/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Amazon S3 CDN URL Mask</title>
		<link>http://cliftonhatfield.com/amazon-s3-cdn-url-mask/</link>
		<comments>http://cliftonhatfield.com/amazon-s3-cdn-url-mask/#comments</comments>
		<pubDate>Sun, 09 Dec 2012 19:20:37 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=5044</guid>
		<description><![CDATA[<p>Each Amazon S3 Bucket has a long url that can be difficult to remember . Here is how I used the Amazon S3 account as a CDN to distribute my plugins. First, login into your hosting account's cPanel and click on Simple DNS Zone Editor.</p><p>The post <a href="http://cliftonhatfield.com/amazon-s3-cdn-url-mask/">Amazon S3 CDN URL Mask</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A couple of years ago, I started using my Amazon S3 account to distribute the WordPress Plugins I wrote. Seemed like a great way for people to download the plugins without adding load to my server. At the time, I didn&#8217;t want to place the plugins in the WordPress Plugin Directory.</p>
<p>Each Amazon S3 Bucket has a long url that can be difficult to remember . Here is how I used the Amazon S3 account as a CDN to distribute my plugins.</p>
<h3>cPanel &amp; Simple DNS Zone Editor</h3>
<p>Login into your hosting account&#8217;s cPanel and click on Simple DNS Zone Editor.</p>
<p><img class="alignnone size-full wp-image-5050" title="Simple DNS Zone Editor cPanel" alt="Simple DNS Zone Editor cPanel" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/Simple-DNS-Zone-Editor-cPanel.jpg?resize=612%2C230" data-recalc-dims="1" /></p>
<h3>CNAME Record</h3>
<p>Next, create a CNAME record by typing the CDN URL (e.g cdn.example.com) into the name field and the Amazon S3 bucket URL into the CNAME field. Click Add CNAME Record button. The new record should be instant.</p>
<p><img class="alignnone size-full wp-image-5051" title="cPanel CNAME CDN Record Amazon S3" alt="cPanel CNAME CDN Record Amazon S3" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/cPanel-CNAME-CDN-Record-Amazon-S3.jpg?resize=612%2C346" data-recalc-dims="1" /></p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/amazon-s3-cdn-url-mask/">Amazon S3 CDN URL Mask</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/amazon-s3-cdn-url-mask/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resize Video Function &#8216;on the fly&#8217; with PHP</title>
		<link>http://cliftonhatfield.com/resize-video-function-on-the-fly-with-php/</link>
		<comments>http://cliftonhatfield.com/resize-video-function-on-the-fly-with-php/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 13:49:56 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=5026</guid>
		<description><![CDATA[<p>I just wrote this function to resize video elements for my WordPress Lightbox Plugin. This specific script is designed to be used with an ajax call within the WordPress Dashboard. Edit to fit your needs.</p><p>The post <a href="http://cliftonhatfield.com/resize-video-function-on-the-fly-with-php/">Resize Video Function &#8216;on the fly&#8217; with PHP</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I just wrote this function to resize video elements for my <a title="Clifton’s Lightbox" href="http://cliftonhatfield.com/cliftons-lightbox/">WordPress Lightbox Plugin</a>. This specific script is designed to be used with an ajax call. Like this:</p>
<blockquote><p>Let me know if you have any problems. I just rewrote most of this on the fly, so there may be errors. &#8230;but hopefully not. :)</p></blockquote>
<h3>jQuery / Javascript</h3>
<p>Add this to your plugin&#8217;s javascript file between the</p><pre class="crayon-plain-tag">jQuery(function($){
    $('#video-code').bind('paste', function(){
        var field = $(this);
        setInterval(function(){
            var vall = $(field).val();
            var html = encodeURIComponent(val);
            $.post(ajaxurl, 'action=clp_resize_video&amp;html='+html, function(response){
               $(field).val(response);
            });
        }, 150);
    });
});</pre><p></p>
<h3>PHP WordPress Function</h3>
<p>This can be added to your plugin&#8217;s functions file.</p><pre class="crayon-plain-tag">add_action('wp_ajax_clp_size_video', 'clp_size_video');
function clp_size_video(){
    $new_width = 320;
    $video = stripslashes($_POST['html']);
    preg_match("/width=\"([^\"]*)\"/i",$video,$w);
    $w = (integer)$w[1];
    preg_match("/height=\"([^\"]*)\"/i",$video,$h);
    $h = (integer)$h[1];
    if(!$new_width)
        $new_width = $w;
    $w2 = $new_width;
    $ratio = (float)($w2/$w);
    $h2 = (integer)($h * $ratio);
    $video = str_replace("width=\"$w\"","width=\"$w2\"",$video);
    $video = str_replace("height=\"$h\"","height=\"$h2\"",$video);
    echo $video;
    die();
}</pre><p></p>
<p>The post <a href="http://cliftonhatfield.com/resize-video-function-on-the-fly-with-php/">Resize Video Function &#8216;on the fly&#8217; with PHP</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/resize-video-function-on-the-fly-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Shortcodes to Text Widgets</title>
		<link>http://cliftonhatfield.com/add-shortcodes-to-text-widgets/</link>
		<comments>http://cliftonhatfield.com/add-shortcodes-to-text-widgets/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 13:44:44 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=5009</guid>
		<description><![CDATA[<p>Are you thinking of using a plugin that uses shortcodes? (Shortcodes are tags in square brackets like [bubbles id="10"] that some plugins use to embed content into posts and pages.)  But what if you want to be able to use a shortcode in your blog’s sidebar instead of your post or page?</p><p>The post <a href="http://cliftonhatfield.com/add-shortcodes-to-text-widgets/">Add Shortcodes to Text Widgets</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-5010" title="WordPress Shortcodes" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/WordPress-Shortcodes.jpg?resize=160%2C160" alt="WordPress Shortcodes" data-recalc-dims="1" />Are you thinking of using a plugin that uses shortcodes? (Shortcodes are tags in square brackets like<strong> [bubbles id="10"]</strong> that some plugins use to embed content into posts and pages.)  But what if you want to be able to use a shortcode in your blog’s sidebar instead of your post or page?</p>
<p>Normally, shortcodes are ignored if you try putting them in a sidebar Text widget — all that’s displayed is the shortcode itself.  But there is a one-line tweak you can add to your theme that will enable you to put any shortcode you like in a sidebar Text widget. Here are some steps to get you started:</p>
<ol>
<li>Login to your blog’s administration pages and go to the Theme Editor — i.e. select <strong>Appearance </strong>&gt;<strong> Editor</strong> from the admin menu.</li>
<li>Look in the list of <strong>Template Files</strong> on the right of the page for one called <strong>Theme Functions</strong> or <strong>functions.php</strong> and click on it to load it into the editor.</li>
<li>Find a place between the <strong>&lt;?php</strong> and <strong>?&gt; </strong>tags which is not in the middle one of the functions that may already be in the file (the very top or bottom of the file are both good places) and add the following line:
<div><code>add_filter('widget_text', 'do_shortcode');</code></div>
</li>
<li>Click on the <strong>Update File</strong> button to save the modified file.</li>
</ol>
<p>Assuming you didn&#8217;t mess anything up, go to your <strong>Appearance &gt; Widgets</strong> page. Drag a Text widget to the sidebar area. Add your shortcode into the widget and save. The shortcode will now be displayed in the sidebar of your blog.</p>
<p>Well done.</p>
<p>The post <a href="http://cliftonhatfield.com/add-shortcodes-to-text-widgets/">Add Shortcodes to Text Widgets</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/add-shortcodes-to-text-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clifton&#8217;s Lightbox added to WordPress Directory</title>
		<link>http://cliftonhatfield.com/cliftons-lightbox-added-to-wordpress-directory/</link>
		<comments>http://cliftonhatfield.com/cliftons-lightbox-added-to-wordpress-directory/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 17:30:48 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Clifton's Lightbox]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4992</guid>
		<description><![CDATA[<p>After a few years of distributing Clifton's Lightbox Plugin via email, I decided to reach the masses and upload my plugin to the WordPress Plugin Directory. Also, I decided to drop the "Plugin" at the end of the name as it seems redundant having Clifton's Lightbox Plugin within a Plugin Directory.</p><p>The post <a href="http://cliftonhatfield.com/cliftons-lightbox-added-to-wordpress-directory/">Clifton&#8217;s Lightbox added to WordPress Directory</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-5001" title="Clifton's Lightbox for WordPress" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/thumb.jpg?resize=150%2C150" alt="Clifton's Lightbox for WordPress" data-recalc-dims="1" />After a few years of distributing Clifton&#8217;s Lightbox Plugin via email, I decided to reach the masses and upload my plugin to the <a title="Clifton's Lightbox in WordPress Plugin Directory" href="http://wordpress.org/extend/plugins/cliftons-lightbox/" rel="nofollow" target="_blank">WordPress Plugin Directory</a>. Also, I decided to drop the &#8220;Plugin&#8221; at the end of the name as it seems redundant having <em>Clifton&#8217;s Lightbox Plugin</em> within a Plugin Directory. I&#8217;m hoping to reach over 100 downloads in its first 24 hours in the repository.</p>
<h3>Recent Changes</h3>
<p>Before uploading the plugin to the WordPress Plugin Directory, I made some changes and notched the version to 2.3.</p>
<ol>
<li>Added the option to hide the <em>already</em> discreet link in the lightbox footer.</li>
<li>I removed the support Talk Fusion videos.</li>
<li>I removed the update script that used my servers as a resource for updating the plugin.</li>
</ol>
<h3>Installation</h3>
<p>You now have two ways of installing Clifton&#8217;s Lightbox.</p>
<ol>
<li>You can either download the <a title="Download Clifton's Lightbox" href="http://wordpress.org/extend/plugins/cliftons-lightbox/developers/" rel="nofollow" target="_blank">zip file</a> and upload it to your <em>/wp-content/plugins/</em> directory.</li>
<li>Or you can search for it from your WordPress Dashboard &gt; Plugins &gt; Add New. Keywords: Clifton&#8217;s Lightbox</li>
</ol>
<p>I&#8217;m excited about this move and I hope that the plugin will serve many well.</p>
<p>The post <a href="http://cliftonhatfield.com/cliftons-lightbox-added-to-wordpress-directory/">Clifton&#8217;s Lightbox added to WordPress Directory</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/cliftons-lightbox-added-to-wordpress-directory/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Quick PHP Permanent Redirect</title>
		<link>http://cliftonhatfield.com/quick-php-permanent-redirect/</link>
		<comments>http://cliftonhatfield.com/quick-php-permanent-redirect/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 14:05:53 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Affiiate Marketing]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4994</guid>
		<description><![CDATA[<p>There are many different ways to redirect a visitor from one URL to another. I prefer the PHP redirect. Let's say for example you are an affiliate for a new online store and they have given you a unique affiliate link to post on your blog to track the referrals you generate. Most of the time, this link it pretty ugly. ﻿You may want to have a URL that looks more professional or perhaps easier for someone to type or remember. You can redirect visitors from the pretty URL to the actual affiliate link instantly and still receive credit for the referral.</p><p>The post <a href="http://cliftonhatfield.com/quick-php-permanent-redirect/">Quick PHP Permanent Redirect</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>There are many different ways to redirect a visitor from one URL to another. I prefer the PHP redirect. Let&#8217;s say for example you are an affiliate for a new online store and they have given you a unique affiliate link to post on your blog to track the referrals you generate. Most of the time, this link it pretty <em>ugly. </em>You may want to have a URL that looks more professional or perhaps easier for someone to type or remember. You can redirect visitors from the pretty URL to the actual affiliate link instantly and still receive credit for the referral.</p>
<p>Like I said, there are many ways to do this, here is one&#8230;</p>
<h3>Execute a PHP 301 Permanent Redirect</h3>
<ol>
<li>Create an empty PHP file. e.g. redirect.php</li>
<li>Copy the code below and paste it within the file.</li>
<li>Make sure there are no spaces or other characers before the first <!--?php--></li>
<li>Save. &amp; upload.</li>
</ol>
<p>[php]</p>
<p>&lt;?<br />
header(&quot;HTTP/1.1 301 Moved Permanently&quot;);<br />
header(&quot;location: http://www.domain.com&quot;);<br />
exit();<br />
?&gt;</p>
<p>[/php]</p>
<p>The post <a href="http://cliftonhatfield.com/quick-php-permanent-redirect/">Quick PHP Permanent Redirect</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/quick-php-permanent-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Toggle / Accordion Markup</title>
		<link>http://cliftonhatfield.com/jquery-toggle-accordion-markup/</link>
		<comments>http://cliftonhatfield.com/jquery-toggle-accordion-markup/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 03:49:45 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4978</guid>
		<description><![CDATA[<p>This script demonstrates a simple toggle list HTML/CSS/Javascript to create a horizontal accordion effect. This can be handy for sidebar/widget style navigation, frequently asked questions, etc. Of course, load the jQuery library before calling jQuery(function($){});</p><p>The post <a href="http://cliftonhatfield.com/jquery-toggle-accordion-markup/">jQuery Toggle / Accordion Markup</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This script demonstrates a simple toggle list HTML/CSS/Javascript to create a horizontal accordion effect. This can be handy for sidebar/widget style navigation, frequently asked questions, etc. Of course, load the jQuery library before calling jQuery(function($){});</p>
<p><a href="http://cliftonhatfield.com/wp-content/uploads/jquery-accordian-toggle.html" title="jQuery Toggle / Accordion Demo" target="_blank"><strong>Demo</strong></a></p>
<h3>CSS</h3>
<p>[css]</p>
<p>        #toggle .toggle {display:none;font-size:13px;background-color:#EEE;color:#666;text-shadow:1px 1px rgba(255,255,255,0.9)}<br />
        #toggle .toggler {cursor:pointer;font-size:18px;background-color:#B10000;color:#FFF;text-shadow:1px 1px rgba(0,0,0,0.9);}<br />
        #toggle div {margin:0;padding:8px;font-family:Arial, Helvetica, sans-serif;}</p>
<p>[/css]</p>
<h3>jQuery</h3>
<p>[code lang="js"]<br />
        jQuery(function($){<br />
                $('#toggle .toggler').click(function(){<br />
                        $(this).next().toggle();<br />
                });<br />
        });<br />
[/code]</p>
<h3>HTML</h3>
<p>[code lang="html"]<br />
    &lt;div id=&quot;toggle&quot;&gt;<br />
        &lt;div class=&quot;toggler&quot;&gt;Toggle 1&lt;/div&gt;<br />
        &lt;div class=&quot;toggle&quot;&gt;Show for toggle one&lt;/div&gt;<br />
        &lt;div class=&quot;toggler&quot;&gt;Toggle 2&lt;/div&gt;<br />
        &lt;div class=&quot;toggle&quot;&gt;Show for toggle two&lt;/div&gt;<br />
    &lt;/div&gt;<br />
[/code]</p>
<p>The post <a href="http://cliftonhatfield.com/jquery-toggle-accordion-markup/">jQuery Toggle / Accordion Markup</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/jquery-toggle-accordion-markup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Register New Menus in WordPress</title>
		<link>http://cliftonhatfield.com/register-new-menus-in-wordpress/</link>
		<comments>http://cliftonhatfield.com/register-new-menus-in-wordpress/#comments</comments>
		<pubDate>Mon, 26 Nov 2012 13:00:54 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4964</guid>
		<description><![CDATA[<p>Register multiple custom navigation menus in the new custom menu editor of WordPress 3.0. This allows for the creation of custom menus. Users will no longer need any plugins to manage or customize their navigation menus. However, not all themes are created equal. Many outdated menus don't support custom menus. If you are married to your theme and it doesn't support custom WordPress menus, then you can add them yourself. Here is how to add custom menus to your WordPress blog.</p><p>The post <a href="http://cliftonhatfield.com/register-new-menus-in-wordpress/">Register New Menus in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-4973" title="WordPress Custom Menus" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/WordPress-Custom-Menus.jpg?resize=150%2C150" alt="WordPress Custom Menus" data-recalc-dims="1" />Register multiple custom navigation menus in the new custom <a href="http://cliftonhatfield.com/wordpress-3-0-menu-management-video-tutorial/" title="WordPress 3.0 Menu Management : Video Tutorial">menu editor of WordPress 3.0</a>. This allows for the creation of custom menus. Users will no longer need any plugins to manage or customize their navigation menus.</p>
<p>However, not all themes are created equal. Many outdated themes don&#8217;t support custom menus. If you are married to your theme and it doesn&#8217;t support custom WordPress menus, then you can add them yourself. Here is <em>how to add custom menus to your WordPress blog</em>.</p>
<p>Register new menu in <strong>functions.php</strong> between the &lt;?php and ?&gt;</p>
<p>[php]register_nav_menu( &#8216;secondary&#8217;, &#8216;Secondary Menu&#8217; );[/php]</p>
<p>Then go to <strong>header.php</strong> and add the new custom menu. Review the options for $args array in the reference below.</p>
<p>[php]&lt;?php<br />
$args = array(&#8216;theme_location&#8217;=&gt;&#8217;secondary&#8217;);<br />
wp_nav_menu($args);<br />
?&gt;[/php]</p>
<p>Additional Resources:<br />
<a href="http://codex.wordpress.org/Function_Reference/register_nav_menu" rel="nofollow" target="_blank">http://codex.wordpress.org/Function_Reference/register_nav_menu</a><br />
<a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu" rel="nofollow" target="_blank">http://codex.wordpress.org/Function_Reference/wp_nav_menu</a></p>
<p>The post <a href="http://cliftonhatfield.com/register-new-menus-in-wordpress/">Register New Menus in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/register-new-menus-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Placeholder Plugin</title>
		<link>http://cliftonhatfield.com/wordpress-placeholder-plugin/</link>
		<comments>http://cliftonhatfield.com/wordpress-placeholder-plugin/#comments</comments>
		<pubDate>Sun, 25 Nov 2012 14:39:07 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4956</guid>
		<description><![CDATA[<p>Last week, I needed to write a WordPress plugin which adds cross-browser support for the placeholder attribute for input fields. Display the label within the input field without changing the value attribute. The placeholder attribute is already supported in new versions of Firefox and Chrome but my plugin adds support for Internet Explorer (of course).</p><p>The post <a href="http://cliftonhatfield.com/wordpress-placeholder-plugin/">WordPress Placeholder Plugin</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Last week, I needed to write a WordPress plugin which adds cross-browser support for the <strong>placeholder attribute</strong> for input fields.</p>
<p>Example<br />
&lt;input type=&#8221;text&#8221; name=&#8221;first_name&#8221; value=&#8221;" placeholder=&#8221;First Name&#8221; /&gt;</p>
<p>The field above will display the words First Name within the input field without changing the value attribute. The <strong>placeholder attribute</strong> is already supported in new versions of Firefox and Chrome but my plugin adds support for Internet Explorer (of course).</p>
<p>This can be useful for contact forms, optin forms, ..heck..any form.</p>
<p>Only download my plugin if you understand what it does and you actually need it.</p>
<p>Download it @ <a title="WordPress Placeholder Plugin" href="http://clftn.co/ba259">http://clftn.co/ba259</a></p>
<p>The post <a href="http://cliftonhatfield.com/wordpress-placeholder-plugin/">WordPress Placeholder Plugin</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-placeholder-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Looping Images with jQuery/Javascript on Hover</title>
		<link>http://cliftonhatfield.com/looping-images-with-jquery-javascript-on-hover/</link>
		<comments>http://cliftonhatfield.com/looping-images-with-jquery-javascript-on-hover/#comments</comments>
		<pubDate>Sat, 24 Nov 2012 19:01:58 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4947</guid>
		<description><![CDATA[<p>I'll be honest with you, this one racked my brain for awhile. I don't really know why I had so much trouble with this because I write jQuery all of the time. To avoid you going through the same trouble that I had, here is the jQuery script I wrote to infinitely rotate images when the mouse hovers over the images. If you have some tips, leave a comment. Maybe one day I'll get around to writing up a WordPress Plugin for this. :)</p><p>The post <a href="http://cliftonhatfield.com/looping-images-with-jquery-javascript-on-hover/">Looping Images with jQuery/Javascript on Hover</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ll be honest with you, this one racked my brain for awhile. I don&#8217;t really know why I had so much trouble with this because I write jQuery all of the time. To avoid you going through the same trouble that I had, here is the jQuery script I wrote to infinitely rotate images when the mouse hovers over the images. If you have some tips, leave a comment.</p>
<p>Maybe one day I&#8217;ll get around to writing up a WordPress Plugin for this. :)</p>
<p><a title="Loop Images with JQuery" href="http://cliftonhatfield.com/wp-content/uploads/index.html" target="_blank">Demo</a></p>
<h3>jQuery</h3>
<p></p><pre class="crayon-plain-tag">jQuery(function($){
        /*Loop through thumbnails*/
	var loop = '';
	$('.list-item').mouseover(function(){
		var e = $(this);
		loop = setInterval(function(){
			$('span', e).filter(function(){
				var match = '1';
				return ($(this).css('opacity') == match);
			}).animate({'opacity':'0'}).nextFirst().animate({'opacity':'1'}, 300);
		}, 1000);
	}).mouseout(function(){
		clearInterval(loop);
	});
});

/*Get next sibling if it exists. If not, get first sibling. Round &amp;amp; a round we go.*/
jQuery.fn.nextFirst = function(e){
    var next = this.next(e);
    return (next.length) ? next : this.prevAll(e).last();
}</pre><p>&nbsp;</p>
<h3>HTML</h3>
<p></p><pre class="crayon-plain-tag">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;Loop Thumbnails&lt;/title&gt;
&lt;style type="text/css"&gt;
	.list-item {width:206px;height:206px;list-style-type:none;position:relative;}
	.thumbnail {position:absolute;top:0;left:0;display:inline-block;width:206px;height:206px;background-position:center center;background-repeat:no-repeat;opacity:0;}
	.thumbnail:first-child {opacity:1;}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;ul id="list"&gt;
	&lt;li class="list-item"&gt;
    	&lt;span style="background-image:url(http://sphotos-b.xx.fbcdn.net/hphotos-ash4/s320x320/229959_10151042752614553_278263841_n.jpg);" class="thumbnail"&gt;&lt;/span&gt;
    	&lt;span style="background-image:url(http://sphotos-a.xx.fbcdn.net/hphotos-ash3/s320x320/36166_494075809552_4158755_n.jpg);" class="thumbnail"&gt;&lt;/span&gt;
    	&lt;span style="background-image:url(http://sphotos-b.xx.fbcdn.net/hphotos-ash3/s320x320/65935_494075464552_6738693_n.jpg);" class="thumbnail"&gt;&lt;/span&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;!-- Load the jQuery Library --&gt;
&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;!-- Load the looping script --&gt;
&lt;script src="js.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre><p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/looping-images-with-jquery-javascript-on-hover/">Looping Images with jQuery/Javascript on Hover</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/looping-images-with-jquery-javascript-on-hover/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 Media Queries / Mobile / iPhone</title>
		<link>http://cliftonhatfield.com/css3-media-queries-mobile-iphone/</link>
		<comments>http://cliftonhatfield.com/css3-media-queries-mobile-iphone/#comments</comments>
		<pubDate>Fri, 23 Nov 2012 12:30:03 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[CSS / Stylesheet]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4893</guid>
		<description><![CDATA[<p>Below is a list of media queries I use to help my define CSS rules within my stylesheet. Sometimes you just can't always make your design responsive using math (target / context = result) so here are some media queries. You can also Google media queries CSS3 for more options. Not everything I do is always the best option but I want to help guide you down the right path. Place these queries in your stylesheet.</p><p>The post <a href="http://cliftonhatfield.com/css3-media-queries-mobile-iphone/">CSS3 Media Queries / Mobile / iPhone</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<div><img class="alignright size-full wp-image-4894" title="css3-media-queries" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/css3-media-queries.png?resize=321%2C176" alt="" data-recalc-dims="1" />Below is a list of media queries I use to help my define CSS rules within my stylesheet. Sometimes you just can&#8217;t always make your design responsive using math (target / context = result) so here are some media queries. You can also Google media queries CSS3 for more options. Not everything I do is always the best option but I want to help guide you down the right path. Place these queries in your stylesheet.</p>
<p>[css]/* Smartphones (portrait and landscape) &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-device-width : 320px)<br />
and (max-device-width : 480px) {<br />
/* Styles */<br />
}</p>
<p>/* Smartphones (landscape) &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-width : 321px) {<br />
/* Styles */<br />
}</p>
<p>/* Smartphones (portrait) &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (max-width : 320px) {<br />
/* Styles */<br />
}</p>
<p>/* iPads (portrait and landscape) &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-device-width : 768px)<br />
and (max-device-width : 1024px) {<br />
/* Styles */<br />
}</p>
<p>/* iPads (landscape) &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-device-width : 768px)<br />
and (max-device-width : 1024px)<br />
and (orientation : landscape) {<br />
/* Styles */<br />
}</p>
<p>/* iPads (portrait) &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-device-width : 768px)<br />
and (max-device-width : 1024px)<br />
and (orientation : portrait) {<br />
/* Styles */<br />
}</p>
<p>/* Desktops and laptops &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-width : 1224px) {<br />
/* Styles */<br />
}</p>
<p>/* Large screens &#8212;&#8212;&#8212;&#8211; */<br />
@media only screen<br />
and (min-width : 1824px) {<br />
/* Styles */<br />
}</p>
<p>/* iPhone 4 &#8212;&#8212;&#8212;&#8211; */<br />
@media<br />
only screen and (-webkit-min-device-pixel-ratio : 1.5),<br />
only screen and (min-device-pixel-ratio : 1.5) {<br />
/* Styles */<br />
}[/css]</p>
</div>
<p>The post <a href="http://cliftonhatfield.com/css3-media-queries-mobile-iphone/">CSS3 Media Queries / Mobile / iPhone</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/css3-media-queries-mobile-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posting a form in WordPress</title>
		<link>http://cliftonhatfield.com/posting-a-form-in-wordpress/</link>
		<comments>http://cliftonhatfield.com/posting-a-form-in-wordpress/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 13:53:44 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4775</guid>
		<description><![CDATA[<p>When creating a form, you typically post that form&#8217;s data to another file to process the input and do its magic. This can be difficult with WordPress because of the way it handles its data. There is a simple solution. We are going to post the form to the page it is currently on. Then [...]</p><p>The post <a href="http://cliftonhatfield.com/posting-a-form-in-wordpress/">Posting a form in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>When creating a form, you typically post that form&#8217;s data to another file to process the input and do its magic. This can be difficult with WordPress because of the way it handles its data. There is a simple solution.</p>
<ol>
<li>We are going to post the form to the page it is currently on.</li>
<li>Then we are going to add a block of code to the theme&#8217;s functions.php file</li>
<li>When the page refreshes, this code will check if the form was submitted.</li>
</ol>
<p>Example Form code<br />
[php]&lt;form action=&quot;&lt;?php echo get_permalink( $post-&gt;ID ); ?&gt;&quot; method=&quot;POST&quot; id=&quot;namespace-form&quot;&gt;<br />
        &lt;label&gt;First &amp;amp; Last Name&lt;/label&gt;<br />
        &lt;input type=&quot;text&quot; name=&quot;username&quot; id=&quot;name&quot; value=&quot;&quot; placeholder=&quot;First &amp; Last Name&quot; /&gt;<br />
        &lt;input type=&quot;hidden&quot; name=&quot;user_id&quot; value=&quot;123&quot; /&gt;<br />
        &lt;input type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;submit_namespace_form&quot; id=&quot;submit_namespace_form&quot; /&gt;<br />
&lt;/form&gt;[/php]</p>
<p>Code block for functions.php<br />
[php]add_action(&#8216;init&#8217;, &#8216;namespace_form&#8217;);<br />
function namespace_form(){<br />
        if($_POST['submit_namespace_form'])<br />
        {<br />
                $user['username'] = sanitize_user(stripslashes($_POST['username']));<br />
                $user['user_id'] = (is_number($_POST['user_id']) ? $_POST['user_id'] : 0;<br />
                update_option(&#8216;namespace_user&#8217;, $user);<br />
        }<br />
}[/php]</p>
<p>I wrote this on-the-fly so it&#8217;s untested. Be sure to edit it to fit your needs.</p>
<p>The post <a href="http://cliftonhatfield.com/posting-a-form-in-wordpress/">Posting a form in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/posting-a-form-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Woo Canvas Hook After Post Meta</title>
		<link>http://cliftonhatfield.com/woo-canvas-hook-after-post-meta/</link>
		<comments>http://cliftonhatfield.com/woo-canvas-hook-after-post-meta/#comments</comments>
		<pubDate>Sun, 04 Nov 2012 13:51:04 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Canvas]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4768</guid>
		<description><![CDATA[<p>I've made woo_post_meta() into a hook and create a woo_post_meta_after function to inject after the post meta in the Woo Canvas theme. Copy and paste into your functions.php file.</p><p>The post <a href="http://cliftonhatfield.com/woo-canvas-hook-after-post-meta/">Woo Canvas Hook After Post Meta</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve made woo_post_meta() into a hook and create a woo_post_meta_after function to inject after the post meta in the Woo Canvas theme. Copy and paste into your functions.php file.</p><pre class="crayon-plain-tag">function woo_post_meta(){do_action('woo_post_meta');}

add_action('woo_post_meta', 'woo_post_meta_under');
function woo_post_meta_under() {
if ( is_page() ) { return; }
$post_info = '&amp;lt;span class=&quot;small&quot;&amp;gt;' . __( 'By', 'woothemes' ) . '&amp;lt;/span&amp;gt; [post_author_posts_link] &amp;lt;span class=&quot;small&quot;&amp;gt;' . _x( 'on', 'post datetime', 'woothemes' ) . '&amp;lt;/span&amp;gt; [post_date] &amp;lt;span class=&quot;small&quot;&amp;gt;' . __( 'in', 'woothemes' ) . '&amp;lt;/span&amp;gt; [post_categories before=&quot;&quot;] ' . ' [post_edit]';
$meta = apply_filters( 'woo_filter_post_meta', $post_info );
$content .= '&amp;lt;div class=&quot;post-meta&quot;&amp;gt;'.$meta.'&amp;lt;/div&amp;gt;' . &quot;n&quot;;
$content .= 'HTML OR WHATEVER';
echo $content;
}</pre><p></p>
<p>The post <a href="http://cliftonhatfield.com/woo-canvas-hook-after-post-meta/">Woo Canvas Hook After Post Meta</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/woo-canvas-hook-after-post-meta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Line Vi Editor &#8211; Show Line Numbers</title>
		<link>http://cliftonhatfield.com/command-line-vi-editor-show-line-numbers/</link>
		<comments>http://cliftonhatfield.com/command-line-vi-editor-show-line-numbers/#comments</comments>
		<pubDate>Mon, 29 Oct 2012 14:51:35 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4752</guid>
		<description><![CDATA[<p>If you&#8217;re looking for a simple way to display line numbers in the Vi editor (text editor), simply type :set number to display the line numbers. Simple.</p><p>The post <a href="http://cliftonhatfield.com/command-line-vi-editor-show-line-numbers/">Command Line Vi Editor &#8211; Show Line Numbers</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re looking for a simple way to display line numbers in the Vi editor (text editor), simply type :set number to display the line numbers. Simple.</p>
<p><img class="alignright size-full wp-image-4754" title="Command Line Vi Editor Line Numbers" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/Command-Line-Vi-Editor-Line-Numbers.jpg?resize=550%2C378" alt="Command Line Vi Editor Line Numbers" data-recalc-dims="1" /></p>
<p>The post <a href="http://cliftonhatfield.com/command-line-vi-editor-show-line-numbers/">Command Line Vi Editor &#8211; Show Line Numbers</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/command-line-vi-editor-show-line-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Login / Permissions / Graph Resources</title>
		<link>http://cliftonhatfield.com/facebook-login-permissions-graph-resources/</link>
		<comments>http://cliftonhatfield.com/facebook-login-permissions-graph-resources/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 14:17:55 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4738</guid>
		<description><![CDATA[<p>Facebook Platform enables you to make your website more social. You can use our Social Plugins, such as the Like Button to drive user engagement with a single line of HTML. The Login Button and Registration Plugin let you simplify or eliminate your own user registration and sign-in. Lastly, the Graph API lets you access the full social graph of a given user, allowing you to create a truly deep personal experience.</p><p>The post <a href="http://cliftonhatfield.com/facebook-login-permissions-graph-resources/">Facebook Login / Permissions / Graph Resources</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Here are some references for when you decide to add Facebook authentication / permission API to your site. There may be plugins available for this but it&#8217;s always a good idea to lean how that stuff works.</p>
<h3>General Docs</h3>
<p><a href="https://developers.facebook.com/docs/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/ </a></p>
<h3>Setting up auth process</h3>
<p><a href="https://developers.facebook.com/docs/concepts/login/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/concepts/login/</a></p>
<h3>Requesting Permissions</h3>
<p><a href="https://developers.facebook.com/docs/reference/login/basic-info/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/reference/login/basic-info/</a></p>
<h3>Requesting Page Permissions</h3>
<p><a href="https://developers.facebook.com/docs/reference/login/page-permissions/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/reference/login/page-permissions/</a></p>
<h3>Graph API</h3>
<p><a href="https://developers.facebook.com/docs/reference/api/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/reference/api/</a></p>
<p>e.g These can all be accessed outside the Facebook environment / logged out</p>
<p><a href="https://graph.facebook.com/cliftonhatfield.page/photos" rel="nofollow" target="_blank">https://graph.facebook.com/cliftonhatfield.page/photos</a></p>
<p><a href="https://graph.facebook.com/cliftonhatfield" rel="nofollow" target="_blank">https://graph.facebook.com/cliftonhatfield</a></p>
<p><a href="https://graph.facebook.com/cliftonhatfield/picture?type=large" rel="nofollow" target="_blank">https://graph.facebook.com/cliftonhatfield/picture?type=large</a></p>
<h3>Open Graph Permissions</h3>
<p><a href="https://developers.facebook.com/docs/reference/login/open-graph-permissions/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/reference/login/open-graph-permissions/</a></p>
<h3>Facebook SDK / code examples</h3>
<p><a href="https://developers.facebook.com/docs/reference/php/" rel="nofollow" target="_blank">https://developers.facebook.com/docs/reference/php/</a></p>
<p><a href="https://github.com/facebook/facebook-php-sdk" rel="nofollow" target="_blank">https://github.com/facebook/facebook-php-sdk</a></p>
<p><em>Enjoy. </em></p>
<div><img class="alignright size-full wp-image-4739" title="Facebook Developer API" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/Facebook-Developer-API.png?w=616" alt="Facebook Developer API" data-recalc-dims="1" /></div>
<p>The post <a href="http://cliftonhatfield.com/facebook-login-permissions-graph-resources/">Facebook Login / Permissions / Graph Resources</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/facebook-login-permissions-graph-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing WooThemes Options Panel</title>
		<link>http://cliftonhatfield.com/customizing-woothemes-options-panel/</link>
		<comments>http://cliftonhatfield.com/customizing-woothemes-options-panel/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 04:43:21 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WooThems]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4732</guid>
		<description><![CDATA[<p>I&#8217;ve decided to share higher-level stuff on my blog. I&#8217;ve been studying the WooFramework and decided I wanted to insert my own custom options into the WooFramework Options Panel. The woo_options_add function allows you to easily drop in your own options in the $options array by adding new values to the end of the array. [...]</p><p>The post <a href="http://cliftonhatfield.com/customizing-woothemes-options-panel/">Customizing WooThemes Options Panel</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve decided to share higher-level stuff on my blog. I&#8217;ve been studying the WooFramework and decided I wanted to insert my own custom options into the WooFramework Options Panel. The woo_options_add function allows you to easily drop in your own options in the $options array by adding new values to the end of the array. I didn&#8217;t want to do that because I want these options in the Header options panel and not at the bottom or in its own panel. I found <a href="http://www.woothemes.com/woocodex/adding-theme-options/" rel="nofollow" target="_blank">this article by WooThemes</a> that tells me to edit the theme-options.php file but I didn&#8217;t want to do that either. So, I wrote my own function and placed it inside of the woo_options_add function in the parent functions.php file. It may not be perfect but it&#8217;s working for me.</p>
<p>The function below loops through the multidimsensional $options array trying to match $value['name']. If match is TRUE, insert the new field into the $options array. As you can see, I&#8217;m generating new keys too. If you know a better way to do this, please share. Also, check out my support group at <a href="http://fb.com/groups/internet.questions/">http://fb.com/groups/internet.questions/</a></p>
<p>You can see in the image below that this function inserts a couple checkbox fields into the Options Panel.</p><pre class="crayon-plain-tag">function woo_options_add($options){
	$i = 0;
	while(list($key, $value) = each($options))
	{
		if($value['name'] == 'Header Padding Left/Right')
		{
			$array[$i] = $value;
			$i++;
			$array[$i] = array( &quot;name&quot; =&gt; __( 'Site Title Visibility', 'woothemes' ),
					&quot;desc&quot; =&gt; __( 'Hide the site title within the header.', 'woothemes' ),
					&quot;id&quot; =&gt; $shortname.&quot;_title_visibility&quot;,
					&quot;std&quot; =&gt; '',
					&quot;type&quot; =&gt; &quot;checkbox&quot;);
		}
		elseif($value['name'] == 'Site Title Font Style')
		{
			$array[$i] = $value;
			$i++;
			$array[$i] = array( &quot;name&quot; =&gt; __( 'Site Description Visibility', 'woothemes' ),
					&quot;desc&quot; =&gt; __( 'Hide the site description within the header.', 'woothemes' ),
					&quot;id&quot; =&gt; $shortname.&quot;_description_visibility&quot;,
					&quot;std&quot; =&gt; '',
					&quot;type&quot; =&gt; &quot;checkbox&quot;);
		}
		else
		{
			$array[$i] = $value;
		}		
		$i++;
	}
   
    return $array;
}</pre><p><img src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/Wooframework-Customize-Options-Panel.png?w=616" alt="Wooframework Customize Options Panel" title="Wooframework Customize Options Panel" class="alignright size-full wp-image-4734" data-recalc-dims="1" /></p>
<p>The post <a href="http://cliftonhatfield.com/customizing-woothemes-options-panel/">Customizing WooThemes Options Panel</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/customizing-woothemes-options-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Ads Arrive on YouTube</title>
		<link>http://cliftonhatfield.com/mobile-ads-arrive-on-youtube/</link>
		<comments>http://cliftonhatfield.com/mobile-ads-arrive-on-youtube/#comments</comments>
		<pubDate>Thu, 18 Oct 2012 21:00:51 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Video Marketing]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4723</guid>
		<description><![CDATA[<p>20% of all of YouTube's global traffic comes from mobile devices like smartphones and tablets. Yet surprisingly, the Google-owned video streaming service never offered a way to monetize mobile video views. Recently, the company announced that it was finally going to start offering ads in mobile videos.</p><p>The post <a href="http://cliftonhatfield.com/mobile-ads-arrive-on-youtube/">Mobile Ads Arrive on YouTube</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-4724" title="YouTube Mobile Ads" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/youtube-mobile-ads.png?resize=128%2C128" alt="YouTube Mobile Ads" data-recalc-dims="1" />Finally, YouTube offers mobile advertisements</h3>
<p>20% of all of YouTube&#8217;s global traffic comes from mobile devices like smartphones and tablets. Yet surprisingly, the Google-owned video streaming service never offered a way to monetize mobile video views. Recently, the company announced that it was finally going to start offering ads in mobile videos. The ads will be viewed as TrueView Ads, meaning users can skip them after 5 second. TrueView ads are the most popular ad type on YouTube.</p>
<p>The post <a href="http://cliftonhatfield.com/mobile-ads-arrive-on-youtube/">Mobile Ads Arrive on YouTube</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/mobile-ads-arrive-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Truth About Mobile Ads</title>
		<link>http://cliftonhatfield.com/truth-about-mobile-ads/</link>
		<comments>http://cliftonhatfield.com/truth-about-mobile-ads/#comments</comments>
		<pubDate>Wed, 17 Oct 2012 14:09:55 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4718</guid>
		<description><![CDATA[<p>A study released by mobile app marketing platform Trademob, analyzed 6 million-plus mobile advertising clicks on 1- of the biggest mobile ad networks and found that 22 percent of mobile ad clicks were "mistakes," or accidental clicks, and 18 percent were defined as "fraudulent." Both of which had a conversion rate of less than 0.1 percent.</p><p>The post <a href="http://cliftonhatfield.com/truth-about-mobile-ads/">The Truth About Mobile Ads</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-4719" title="Trademob 40 Percent Mobile Ads Mistake" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/trademob-mobile-ads.jpg?resize=225%2C204" alt="Trademob 40 Percent Mobile Ads Mistake" data-recalc-dims="1" />Ugh, I Hate Clicking Mobile Ads By Mistake</h3>
<p>A study released by mobile app marketing platform Trademob, analyzed 6 million-plus mobile advertising clicks on 10 of the biggest mobile ad networks and found that <a title="demob Blog Click fraud and accidental clicks make up 40% of bought mobile clicks" href="http://www.trademob.com/click-fraud-accidental-40-percent/" target="_blank">22 percent of mobile ad clicks were &#8220;mistakes,&#8221;</a> or accidental clicks, and 18 percent were defined as &#8220;fraudulent.&#8221; Both of which had a conversion rate of less than 0.1 percent.</p>
<p>To read more about this issue, <a title="Click fraud whitepaper" href="http://www.trademob.com/downloads/study-40-of-mobile-clicks-are-accidental-or-fraudulent/" target="_blank">Download the whitepaper on click fraud and accidental clicks</a> for free!</p>
<p>The post <a href="http://cliftonhatfield.com/truth-about-mobile-ads/">The Truth About Mobile Ads</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/truth-about-mobile-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Pages in iOS (iPhone)</title>
		<link>http://cliftonhatfield.com/facebook-pages-in-ios-iphone/</link>
		<comments>http://cliftonhatfield.com/facebook-pages-in-ios-iphone/#comments</comments>
		<pubDate>Sun, 14 Oct 2012 17:07:41 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4705</guid>
		<description><![CDATA[<p>I manage several Facebook Pages and with my recent acquisition of an iPhone 5 I&#8217;ve decided to install the Facebook Pages App for the iPhone. The experience is very similar to their Facebook App for users. With the Facebook Pages iPhone app for iOS, you can manage your Pages, send messages, publish posts, and very [...]</p><p>The post <a href="http://cliftonhatfield.com/facebook-pages-in-ios-iphone/">Facebook Pages in iOS (iPhone)</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-4694" title="Facebook Pages iOS iPhone App" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-pages-ios-iphone.png?resize=169%2C300" alt="Facebook Pages iOS iPhone App" data-recalc-dims="1" />I manage several Facebook Pages and with my recent acquisition of an iPhone 5 I&#8217;ve decided to install the <em>Facebook Pages App for the iPhone</em>. The experience is very similar to their Facebook App for users. With the <strong>Facebook Pages iPhone app for iOS</strong>, you can manage your Pages, send messages, publish posts, and very Insights (Page stats).</p>
<p>Simply search the Apple App Store for &#8216;Facebook Pages Manager&#8217; to download and install. I didn&#8217;t need to enter my login information for the app as I assume it used the details from the user Facebook app.</p>
<p>Also, I received a notification on the Facebook Page itself that I now have the ability to manage my Pages directly from my iOS device. <em>Awesome.</em><img class="wp-image-4697" title="Facebook Pages iPhone App" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-pages-iphone-app.png?resize=576%2C1022" alt="Facebook Pages iPhone App" style="margin:20px auto;" data-recalc-dims="1" /></p>
<p>The post <a href="http://cliftonhatfield.com/facebook-pages-in-ios-iphone/">Facebook Pages in iOS (iPhone)</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/facebook-pages-in-ios-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On this Day in 1966</title>
		<link>http://cliftonhatfield.com/on-this-day-in-1966/</link>
		<comments>http://cliftonhatfield.com/on-this-day-in-1966/#comments</comments>
		<pubDate>Sat, 08 Sep 2012 14:31:14 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4656</guid>
		<description><![CDATA[<p>FUN HISTORY: On this day in 1966, &#8220;Space: the final frontier. These are the voyages of the starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before&#8221; sounded from television sets and the first episode of Star Trek [...]</p><p>The post <a href="http://cliftonhatfield.com/on-this-day-in-1966/">On this Day in 1966</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a style="line-height: 20px;" href="http://i1.wp.com/1.bp.blogspot.com/-vSOQ93E0la0/TmjvYc4G7mI/AAAAAAAACQI/d2VggjdKmnk/s1600/Enterprise.jpg"><img class="size-medium wp-image-4658 alignleft" title="Enterprise" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/Enterprise.jpg?resize=225%2C168" alt="" data-recalc-dims="1" /></a></p>
<p>FUN HISTORY: On this day in 1966, &#8220;Space: the final frontier. These are the voyages of the starship Enterprise. Its five-year mission: to explore strange new worlds, to seek out new life and new civilizations, to boldly go where no man has gone before&#8221; sounded from television sets and the first episode of Star Trek aired.</p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/on-this-day-in-1966/">On this Day in 1966</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/on-this-day-in-1966/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for Your Moneymaking Content</title>
		<link>http://cliftonhatfield.com/tips-for-your-moneymaking-content/</link>
		<comments>http://cliftonhatfield.com/tips-for-your-moneymaking-content/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 16:42:25 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Affiiate Marketing]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4605</guid>
		<description><![CDATA[<p>When an affiliate is just getting started with blogging, it can seem like they’re wandering aimlessly trying to find the best ways to create compelling content that will help them successfully lure in merchants and consumers. However, in the mad rush to just get anything out there, many affiliates are willingly sacrificing quality for quantity.</p><p>The post <a href="http://cliftonhatfield.com/tips-for-your-moneymaking-content/">Tips for Your Moneymaking Content</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Each day, content drives the Internet. It’s an important aspect of any Web presence, but especially for bloggers and affiliate marketers, who depend on their content to interest visitors, attract advertisers, and make money.</p>
<p>When an affiliate is just getting started with blogging, it can seem like they’re wandering aimlessly trying to find the best ways to create compelling content that will help them successfully lure in merchants and consumers. However, in the mad rush to just get <em>anything</em> out there, many affiliates are willingly sacrificing quality for quantity.</p>
<p><em>Here are some simple tips to keep in mind every time you sit down to start blogging:</em></p>
<h3><strong>Get to the Point &amp; Avoid tl;dr<br />
</strong></h3>
<p>One of the biggest turn-offs for many Web users is clicking on a link only to be met with a giant wall of text. Unless they’re super interested in what you have to say, chances are they’re only going to skim your article, at best, or just leave the page immediately (in other words, “tl;dr”). It’s not that what you have to say isn’t worthwhile, but most Web readers prefer their content in bite-sized, easy to manage doses so they can just read it and be on their way. Say what you have to say and get out of there.</p>
<p>It’s also important to consider your headline, since most users won’t read any more than that. If you want to get eyes on your site, you have to write good, informative titles that will encourage users to click-through and see what it’s all about.</p>
<h3><strong>Make it Timeless</strong></h3>
<p>Evergreen content, information that is always useful and never goes out of date, is a great way to keep users coming to your blog. Anything that will <em>always</em> be relevant to your industry makes for an excellent topic, as it can ensure consistent traffic for an extended period of time, both from first time visitors looking for the information and regulars using it as a refresher. Not all of your content needs to be as timeless, but the more you have on your site, the better off you’ll be in the long run.</p>
<h3><strong>Be Creative with “Content”</strong></h3>
<p>Too often, bloggers fall into the trap of thinking of content in a bubble – a horribly boring text bubble. Don’t get me wrong; text content can be great, and offers a solid foundation upon which to establish your blog, but you shouldn’t stop there. Believe it or not, not everyone likes to read or has time to read or can spend all of their time at work reading your content instead of actually working. Ever heard of &#8220;Aim. Aim. Aim&#8230;but never fire&#8221;? Thankfully, the solution is simple; just produce and publish <em>other types</em> of content that supplement your regular blog posts. Other popular and practical choices are videos.</p>
<h3><strong>Outsource</strong></h3>
<p>Sometimes, you may be too busy to consistently sit down and churn out a high volume of good content. And sometimes, you may just have writer’s block (it happens – trust me). In these cases, it’s good to have contacts that allow you to find guests to write posts and produce content for your blog. The best part is, you literally have to do no work. I have featured guest writers within my own blog and my readers enjoy to change of pace.</p>
<p>The post <a href="http://cliftonhatfield.com/tips-for-your-moneymaking-content/">Tips for Your Moneymaking Content</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/tips-for-your-moneymaking-content/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Improving Your Post Readability</title>
		<link>http://cliftonhatfield.com/improving-your-post-readability/</link>
		<comments>http://cliftonhatfield.com/improving-your-post-readability/#comments</comments>
		<pubDate>Tue, 24 Jul 2012 02:23:52 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4592</guid>
		<description><![CDATA[<p>Finding the right balance between too much and too little space around text is one of the essential aspects of a readable website. Remember that your chunks of text content need room to breathe so that your visitors can view them more easily. I've given you some code samples to help you adjust your CSS.</p><p>The post <a href="http://cliftonhatfield.com/improving-your-post-readability/">Improving Your Post Readability</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Adjusting the White Space</h3>
<p>Finding the right balance between too much and too little space around text is one of the essential aspects of a readable website. Remember that your chunks of text content need room to breathe so that your visitors can view them more easily. Adjusting the <em>line-height </em>of your post&#8217;s paragraphs can make it easier for the eye reading left-to-right.</p><pre class="crayon-plain-tag">.post p {line-height:18px;}</pre><p></p>
<h3>Spacing Around the Images</h3>
<p>Your text shouldn’t be adhered to other elements, particularly images. When the text is &#8216;touching&#8217; the images, it can look confusing to the reader and clutter your layout.</p><pre class="crayon-plain-tag">.post img {padding:8px;}</pre><p>Spend a few minutes during your morning coffee looking over your website to make sure it&#8217;s optimized for readability, and if you see any problems, try increasing your padding and margins, adjusting font color and size, or content and background contrast.</p>
<p>The post <a href="http://cliftonhatfield.com/improving-your-post-readability/">Improving Your Post Readability</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/improving-your-post-readability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>17 Tips on How to Secure WordPress Like Fort Knox</title>
		<link>http://cliftonhatfield.com/17-tips-on-how-to-secure-wordpress-like-fort-knox/</link>
		<comments>http://cliftonhatfield.com/17-tips-on-how-to-secure-wordpress-like-fort-knox/#comments</comments>
		<pubDate>Fri, 18 May 2012 19:33:36 +0000</pubDate>
		<dc:creator>Matt Fraser</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[WordPress Security]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4534</guid>
		<description><![CDATA[<p>If you have a WordPress website, you are in danger. You may not know it, but you are. The reason is that you're website is probably not secure, or as secure as it could be. Many hackers around the world are looking for your website to hack. Why you ask. Some of them just want to learn and see WordPress websites as an easy target, some of them want to steal your bandwidth and inject nasty Viagra links into your code. Irregardless as to why they do it, you need to protect your website with these 17 Tips to Secure Your Blog Like Fort Knox.</p><p>The post <a href="http://cliftonhatfield.com/17-tips-on-how-to-secure-wordpress-like-fort-knox/">17 Tips on How to Secure WordPress Like Fort Knox</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-4538" title="How to Secure WordPress" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/how-to-secure-wordpress.jpg?resize=225%2C137" alt="How to Secure WordPress" data-recalc-dims="1" />1. Use a Secure Well Known Host for WordPress</h3>
<p>If you&#8217;re using a web host that no one has ever heard about and offers unlimited band width for $1.99 a year you many want to start looking else where. I know of some well known companies that do offer &#8220;unlimited bandwidth&#8221; for $6.99 a year but the fact of the matter is that if you read the fine print it is only unlimited so long as your website does not use up more than 10% of the CPU of that particular server. As far as I am concerned it is false advertising. If your website is making you money you want to look for a quality, reliable secure host. Research the company by doing a Google search such as &#8220;company name hacked&#8221; and see what turns up. Ask them about their server uptime percentage, that is, if their servers have ever gone done and what contingencies they have in place should power go out (my hosting company has back up generators that will last them up to 30 days) You may also want to ask about building security such as who has access to the server room and how often passwords are changed, etc. I would also ask about firewall security for their servers. If you can, get a VPS serving environment over a shared host. Not only will your site be more secure but it will faster as well as you won&#8217;t be sharing resources with other website owners. I personally use <a href="http://www.stormondemand.com" rel="nofollow" target="_blank">www.stormondemand.com</a> and am in the midst of building a Turn Key WordPress Hosting Solution. &nbsp;<a href="http://twitter.com/#!/mattsfraser" rel="nofollow" target="_blank">Follow me on twitter</a> to keep updated as to the launch.</p>
<h3>2. Don&#8217;t Use the Default Admin Username</h3>
<p>I think this goes without saying, but it&#8217;s worth saying anyway. Use a unique username and password.</p>
<p>For instance for your admin username, use something like this:</p>
<p>ASvfrb.S8_nCD-ZU9nV@3TSs-UM4UohD</p>
<p>WordPress does not allow any special characters in your username with the exception of a period, underscore and hyphen.</p>
<p>So use your favorite password management software such as <a href="http://www.roboform.com" rel="nofollow" target="_blank">www.roboform.com</a> or <a href="http://www.keypass.com" rel="nofollow" target="_blank">www.keypass.com</a> or <a href="http://www.lastpassword.com" rel="nofollow" target="_blank">www.lastpassword.com</a> to generate and keep track of not only your passwords but also your usernames.</p>
<p><strong>If you can remember it, someone can hack it.</strong></p>
<p>Give this account admin privileges and set up a&nbsp;separate&nbsp;account with publisher rights and a more user friendly and keyword rich username.</p>
<p>Also, if you have an admin account, with the username &#8220;admin&#8221; change its permissions level to subscriber, this way if this account ever is hacked, hackers will be disappointed to discover that they wasted a lot of time to get the&nbsp;privilege&nbsp;to do nothing on your site and will probably move on.</p>
<p>One final note on this matter. &nbsp;Use this account for admin functionality only. &nbsp;Do not use it to publish content as, even though you can publicly display the hyper link as something such as your name, it will still be revealed when someone clicks on the author&#8217;s archives and then your username will be revealed for all the world to see.</p>
<p>Instead, create a second account using your real name and then grant publisher rights to that account for doing &nbsp;all of your content publishing.</p>
<p>You can then use the other account for all of your admin functions such as <a title="When to update your WordPress blog" href="http://cliftonhatfield.com/when-to-update-your-wordpress-blog/" target="_blank">WordPress updates</a>, plugin updates etc.</p>
<h3>3. Use a Difficult Password</h3>
<p>This should go without saying but you&#8217;d be surprised at how many people use simple passwords thinking that it is only fellow human beings that they have to out smart. &nbsp;This is not the case, as <strong>hackers use software to do brute force attacks</strong> on your blog in which they cycle through the alphabet to try to guess your password. &nbsp;Therefore, you should use an alpha numeric special character password such as:</p>
<p>o&amp;WjR8$fcFr5jX3HDBWVtta*H!!</p>
<p>I would use a minimum of 24 characters, however I do use more. And this length of password takes a lot longer for a hacker attempting a brute force attack to crack.</p>
<p>Just how long you ask?</p>
<p><img class="alignnone  wp-image-4541" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/brute-force-calculator.jpg?resize=597%2C347" alt="" data-recalc-dims="1" /></p>
<p>A password like this, according to the <a href="http://calc.opensecurityresearch.com/" rel="nofollow" target="_blank">Brute Force Calculator,</a> would take 129 <a href="http://en.wikipedia.org/wiki/Names_of_large_numbers" rel="nofollow" target="_blank">nonillion years</a> to crack. That is much, much, much, much longer than the average person is alive. (The average person is alive for about 27, 375 days so I&#8217;ll let you do the math) but basically just having a password like this is going to make your site more secure. Again, use something like Keypass or Roboform to keep track of passwords. If you can remember it, it can be cracked/hacked more easily.</p>
<h3>4. Install the Limit Login Attempts Plugin</h3>
<p><a href="http://wordpress.org/extend/plugins/limit-login-attempts/" rel="nofollow"><img class="alignnone size-full wp-image-4545" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/limit-login-attempts.jpg?resize=600%2C312" alt="" data-recalc-dims="1" /></a></p>
<p>The <a href="http://wordpress.org/extend/plugins/limit-login-attempts/" rel="nofollow" target="_blank">Limit Login Attempts</a> plugin will limit the amount of failed login attempts, practically eliminating any possibility whatsoever of a brute force attack as you can set the number of failed attempts to whatever you want or leave it at the default of 5. &nbsp;With this functionality you may be wondering why I mentioned using such complex passwords, well WordPress security is like creating a fortress with many different&nbsp;deter-ants&nbsp;to gain access. &nbsp;Think of Limit Login Attempts as your draw bridge.&nbsp;Keep in mind that&nbsp;WordPress&nbsp;security is about a wholistic approach rather than just doing one thing.</p>
<h3>5. Keep the WordPress Core &amp; Plugins Up-to-Date</h3>
<p><img class="alignnone size-full wp-image-4566" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-updates.jpg?resize=600%2C279" alt="" data-recalc-dims="1" /></p>
<p>This is important and I&#8217;ll admit I had this bite me in the ass recently. A theme developer, and I won&#8217;t say which one, had a security &#8220;loophole&#8221; in one of the theme files and someone had inserted some code in there and was using my bandwidth. Luckily, my host caught it and locked down the site. I look for an update from the programmer via the membership site and saw that there was an update. I am frustrated that the theme author does not have built in auto updates for the theme and I am actually working towards having my own similar theme developed which will be under my control. But the point of the matter is to <strong>keep your plugins and themes up-to-date</strong>. Doing so will ensure that the latest security holes filled.</p>
<h3>6. Use a Premium Theme</h3>
<p><a href="http://www.empoweredblogs.com/?hop=webworkinc" target="_blank"><img class="alignnone size-full wp-image-4568" style="border: 0pt none;" title="Empowered Blogs for WordPress" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/empowered-blogs.jpg?resize=600%2C296" alt="Empowered Blogs for WordPress" data-recalc-dims="1" /></a></p>
<p>I know that there are 1450 Free themes in the WordPress Theme directory. However, I would highly encourage you to use a <a title="Empowered Blogs Premium WordPress Theme &amp; Blog Design Service" href="http://www.empoweredblogs.com/?hop=webworkinc" target="_blank">Premium WordPress theme</a>. Reason being, Free themes don&#8217;t have as much support, I mean seriously, would you work for free. I think that some developers develop the free stuff as a lead generator. I know that&#8217;s what I would do. And they have other jobs/projects which they are involved with and won&#8217;t have the time to support you. Plus, a premium theme developer is more concerned about the little details such as ensuring that security loopholes are filled. That being said, <a title="Who is Clifton Hatfield?" href="http://cliftonhatfield.com/who-am-i/" target="_blank">Clifton</a> who is also the owner of this blog, has a kick ass theme called the <a title="Empowered Blogs Premium WordPress Theme &amp; Blog Design Service" href="http://www.empoweredblogs.com/?hop=webworkinc" target="_blank">Empowered Theme</a> that I would recommend to anyone. &nbsp;I don&#8217;t use it myself but that doesn&#8217;t mean I don&#8217;t think it rocks.</p>
<h3>7. Folder Permissions</h3>
<p>This is something that you really need to be careful with as I have a friend on Facebook who had her WordPress website hacked because of a plugin file permission setting. The plugin author&#8217;s told her to set a folder setting to 777. <strong>Setting the file permission means that anyone can write to that fold</strong>er and someone did as they inserted a script that was sending a virus to users upon visiting. The virus caused her site to be blocked by Google.</p>
<p>At a minimum, all of your files should be set to a permission setting of 644 and all of your folders should be set to 755. You can do this from your Cpanel or from an FTP client such as Filezilla. Contact your hosting provider if you have questions.</p>
<p>However, it also depends on your server environment. For instance, whether or not you are using a share or dedicated host.</p>
<p>That being said, I&#8217;m going to give credit where credit is due and suggest you read this blog post on <a href="http://www.dollarshower.com/wordpress-chmod/" rel="nofollow" target="_blank">how to configure your WordPress file permission settings.</a></p>
<h3>8. Remove WordPress Version from the Header</h3>
<p>Some hackers will look to see what version of WordPress you are using by viewing the source code of your website and looking to see which version of WordPress you are running in the header section of your website code.</p>
<p>I have to admit that this is not a huge issue but it is something that you should implement as hackers may be looking to see which version of WordPress you are on and if there are any security loop holes that they can exploit to get access to your site. This can be done by inserting this code in your functions.php file of your theme:</p>
<p>remove_action(&#8216;wp_head&#8217;, &#8216;wp_generator&#8217;);</p>
<p>or you can use the <a href="http://wordpress.org/extend/plugins/remove-generator-tag-for-wordpress/" rel="nofollow" target="_blank">http://wordpress.org/extend/plugins/remove-generator-tag-for-wordpress/</a> plugin from the WordPress Plugin repository.</p>
<p>You can also download and install the <a href="http://wordpress.org/extend/plugins/better-wp-security/" rel="nofollow" target="_blank">Better WordPress Security Plugin</a> to assist you with this.</p>
<h3>9. Use Secret Salt Keys</h3>
<p><img class="alignnone size-full wp-image-4547" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/Salt.jpg?resize=600%2C348" alt="" data-recalc-dims="1" /></p>
<p>If you didn&#8217;t do this already when you installed WordPress (I highly discourage people from using auto install scripts as they don&#8217;t install WordPress securely) you should do this now.</p>
<p>Log in to your cpanel and go to your wp-config.php file and click on the code editor. You&#8217;ll want to scroll down to the part of your wp-config file that looks like this:</p>
<p><img class="alignnone size-full wp-image-4556" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/wp-config-secret-salt-keys.jpg?resize=600%2C187" alt="" data-recalc-dims="1" /></p>
<p>Then go here:</p>
<p><a href="https://api.wordpress.org/secret-key/1.1/salt/" rel="nofollow" target="_blank">https://api.wordpress.org/secret-key/1.1/salt/</a></p>
<p>and copy and paste the keys that come up such as these (if you refresh the browser it will give you a new set of keys should you not like the first ones, although I don&#8217;t know why you wouldn&#8217;t):</p>
<p>define(&#8216;AUTH_KEY&#8217;, &#8216;,%,K^]YG+YyL:geMq.s# ~ZCB5[=bd.6Z;k,b*0G(&amp;-BdP~u3u cQn?]lZ-PNbAZ&#8217;);</p>
<p>define(&#8216;SECURE_AUTH_KEY&#8217;, &#8216;Zw4:%k})BUq]@^X,:E:$PsVOl-9s]Z5F4z&amp;QG&amp;3&gt;kqVuA,HzPhl9)5$%5,/&gt;atQl&#8217;);</p>
<p>define(&#8216;LOGGED_IN_KEY&#8217;, &#8216;opp]gT6b#@_-IcV9wj]o^ET:o&gt;jtceAq1 [PZ:L8-R[IxNVF^j910L=Y@o75sb|)');</p>
<p>define('NONCE_KEY', 'TX(1xY/C|&amp;:(|c/zl;$#3=n?g9p.Nh~h|jY0ktavx.JtWXQy]cB|#pJ!+DF!M@9J&#8217;);</p>
<p>define(&#8216;AUTH_SALT&#8217;, &#8216;j!_FSZTf|,7cSb=V_NGew+h~|rMv:.t~A7PHNwWmB,El`-&amp;[7{K06_p?KQ+57f,i&#8217;);</p>
<p>define(&#8216;SECURE_AUTH_SALT&#8217;, &#8216;dZ0zAh`1(UyEBYATziEnA=Ia%FF&amp;VI;S1sAO~/mw.9my{XruOxq_d?xh,btCW;u7&#8242;);</p>
<p>define(&#8216;LOGGED_IN_SALT&#8217;, &#8216;wX h@-R&gt;tUKN&amp;B-xzx$~NLm75K*vd;R~g-cxF?mQjbiR6q~; 9&lt;&lt;fO61 g;+HW9[&#8216;);</p>
<p>define(&#8216;NONCE_SALT&#8217;, &#8216;tr|e$|[Efe&lt;v:RaqqRC2W$xC?8(2M/+Q-)!Kr{Z&lt;=P&amp;0%UlJ(P{ZC&amp;%Yq{5lTv6N&#8217;);</p>
<p>The benefits of doing this is that it <strong>encrypts your users&#8217; cookies</strong>.</p>
<p>This will make your site harder to hack as access to your blog via scripts and malicious people will be made all that more difficult.</p>
<h3>10. Change your WordPress Table Prefix</h3>
<p>Perhaps you used an auto install script to install WordPress or perhaps you did it manually but left the table prefix of your data base tables as <em>wp_</em>. This makes it very easy for would be hackers to attempt MYSQL injections into your website. So, how can we combat this? Well instead of leaving wp_ as default, instead, use roboform again and generate a 27 character alpha numeric string and then add it to your wp table prefix.</p>
<p>For instance use something like this:</p>
<p>wp_coKuBHck4FHNrXiMsPJcND9WGzL_</p>
<p>Make sure you add an underscore to the end of the string otherwise sorting out your tables later will be confusing.</p>
<p>Doing this will make it that much harder as well as take that much longer for hackers to crack.</p>
<h3>11. Use .htaccess files to Lockdown the WordPress Admin Area</h3>
<p>Perhaps at this moment you&#8217;re asking yourself, what the heck is an .htaccess file? (Seriously, when I first started on the web six years ago I ask the same question) Well according to Wikipedia:</p>
<p>&#8220;An .htaccess (hypertext access) file is a directory-level configuration file supported by several web servers, that allows for decentralized management of web server configuration.</p>
<p>The original purpose of .htaccess &#8211; reflected in its name &#8211; was to allow per-directory access control, by for example requiring a password to access the content. Nowadays however, the .htaccess files can override many other configuration settings including content type and character set, CGIhandlers, etc.</p>
<p>These files are placed inside the web tree, and are able to override a subset of the server&#8217;s global configuration for that directory, and all sub-directories.&#8221;</p>
<p>In laymans terms, this is a file that talks to your server and can be used to restrict access to certain files.</p>
<p>Now, one of the reasons why I love WordPress is because of the community involvement and support.</p>
<p>And Ed Alexander has developed an awesome WordPress plugin called <a href="http://wordpress.org/extend/plugins/bulletproof-security/" rel="nofollow" target="_blank">Bullet Proof Security</a> which automatically creates the .htaccess file and rules to protect your WordPress website.</p>
<p><a href="http://wordpress.org/extend/plugins/bulletproof-security/" rel="nofollow" target="_blank"><img class="alignnone size-full wp-image-4551" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-bullet-proof-security-plugin.jpg?resize=600%2C315" alt="" data-recalc-dims="1" /></a></p>
<p>While the plugin is available for free on the WordPress plugin repository, I highly recommend getting the pro version for $40 as you get lifetime updates and can use it on an unlimited amount of websites (and it helps out Ed, who also gives awesome support and is a great guy). I will tell you though that it takes a bit to figure out how to set it up which is why I included a lesson on it in my course on <a href="http://wpsecuritylockdown.com">how to secure&nbsp;WordPress</a>.</p>
<h3>12. Restrict IP access to your website</h3>
<p>This can be done by adding the following to your .htaccess file.</p>
<p>order deny,allow</p>
<p>#(replace with your IP address)</p>
<p>allow from 202.090.21.1</p>
<p>deny from all</p>
<p>Or you can simply use my <a href="dl.dropbox.com/u/3893798/stealth-login-plus.zip" rel="nofollow">Stealth Login Plus Plugin</a> which will enable you to easily do this as well as trick would be hackers as to where the login url is for your site. &nbsp;The plugin has been approved in the WordPress repository but frankly I&#8217;m having trouble figuring out how to set up an SVN (I&#8217;m not a total geek you know) so in the mean time you can download it from <a href="http://dl.dropbox.com/u/3893798/stealth-login-plus.zip" rel="nofollow" target="_blank">here</a>. And watch the video below on how to configure it:<br />
<iframe src="http://www.youtube.com/embed/ZsIzljfBc-8?rel=0" frameborder="0" width="565" height="317"></iframe></p>
<h3>13. Move Your wp-config.php File Out of the Root Public HTML Folder of Your Server</h3>
<p>This is a neat little trick that not a lot of people know about. But your wp-config file is hosted in your public access html folder on your server. That is that the general public can try to access it, but you can move it out of that folder and into the folder on your website and WordPress will still be able to read it and know that it is there. &nbsp;However, you may loose functionality with some plugins so you have to weigh the costs of security over&nbsp;functionality. &nbsp;Either talk to the Plugin Developer about modifying his code to work with this configuration, find a different plugin or leave your wp-config.php file where it is. (Bullet Proof Security properly configured will lock access to it anyways but it doesn&#8217;t hurt to move it as its another layer of security) &nbsp;Check out the video below for detailed instructions on how to do this.<br />
<iframe width="565" height="317" src="http://www.youtube.com/embed/jRT8zh08ygs?rel=0" frameborder="0" allowfullscreen></iframe></p>
<h3>14. Hide Your wp-login.php URL</h3>
<p>Now this is a little advanced and can be done by adding some .htaccess code to your .htaccess file but frankly you might as well simply use my Stealth Login Plus plugin.</p>
<p>Watch the Stealth Login video above to see how to configure it.</p>
<h3>15. Use Cloudflare</h3>
<p><img class="alignnone size-full wp-image-4563" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/cloudflare.jpg?resize=600%2C432" alt="" data-recalc-dims="1" /></p>
<p>Perhaps you may or may not have heard of <a href="http://www.cloudflare.com" rel="nofollow" target="_blank">Cloudflare</a>.</p>
<p>Well they are an awesome company and branched off as a result of the Project Honey Pot Website Security Iniative (which is still going on I might add)</p>
<p>But the way that Cloudflare works is you host your site on their Content Delivery Network (CDN) by filtering your DNS settings through their servers and then anytime an attack is attempted on the network, Cloudflare blocks it and lets the rest of the network know about it. It&#8217;s kind of like neighborhood watch for the web on steroids. And because it is on a Content Delivery Network your site is that much faster as well.</p>
<p>That being said, I think that Cloudflare does a much better job of explaining what they do so head on over to their <a href="http://www.cloudflare.com/" rel="nofollow">website</a> to discover more.</p>
<h3>16. &nbsp;Use Internet Security Software for Your PC</h3>
<p><img class="alignnone size-full wp-image-4559" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/Notebook-with-shield.jpg?resize=600%2C450" alt="" data-recalc-dims="1" /></p>
<p>Ok, so you&#8217;re probably wondering why I&#8217;m talking about using Software for your PC and not for WordPress. &nbsp;(If you&#8217;re a mac user, you can skip this, contrary to popular belief Macs aren&#8217;t unhackable. It&#8217;s just there is not enough business market penetration by Apple to catch the attention of hackers and&nbsp;thieves,&nbsp;although that is changing). Besides the fact that you want to protect your PC you also want to stop keyloggers from getting into your computer and recording your keystrokes, such as your WordPress username and password (however if you use Roboform it automatically fills your username and password fields as well as presses the submit button) but&nbsp; you still want to keep your PC secure. &nbsp;Everyday some kid at home, or criminal in the mafia is thinking of ways to penetrate and hack your PC, to steal your&nbsp;identity or harness the power of your computer and for the small investment of what it takes to purchase an internet security suite it is more than worth it. &nbsp;Don&#8217;t for one minute think that you can simply use AVG free and your computer is good to go, no my friend, you need to shell out some cash. &nbsp;I won&#8217;t do an internet security suite review in this post but I personally use <a href="http://www.comodo.com/home/internet-security/internet-security-complete.php" rel="nofollow" target="_blank">Comodo Internet Security Suite </a>as they have a $500 virus&nbsp;guarantee&nbsp;and offer 24/7 remote tech support to boot. However, I also recommend <a href="http://www.kaspersky.com" rel="nofollow" target="_blank">Kaspersky</a> (as maximum PC did a huge test on it and it passed with flying colors)</p>
<h3>17. Install and Use Backup Buddy</h3>
<p><a href="http://pluginbuddy.com/purchase/backupbuddy/" rel="nofollow" target="_blank"><img class="alignnone size-full wp-image-4561" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/backup-buddy.jpg?resize=600%2C414" alt="" data-recalc-dims="1" /></a></p>
<p>Ok, so here is the thing. <strong>You need to back up your site and you need to do it often.</strong> The best way to do that is with <a href="http://pluginbuddy.com/purchase/backupbuddy/" rel="nofollow" target="_blank">Back Up Buddy</a>. &nbsp;Reason being is that if your site gets hacked, you will have a back up of it.&nbsp;&nbsp;I know that I&#8217;ve mentioned previous things that you can do to protect your site but hey, anything can happen. (If the CIA website can be hacked, we need to think twice about the security of our WordPress websites) Now before you brand me as a complete liar (for implying that you can make WordPress impenetrable), if you implement the strategies that I have&nbsp;previously&nbsp;mentioned you will make it <em>EXTREMELY DIFFICULT</em> for someone to hack your site, and more than likely once they try a few things, they will move on. But there is always that small chance, and if it does happen, you&#8217;ll have a regular backup of your site using backup buddy. &nbsp;Using Backup Buddy you can send the back ups to an Amazon S3 or a Drop Box Account (I would use both as it doesn&#8217;t hurt to have multiple instances of your site someone where). And not only that, but there are times when things go wrong such as a WordPress upgrade or the installation of a plugin that whacks out your site and it&#8217;s nice to know that you can go back and restore your site if you have to. While there are free backup solutions out there, none of them do what <a href="http://pluginbuddy.com/purchase/backupbuddy/" rel="nofollow" target="_blank">Backup Buddy</a> does and it is well worth the investment.</p>
<p>So with that being said, once you&#8217;ve done all of this, how do you know if your WordPress site is secure? Well I&#8217;m glad you asked fellow WordPress fanatic as you can install the <a href="http://wordpress.org/extend/plugins/ultimate-security-checker/" rel="nofollow" target="_blank">Ultimate WordPress Security Plugin</a> and it will tell you what security holes are in your WordPress website and how to fix them. It will also score how secure your WordPress website is based on a points system, with 114 points being the highest (most of my WordPress sites get at least 100 points or higher, I don&#8217;t get a perfect score because I choose to ignore some of their recommendations)</p>
<p>And if you want to learn even more about WordPress security you can invest in my 4 hour Video Course &#8220;<a href="http://wpsecuritylockdown.com/" rel="nofollow" target="_blank">WordPress Security Lockdown</a>&#8221; which includes 31 videos on how to secure WordPress (teaching you via some of what I have mentioned in this post as well as so much more) or you could also invest in the book <a href="http://www.packtpub.com/wordpress-3-ultimate-security/book" rel="nofollow" target="_blank">WordPress 3.0 Ultimate Security</a> by Olly Connelly from Pack Publishing. It&#8217;s a great book and I myself learned a lot (and had a lot confirmed) about what I have learned about WordPress security. &nbsp;You can also follow me on twitter <a href="http://twitter.com/#!/mattsfraser" rel="nofollow" target="_blank">@mattsfraser</a></p>
<p>The post <a href="http://cliftonhatfield.com/17-tips-on-how-to-secure-wordpress-like-fort-knox/">17 Tips on How to Secure WordPress Like Fort Knox</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/17-tips-on-how-to-secure-wordpress-like-fort-knox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hacking Methods</title>
		<link>http://cliftonhatfield.com/hacking-methods/</link>
		<comments>http://cliftonhatfield.com/hacking-methods/#comments</comments>
		<pubDate>Wed, 09 May 2012 06:23:53 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[WordPress Security]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4522</guid>
		<description><![CDATA[<p>People have been dealing with an increase of hackers taking advantage of security vulnerabilities. I'm going to explain the two most common and probably most dangerous hacking methods. This may give you some insight on how important proper programming is to security and why it's important to keep your software updated.</p><p>The post <a href="http://cliftonhatfield.com/hacking-methods/">Hacking Methods</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>People have been dealing with an increase of hackers taking advantage of security vulnerabilities. I&#8217;m going to explain the two most common and probably most dangerous hacking methods. This may give you some insight on how important proper programming is to security and why it&#8217;s important to keep your software updated.</p>
<h3>SQL Injection</h3>
<p>This type of activity is about attacking the database through a website input field and can result in data being accessed, edited, deleted, etc. To give you an idea of what this means:</p>
<ol>
<li>Customer details and confidential information being stolen for fraudulent activities.</li>
<li>Stolen products from an e-commerce website such as recording orders with details of non-existing payments.</li>
<li>Altering or deleting of business critical data.</li>
<li>Embarrassing defacing of the website.</li>
</ol>
<h3>Cross-site Scripting (XSS)</h3>
<p>This type of attack is about using user-generated content to make the website perform activities is should not. High-profile websites like Twitter.com have even been victims of cross-site scripting attacks in which Javascript has been injected into the website to redirect users to another destination. Cross-site scripting isn&#8217;t limited to redirecting user but can cause visitor snooping and cookie tracking.</p>
<ol>
<li> Visitors being redirected from your website to another often without you ever knowing this is happening.</li>
<li>Website users and admin having their login details stolen and website accounts abused.</li>
<li>Distribution of viruses among website visitors.</li>
</ol>
<h3>Avoid Being Hacked</h3>
<p>As you can imagine, these issues can cause serious issues for you and your visitors. You don&#8217;t need to be a programmer to protect yourself against hacking attempts. If you use a publishing platform like WordPress, then keeping your WP version, themes, and plugins up-to-date is simple. It is important to make sure your third-party software is not only updated on your blog but also actively being developed. Plugins that are no longer being supported or developed may have vulnerabilities that will never be fixed. If installed on your website, this may leave holes in your security. It is also important to keep your inactive plugins and themes up-to-date. Although the may inactive, their files are still accessible to hackers.</p>
<h3>Google Webmaster Tools</h3>
<p><a title="Google Webmaster Tools" href=" target=" rel="nofollow">Google Webmaster Tools</a> is filled with goodies. When Google crawls your site and finds malware or believes you&#8217;ve been hacked, they will notify you within your Google Webmaster Tools account. The service is free and highly recommended.</p>
<h3>Final Thought</h3>
<p>It&#8217;s a cat and mouse game. Hackers find a vulnerability and developers do their best to patch up the hole&#8230;and around and around we go. Always have security in mind and never assume that your website is too small to be hacked, everyone is a target. Keep your software up-to-date and check your Google Webmaster Tools for malware warnings.</p>
<p>The post <a href="http://cliftonhatfield.com/hacking-methods/">Hacking Methods</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/hacking-methods/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Clifton&#8217;s Lightbox Plugin Gets a Face-Lift</title>
		<link>http://cliftonhatfield.com/cliftons-lightbox-plugin-gets-a-face-lift/</link>
		<comments>http://cliftonhatfield.com/cliftons-lightbox-plugin-gets-a-face-lift/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 05:17:34 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Capture leads]]></category>
		<category><![CDATA[clifton's lightbox plugin]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[WordPress Popups]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4473</guid>
		<description><![CDATA[<p>Thousands of bloggers have downloaded my lightbox plugin for their WordPress blogs. Over the years, the plugin has gone through many changes and the latest is the best thus far. If you're looking for an awesome solution for a popup/lightbox that greets your WordPress visitors, this is your solution. Supports video, works with any email marketing service. Read this post, to download.</p><p>The post <a href="http://cliftonhatfield.com/cliftons-lightbox-plugin-gets-a-face-lift/">Clifton&#8217;s Lightbox Plugin Gets a Face-Lift</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Thousands of bloggers have downloaded my lightbox plugin for their WordPress blogs. Over the years, the plugin has gone through many changes and the latest is the best thus far. <a title="Clifton's Lightbox Plugin for WordPress" href="http://lightbox.cliftonhatfield.com">Download Clifton&#8217;s Lightbox Plugin</a></p>
<p>The post <a href="http://cliftonhatfield.com/cliftons-lightbox-plugin-gets-a-face-lift/">Clifton&#8217;s Lightbox Plugin Gets a Face-Lift</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/cliftons-lightbox-plugin-gets-a-face-lift/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Merry Christmas, Happy New Year, &amp; Happy Holidays!</title>
		<link>http://cliftonhatfield.com/merry-christmas-happy-new-year-happy-holidays/</link>
		<comments>http://cliftonhatfield.com/merry-christmas-happy-new-year-happy-holidays/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 07:25:45 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Family Life]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Happy New Year]]></category>
		<category><![CDATA[Merry Christmas]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4459</guid>
		<description><![CDATA[<p></p><p>The post <a href="http://cliftonhatfield.com/merry-christmas-happy-new-year-happy-holidays/">Merry Christmas, Happy New Year, &#038; Happy Holidays!</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><iframe width="610" height="340" src="http://www.youtube.com/embed/UYmpdLUOJP8?rel=0&amp;wmode=Opaque" frameborder="0" allowfullscreen></iframe></p>
<p>The post <a href="http://cliftonhatfield.com/merry-christmas-happy-new-year-happy-holidays/">Merry Christmas, Happy New Year, &#038; Happy Holidays!</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/merry-christmas-happy-new-year-happy-holidays/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Learn To Use Google Search</title>
		<link>http://cliftonhatfield.com/learn-to-use-google-search/</link>
		<comments>http://cliftonhatfield.com/learn-to-use-google-search/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 09:42:21 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Personal Development]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[how to use Google]]></category>
		<category><![CDATA[search engines]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4441</guid>
		<description><![CDATA[<p>Learn how to use Google Search. Infographic explains the techniques you can use to find exactly what you are searching for on Google.</p><p>The post <a href="http://cliftonhatfield.com/learn-to-use-google-search/">Learn To Use Google Search</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>How to properly search Google</h3>
<p>I am asked a lot of questions. So many in fact, that I had to start my own <a title="WordPress, SEO, and Internet Questions Support Group on Facebook" href="http://cliftonhatfield.com/choosing-post-titles-successfully/" target="_blank">support group on Facebook</a>. Now, I don&#8217;t know everything but I do enjoy helping people out. Everyday thousands of people join the blogosphere and they have a lot of questions. Their answers are on the internet but they don&#8217;t know exactly how to find them themselves, so they quickly turn to the first person they think may already know the answer. So, I&#8217;ve decided to publish this infographic, courtesy of <a title="HackCollege.com" href="http://hackcollege.com" target="_blank">HackCollege.com</a>, that explains the techniques you can use to find exactly what you are looking for in a fraction of the time. Finding the answer yourself will greatly benefit you in the future.</p>
<p><img class="alignnone size-full wp-image-5401" alt="Google Search Infograhic" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/google-search-infographic.jpg?resize=615%2C6802" data-recalc-dims="1" /></p>
<p>The post <a href="http://cliftonhatfield.com/learn-to-use-google-search/">Learn To Use Google Search</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/learn-to-use-google-search/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Content For Your WordPress Blog</title>
		<link>http://cliftonhatfield.com/creating-content-for-your-wordpress-blog/</link>
		<comments>http://cliftonhatfield.com/creating-content-for-your-wordpress-blog/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 21:36:08 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Beth Hewitt]]></category>
		<category><![CDATA[content writing]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4425</guid>
		<description><![CDATA[<p>My friend Beth Hewitt has written a great article on how to create content for your WordPress blog. If you have suffered from writer&#8217;s block, which I think we all have, then she offers some great ideas to help you overcome that dreaded feeling.</p><p>The post <a href="http://cliftonhatfield.com/creating-content-for-your-wordpress-blog/">Creating Content For Your WordPress Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>My friend Beth Hewitt has written a great article on <a title="How to create content for your WordPress blog" href="http://bethhewittonline.com/creating-content-for-your-blog/" target="_blank">how to create content for your WordPress blog</a>. If you have suffered from writer&#8217;s block, which I think we all have, then she offers some great ideas to help you overcome that dreaded feeling.</p>
<p>The post <a href="http://cliftonhatfield.com/creating-content-for-your-wordpress-blog/">Creating Content For Your WordPress Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/creating-content-for-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress.com vs WordPress.org</title>
		<link>http://cliftonhatfield.com/wordpress-com-vs-wordpress-org/</link>
		<comments>http://cliftonhatfield.com/wordpress-com-vs-wordpress-org/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 08:36:00 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[blogging platform]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[WordPress.com]]></category>
		<category><![CDATA[WordPress.org]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4389</guid>
		<description><![CDATA[<p>Those new to blogging often don't know the difference between WordPress.com and WordPress.org. Although extremely similar, the biggest difference between the two is that WordPress.com is a hosted blogging service and WordPress.org is self-hosted.</p><p>The post <a href="http://cliftonhatfield.com/wordpress-com-vs-wordpress-org/">WordPress.com vs WordPress.org</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-4390" title="WordPress Logo" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/WordPress-Logo.png?resize=150%2C150" alt="WordPress Logo" data-recalc-dims="1" />Hosted Blogs vs Self-Hosted Blogs</h3>
<p>Those new to blogging often don&#8217;t know the difference between <a title="Get a free hosted blog here." href="http://wordpress.com" target="_blank">WordPress.com</a> and <a title="WordPress Self Hosted Publishing Platform" href="http://wordpress.org" target="_blank">WordPress.org</a>. Although extremely similar, the biggest difference between the two is that WordPress.com is a hosted blogging service and WordPress.org is self-hosted.</p>
<h3>What is a hosted blogging platform?</h3>
<p>Using a hosted blogging platform like WordPress.com is a great place for beginners to start because it&#8217;s easy and free. It&#8217;s a hosted blogging platform because the service &#8220;hosts&#8221; the blog on their domain. For example, my hosted blog is <a title="Clifton Hatfield" href="http://cliftonhatfied.wordpress.com" target="_blank">http://cliftonhatfied.wordpress.com</a>. You do have the option to change the domain to your own purchased domain by paying the host service a fee. If you are okay with the disadvantages of hosted blogs, explained later in this series, then you may want to consider using your own domain for your hosted blog. Although, I don&#8217;t recommend it for business professionals.</p>
<h3>Advantages of Hosted Blog Platforms</h3>
<p>Hosted &amp; Self-Hosted blogs have their own advantages and disadvantages. Here, I will explain the advantages of having a hosted blog on a service like WordPress.com.</p>
<ol>
<li><strong>Fairly cheap or free to run</strong> &#8211; most hosted blogging platforms are free or have a small monthly fee to operate.</li>
<li><strong>Quick &amp; easy to setup</strong> &#8211; you can usually get started with your new hosted blog within a few clicks in a few minutes. You don&#8217;t need any knowledge of the technical side of setting up a blog platform.</li>
<li><strong>Simple to operate</strong> &#8211; After setup, your biggest role in the operation of your blog is to publish content. Sometimes this is as easy as adding the content and clicking Publish.</li>
<li><strong>Automatic updates</strong> &#8211; The blog host handles the updates for you so you know your blogging platform is never outdated. This can help protect you against hacker vulnerability and software bugs without you worrying about keeping your software up-to-date.</li>
<li><strong>Search engine optimization</strong> &#8211; A nice advantage of using a hosted blog is that you may be sharing a domain with hundreds of thousands or even millions of other bloggers who are also writing content that is constantly being crawled and indexed by search engines like Google. This is in your favor because the hosted blog domain may have a higher Page Rank or hold more weight with search engines, thus giving your blog a boost.</li>
</ol>
<h3>Disadvantages of Hosted Blog Platforms</h3>
<ol>
<li><strong>Less options</strong> &#8211; To help keep things simple for any user, the hosted blog service limits a blogger&#8217;s options and often makes the service less configurable. This may or may not bother you but it&#8217;s something to consider before going deep into your hosted blog.</li>
<li><strong>Default design</strong> &#8211; This is similar to the disadvantage above. Most hosted blog platforms limit a blogger&#8217;s design options to keep things simple for them to use. The downside of this is that everyone&#8217;s blog often begin looking the same and have less &#8220;character&#8221;.</li>
<li><strong>Less ownership</strong> &#8211; This is a HUGE disadvantage to online business professionals like Internet Marketers or Professional Bloggers. Imagine spending countless hours and money building up your business only to find out that it is at the mercy of someone else! Hosted blog platforms is the same thing. Although the blogger owns the content written on their blog, they don&#8217;t own the domain name and have limited branding capabilities. They have limited control of the service their blog is running on as well.</li>
<li><strong>Generic URL</strong> &#8211; This one also affects those who expect to have a professional blog. Although there are many very successful blogs operating on the hosted generic domain (e.g. xxxxx.wordpress.com), having control over your domain name can really excel your online branding.</li>
<li><strong>Out-growing hosted blogs</strong> &#8211; As I said before, hosted blogs is a great place to start for beginner bloggers but that is because it gives them an opportunity to learn about how to blog and using the platform. Once they have moved past that phase, it&#8217;s time to consider a self-hosted blog. The reason is because once you&#8217;ve established a solid audience and foundation in one location on the internet, it can be very difficult to move and expect your audience to follow. So moving from a hosted service to a self-hosted service may pose some challenges.</li>
</ol>
<h3>Does anyone really use Hosted Blogs?</h3>
<p>The answer is Yes! Millions of people do use hosted blogs because of many advantages stated above but because of its simplicity mostly. And although the norm in the professional blogging world is to frown on hosted blogs, there have been many professionals who have grown enormous following using a hosted blogging platform, like <a title="Seth Godin" href="http://sethgodin.typepad.com/" target="_blank">Seth Godin (http://sethgodin.typepad.com/)</a>.</p>
<h3 style="text-align: left;"><span style="color: #ff6600;">Stay tuned for Part Two where I talk about &#8220;What is a <em>self-hosted</em> blogging platform?&#8221; and its advantages &amp; disadvantages.</span></h3>
<p>[jetpack_optin]</p>
<p>The post <a href="http://cliftonhatfield.com/wordpress-com-vs-wordpress-org/">WordPress.com vs WordPress.org</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-com-vs-wordpress-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Stream and The Bump</title>
		<link>http://cliftonhatfield.com/google-stream-and-the-bump/</link>
		<comments>http://cliftonhatfield.com/google-stream-and-the-bump/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 21:43:04 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Google+]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Martin Casper]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4430</guid>
		<description><![CDATA[<p>A great friend of mine and follow expert internet marketer, Martin Casper, is a true Google+ genius. He shares the secrets to using Google+. Find out what he has to say about &#8220;Google Stream and The Bump&#8220;. &#160;</p><p>The post <a href="http://cliftonhatfield.com/google-stream-and-the-bump/">Google Stream and The Bump</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A great friend of mine and follow expert internet marketer, Martin Casper, is a true Google+ genius. He shares the secrets to using Google+. Find out what he has to say about &#8220;<a title="Google Stream &amp; The Bump" href="http://www.empower2go.com/2011/11/google-stream-and-the-bump/" target="_blank">Google Stream and The Bump</a>&#8220;.</p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/google-stream-and-the-bump/">Google Stream and The Bump</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/google-stream-and-the-bump/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On-Site SEO Techniques For Blogs</title>
		<link>http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/</link>
		<comments>http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 03:32:10 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Affiiate Marketing]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[heading tags]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4352</guid>
		<description><![CDATA[<p>On-site SEO techniques are strategies you can do on your blog that will help build a higher ranking in Google's search results. When it comes to search engine optimization, there are many different strategies and much speculation around what works and what doesn't. I've put together a list of the ones I hold most important in my on-site SEO strategy.</p><p>The post <a href="http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/">On-Site SEO Techniques For Blogs</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-4355" title="On-site Seo for Blogs" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/On-site-Seo-for-Blogs.png?resize=150%2C150" alt="On-site Seo for Blogs" data-recalc-dims="1" /></p>
<h3>Receive a higher ranking with Google</h3>
<p>We all want to receive a <strong>higher rank on Google</strong> search results pages. Page One is the prize. With patience, practice, researching, and trial &amp; error you will become an SEO machine.</p>
<h3>What is On-Site SEO?</h3>
<p><strong>On-site SEO techniques</strong> are strategies you can do on your blog that will help build a higher ranking in Google&#8217;s search results. When it comes to <em>search engine optimization</em>, there are many different strategies and much speculation around what works and what doesn&#8217;t.</p>
<p>The first step is to decide on a few keywords for your article that you would like to be found in the search engines. Think about what visitors will type into the search field of Google if they want information on the topic in your article. When you identify what visitors search for, you will have a better idea of what keywords you should be using several times throughout your article.</p>
<p>You need to add these <span style="text-decoration: underline;">SEO keywords</span> in various locations within the specific article. Featuring the keywords using HTML or the editor buttons of your Visual Editor tab will help you signify their importance. Here are a ways to feature those keywords in different levels of importance.</p>
<h4>Keywords in the URL</h4>
<p><a href="http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/permalinks-in-wordpress-for-seo/" rel="attachment wp-att-4372"><img class="alignright size-thumbnail wp-image-4372" title="Permalinks in WordPress for SEO" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/Permalinks-in-WordPress-for-SEO.jpg?resize=150%2C150" alt="Permalinks in WordPress for SEO" data-recalc-dims="1" /></a>When using the WordPress Platform, editing your permalinks to contain your article&#8217;s keywords is important. Be sure that you&#8217;ve adjusted your <strong>Permalinks</strong> Settings to reflect a <span style="text-decoration: underline; cursor: pointer;" title="Canonical URL: the search engine friendly URL that you want the search engines to treat as authoritative.  In other words, a canonical URL is the URL that you want visitors to see.">canonical URL</span>. Then, you can editing the article&#8217;s permalink just beneath where you set your post or page title.</p>
<h4>Post Titles</h4>
<p>Your post title holds a lot of weight when considering <strong>SEO</strong>. When <a title="Choosing Post Titles Successfully" href="http://cliftonhatfield.com/choosing-post-titles-successfully/">choosing a WordPress post title</a>, you need to make it catching but not deceiving. You also need to include your article&#8217;s keywords. It&#8217;s very tricky, but it can be done.</p>
<h4>Internal Links</h4>
<p>Many new bloggers get caught up in the importance off off-site linking, also known as backlinks, that they neglect the importance of on-site linking, or internal linking. Internal linking to increase the visibility of other articles in your blog has search engine optimization benefits too. Use your keywords within your anchor text (clickable text) when creating an internal link. You can see examples within this article linking to other articles on my blog.</p>
<h4>Bold &amp; Italic Format Text</h4>
<p>Bold format on your keywords within your content can hold weight with search engines. Search engine algorithms use the bold text as a level of importance. Therefore, adding a <strong>bold</strong> or <em>italic</em> format to your keywords will be viewed as importance keywords in your article.</p>
<h4><a href="http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/heading-tags-in-wordpress-for-seo/" rel="attachment wp-att-4371"><img class="size-thumbnail wp-image-4371 alignright" title="Heading Tags in WordPress for SEO" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/Heading-Tags-in-WordPress-for-SEO.jpg?resize=150%2C150" alt="Heading Tags in WordPress for SEO" data-recalc-dims="1" /></a>Heading Tags (H1, H2, H3, H4, H5, H6)</h4>
<p>Heading tags are ordered by their tag with H1 being the most important down to H6 being the least. Typically, your article&#8217;s title, which should already contain keywords, is marked as an H1 by your WordPress theme. Then, you have the flexibility to use the other heading tags (e.g. H2, H3, H4&#8230;) on other sections of your article. Splitting your article into sections is a wise move. Not only does it make things easier to read but it also gives you an opportunity to sub title each section. You can see that I have done this within this article. H1 tags should be the largest and higher on the page (as bots crawl webpages top to bottom assuming the most important is nearest to the top.) H2 tags should be slightly smaller font size and beneath the H1 tags on the page. Continue this trend for any use of your heading tags.</p>
<p><strong>You can find your heading tags in the Format drop down menu of your post editor toolbar when in Visual Mode.</strong></p>
<h4><a href="http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/image-alt-attribute-for-wordpress-seo/" rel="attachment wp-att-4375"><img class="alignright size-thumbnail wp-image-4375" title="Image Alt Attribute for WordPress SEO" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/Image-Alt-Attribute-for-WordPress-SEO.jpg?resize=150%2C150" alt="Image Alt Attribute for WordPress SEO" data-recalc-dims="1" /></a>Image Alt Attribute</h4>
<p>I see bloggers leaving this one out too often. When you&#8217;ve uploaded an image to your article, you need to add it&#8217;s alt attribute (means alternative text). This attribute helps text readers like bots determine what your image is representing because blots can&#8217;t &#8220;look&#8221; at the image so they rely on the alt attribute to tell them. You can easily add it to an image immediately after uploading the image. Inside of the media popup that appears when uploading an image, you can enter its Alternative Text before clicking the Insert into Post button.</p>
<h4>Keywords in the First Paragraph</h4>
<p>Some people believe that your keywords need to be in the first sentence of your article. If you can&#8217;t fit the keywords into your first sentence, at least make sure you have them in your first paragraph. The earlier a bot reads your keywords the better.</p>
<h4><strong>Most Important On-site SEO Technique</strong></h4>
<p>The most important on-site SEO technique is to always write your article for your readers and NOT for the search engine bots. If you litter your article with keywords so much that it becomes difficult for your readers to understand then the article looks spammy. <em>These bots are smart.</em> They can determine the difference between legit text designed to deliver information to the reader and the bad text that is only there to boost SEO results. Don&#8217;t let your hard SEO efforts send you in the wrong direction.</p>
<h4>Final Thought</h4>
<p>On-site SEO is just as important as off-site. The great thing about on-site is that you have complete control over it and you can monitor what&#8217;s working for you and what isn&#8217;t by using services like Google Webmaster Tools. Keep track of what keywords Google is indexing off your WordPress blog and your on-site Search engine optimization efforts will only get better.</p>
<p style="text-align: center;"><span style="text-decoration: underline;"><em><strong>If you have ANY additional tips, please feel free to add them within the comments!</strong></em></span></p>
<p>The post <a href="http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/">On-Site SEO Techniques For Blogs</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/on-site-seo-techniques-for-blogs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>YouTube Optimization: What&#8217;s In It For You?</title>
		<link>http://cliftonhatfield.com/youtube-optimization-whats-in-it-for-you/</link>
		<comments>http://cliftonhatfield.com/youtube-optimization-whats-in-it-for-you/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 08:32:00 +0000</pubDate>
		<dc:creator>Wayne Hatter</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Video Marketing]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[video search]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4338</guid>
		<description><![CDATA[<p>There are 7 POWERFUL benefits to the reason why you should consider using YouTube in your marketing campaigns. Find out what it takes to optimize your YouTube channel for your most effective video marketing strategy. Guest blogger, Wayne Hatter, shares his secrets and experience on how to optimize for YouTube.</p><p>The post <a href="http://cliftonhatfield.com/youtube-optimization-whats-in-it-for-you/">YouTube Optimization: What&#8217;s In It For You?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><em>Hey Guys,</em></p>
<p><em>Wayne Hatter here and before we get into the <strong>benefits of YouTube</strong>, I must say that it is an honor to be a guest blogger for Mr. <a title="Who is Clifton Hatfield?" href="http://cliftonhatfield.com/who-is-clifton-hatfield/">Clifton Hatfield</a>. He just had a brand new, baby boy… so if you would… Leave a comment and congratulate him on a job well done and Mrs. Ashley Hatfield as well.</em></p>
<p><em>Ok, now down to business.</em></p>
<h3 style="text-align: left;">YouTube Search: What Are People Looking For?</h3>
<p><img class="alignright size-medium wp-image-4346" title="YouTube Logo" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/YouTube-Logo.jpg?resize=225%2C168" alt="YouTube Logo" data-recalc-dims="1" />People search the web for many reasons.</p>
<p>One of the biggest reasons is because they are looking for help or to solve a problem. The first place that people usually go for information is Google. After all Google is the number one search engine in the world.</p>
<p>Now check this out! <a title="YouTube" href="http://cliftonhatfield.com/category/social-networking/youtube/" target="_blank">YouTube</a> is the now the second largest search engines in the world (Google being #1). So What…?</p>
<p>Well, people are becoming more and more visual and they don’t want to read. Hence, YouTube is where they can see the solutions to their problems rather than read about it.</p>
<p>So what does all this mean for you? Basically, it comes down to this. If you have a business, then you have the power of YouTube!</p>
<p>The benefits are crazy amazing if you choose to use <em>YouTube for one of your marketing vehicles</em>.</p>
<p>Here are <strong>7 POWERFUL benefits</strong> to the reason why you should consider using YouTube in your marketing campaigns:</p>
<h3>YouTube Benefits</h3>
<ol>
<li><strong>It’s Free</strong> – Think about how much you would be spending on yellow page ads, billboards, etc. Those advertising methods are not free. However, YouTube is.</li>
<li><strong>Video Content Is Powerful</strong> – You have all heard that content is king. Well, video is content and some would consider it the king of kings (I personally agree). Like I said before, “people would rather watch their problems being solved rather that read about it”</li>
<li><strong>Virality</strong> – There are 2 different types of virality that I have learned. General and Relative.<br />
<strong>General Virality</strong> is when a video has become popular by chance or if it is a celebrity.<br />
<strong>Relative Virality – </strong>Is when your video or videos are produced in a way to target your audience. For instance… Let’s say that you have created a course on YouTube <a title="Search Engine Optimization" href="http://cliftonhatfield.com/category/blogging-tools/seo-blogging-tools/">SEO</a>, then your target audience would be small businesses and online marketers.<br />
At any rate, YouTube had over 3 billion views a day, back in May of 2011. That means the potential for viewers is astronomical.</li>
<li><strong>Global and Local Audience</strong> – This one is my favorite because depending on the keywords that you are targeting, you can target the same audience in different regions of the world. That means that you have the potential for customers buying your product from all over the world.</li>
<li><strong>You Are Viewed As The Expert</strong> – When you are demonstrating your product or giving away some great valued tips and tricks. People begin to know that you are the guy or gal that they can trust.</li>
</ol>
<ol>
<li><strong>YouTube Is Always Selling For You</strong> – 24 hours a day and 7 days a week; Your message, product or service is being broadcasted. Which means more potential traffic to your site and more cash in ‘yo’ pocket.</li>
</ol>
<ol>
<li>Video is SEO Friendly – This is the big kahuna. As you begin to learn how to optimize your YouTube videos. You will see the amount of views and traffic that you are getting to your site. However, there are some techniques that are ninja certified to get you more views. <em>More views = More Traffic = More Cash In Yo Pocket.</em></li>
</ol>
<p>With all of these benefits the question is, why wouldn’t you want to start using YouTube for your marketing?</p>
<h4 style="text-align: center;"><strong>Looking for YouTube Optimization Help? Visit <a title="How To Drive More Traffic To Your Site" href="http://www.howtoincreaseyoutubeviews.com/discover-how-to-optimize-your-youtbe-videos-to-increase-views-so-that-you-can-increase-your-sales/" target="_blank">&#8220;How To Increase YouTube Views&#8221;</a></strong></h4>
<p>The post <a href="http://cliftonhatfield.com/youtube-optimization-whats-in-it-for-you/">YouTube Optimization: What&#8217;s In It For You?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/youtube-optimization-whats-in-it-for-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Testimonials Plugin For WordPress</title>
		<link>http://cliftonhatfield.com/new-testimonials-plugin-for-wordpress/</link>
		<comments>http://cliftonhatfield.com/new-testimonials-plugin-for-wordpress/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 05:48:41 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[leave testimonial]]></category>
		<category><![CDATA[testimonials plugin]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4312</guid>
		<description><![CDATA[<p>The latest update to my Testimonials Plugin for WordPress has received some serious love. In version 1.4, the plugin received an updated style for the testimonial submission form, YouTube video support, visitor URL, pagination, one-click updating, and more.</p><p>The post <a href="http://cliftonhatfield.com/new-testimonials-plugin-for-wordpress/">New Testimonials Plugin For WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-thumbnail wp-image-4315" title="Testimonials Plugin for WordPress" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/testimonial-plugin.png?resize=150%2C150" alt="Testimonials Plugin for WordPress" data-recalc-dims="1" />Testimonials Plugin for WordPress v1.4</h3>
<p>The latest update to my <a title="Testimonials Plugin for WordPress" href="http://testimonialsplugin.com" target="_blank"><strong>Testimonials Plugin for WordPress</strong></a> has received some serious love. In version 1.4, the plugin received an updated style for the testimonial submission form, YouTube video support, visitor URL, pagination, one-click updating, and more.</p>
<h3>How it works</h3>
<p>This plugin is extremely simple to use. Create a page on your <strong>WordPress blog</strong> and place the testimonials form within the page using the provided shortcode. Visitors can then submit a testimonial from your new page leaving their name, email address, testimonial, with a optional photo, YouTube video, and website URL. If they don&#8217;t leave a photo, then the plugin will try using their Gravatar, if available.</p>
<p>After the visitor submits their testimonial, you will receive an email notification, and the testimonial is placed into a Pending Status waiting for your review. Once you review the testimonial, you can publish it onto your Testimonials page that you&#8217;ve created.</p>
<h3>Testimonials Plugin In Action</h3>
<p>If you&#8217;d like to see the testimonials plugin in action, then <em><a title="Leave  Testimonial" href="http://cliftonhatfield.com/leave-testimonial/">leave me a testimonial</a></em>.</p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/new-testimonials-plugin-for-wordpress/">New Testimonials Plugin For WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/new-testimonials-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing Post Titles Successfully</title>
		<link>http://cliftonhatfield.com/choosing-post-titles-successfully/</link>
		<comments>http://cliftonhatfield.com/choosing-post-titles-successfully/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 05:12:43 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[blog titles]]></category>
		<category><![CDATA[drive traffic]]></category>
		<category><![CDATA[post titles]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4279</guid>
		<description><![CDATA[<p>Grabbing someone's attention on the fast-moving internet can be a challenge. Sometimes it feels like putting a bigger, brighter, flashier signs on the strip in Las Vegas just so people will notice you so you can at least get them in the front door. Here are some techniques for grabbing a potential reader's attention.</p><p>The post <a href="http://cliftonhatfield.com/choosing-post-titles-successfully/">Choosing Post Titles Successfully</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>What is a good post title?</h3>
<p>This is obviously subjective but the ultimate goal of a post title is to get people to read the first sentence of your article. Using the post title to spark their interest leading them to read the first sentence is crucial.</p>
<h3>Want me to read? Grab my attention.</h3>
<p>Grabbing someone&#8217;s attention on the fast-moving internet can be a challenge. Sometimes it feels like putting a bigger, brighter, flashier signs on the strip in Las Vegas just so people will notice you so you can at least get them in the front door. Here are some techniques for grabbing a potential reader&#8217;s attention.</p>
<h4>Grab Attention</h4>
<p>Often time, blogs get filled with clutters&#8230;widgets&#8230;.opt-in forms&#8230;share buttons&#8230;etc&#8230;are all clutter making it that much more difficult for your visitors&#8217; attention to be grabbed by your post titles. First, ask a friend, preferably one that has never visited your <a title="What is WordPress?" href="http://cliftonhatfield.com/what-is-wordpress/">blog</a>, and have them evaluate your blog to see if they have any trouble &#8216;discovering&#8217; or &#8216;understanding&#8217; your post titles.</p>
<h4>Keep It Simple</h4>
<p>You may have heard of the KISS method. That applies here too. As bloggers, we have a lot to say right? Well, when it comes to post titles, keeping it short and sweet is the most effective. Short, simple, and easy to understand titles see the most action. The shorter post titles are great for SEO as well. If you keep the titles under 40 characters, the whole title will appear in Google search results.</p>
<h4>Be Honest</h4>
<p>I&#8217;ve seen bloggers using different tactics to grab someone&#8217;s attention and sometimes it&#8217;s not always the most honest either. Attention might be achieved using tactics of shock, big claims, controversy, or even confusion but these can often do more damage than good. Fooling people with deceptive titles will disappoint them when the article&#8217;s content falls short of their expectations. Don&#8217;t trick your readers into thinking you&#8217;ll provide them with something you can&#8217;t give them.</p>
<h4>Use Keywords</h4>
<p>Post titles can hold a lot of weight when it comes to SEO (<a title="My SEO Resources" href="http://cliftonhatfield.com/seo-resources/">search engine optimization</a>). If you want to take advantage of this opportunity, then you should be using your keywords or phrases inside of your post titles. When you are trying to keep titles simple and attention grabbing, this can be difficult but not impossible. Be creative. Just remember that it&#8217;s believed that words stating a post title hold more weight than words at the end of a title.</p>
<h4>Descriptive Titles</h4>
<p>There are those people who are tempted by brief titles that leave them hanging but majority of people want to have a good idea of what your article will be about before reading past the title. The title should describe what the readers will get when reading further so they have an idea what to expect.</p>
<h4>Make a Need</h4>
<p>An effective title draws people into reading your article because they may feel it&#8217;s something you <em>need</em> to read. I was able to prove this tactic with my article titled, <em><a title="Save Your Facebook Photos, Videos, &amp; Life" href="http://cliftonhatfield.com/save-your-facebook-photos-videos-life/" target="_blank">Save Your Facebook Photos, Videos, &amp; Life</a></em>. People were drawn to this article because Facebook has becomes so important to people that they wanted to learn how to save it. How-to articles and tutorials are a great way to capture people&#8217;s attention by meeting their need to know.</p>
<p>The post <a href="http://cliftonhatfield.com/choosing-post-titles-successfully/">Choosing Post Titles Successfully</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/choosing-post-titles-successfully/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Blogging For Passive Income</title>
		<link>http://cliftonhatfield.com/blogging-for-passive-income/</link>
		<comments>http://cliftonhatfield.com/blogging-for-passive-income/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 05:00:26 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[make money blogging]]></category>
		<category><![CDATA[passive income]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4250</guid>
		<description><![CDATA[<p>There are many ways, directly and indirectly, to monetize your blog. Nearly all of them earn you passive income. Building a passive income from blogging does require work though..at least to get things going. Then, regular maintenance and update to keep the passive income recurring.</p><p>The post <a href="http://cliftonhatfield.com/blogging-for-passive-income/">Blogging For Passive Income</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Earn passive income with your blog</h3>
<p>One of the biggest appeal to having a blog is the opportunity to earn passive income. Passive income is income that you earn while not actively working. That doesn&#8217;t mean it doesn&#8217;t take any work to start earning passive income.</p>
<p>There are many ways, directly and indirectly, to <a title="How To Make Money Blogging" href="http://cliftonhatfield.com/how-to-make-money-blogging/">monetize your blog</a>. Nearly all of them earn you passive income. Building a passive income from blogging does require work though..at least to get things going. Then, regular maintenance and update to keep the passive income recurring.</p>
<h3><img class="size-full wp-image-4259 alignleft" title="Passive Income Blogging" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/passive-income-blogging.png?resize=128%2C128" alt="Passive Income Blogging" data-recalc-dims="1" /></h3>
<h3>Ever heard the phrase, <em>&#8220;Make money while you sleep&#8221;</em>?</h3>
<p>It doesn&#8217;t happen overnight and you are required to develop ways to keep a constant follow of traffic to your blog. Regular updates and keeping your blog engaging are near fool-proof ways to keep your traffic levels high. With many new bloggers, the ideas for content come easily. However, as you being to run shy of new content to write about, it becomes harder and harder to keep up with new articles. In addition, there are many other aspects to keeping your blog &#8216;alive&#8217;, like comment management, software updates, search engine optimization, site backups, and more.</p>
<h3>Final Thought</h3>
<p>Making money blogging isn&#8217;t always fun. Like most things, if you do something for money, it usually because less and less fun and more like a chore or a job. Blogging is no different. New bloggers receive their first blog and they are pumped to start writing their articles but they usually fades. I suggest always treating your blog like a hobby and the passive income it earns as a perk. This might sound silly but getting burnt out on blogging is the #1 blog killer. When you treat your blog like a hobby or something that you love to do, then it stays fun and a way for you to express what&#8217;s on your mind, rather than just another paycheck for doing some work.</p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/blogging-for-passive-income/">Blogging For Passive Income</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/blogging-for-passive-income/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Make Money Blogging</title>
		<link>http://cliftonhatfield.com/how-to-make-money-blogging/</link>
		<comments>http://cliftonhatfield.com/how-to-make-money-blogging/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 04:10:57 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[direct income]]></category>
		<category><![CDATA[indirect income]]></category>
		<category><![CDATA[make money blogging]]></category>
		<category><![CDATA[monetization]]></category>
		<category><![CDATA[passive]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4191</guid>
		<description><![CDATA[<p>In this article, I will talk about the two basic ways of making money with your blog. I won't go into specifics but this will help you decide exactly the purpose of your blog and which method you plan to use to make money with it.</p><p>The post <a href="http://cliftonhatfield.com/how-to-make-money-blogging/">How To Make Money Blogging</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-4254" title="Make money blogging" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/money-blogging.png?resize=225%2C225" alt="Make money blogging" data-recalc-dims="1" />How do you make money on a blog?</h3>
<p>In this article, I will talk about the two basic ways of making money with your blog. I won&#8217;t go into specifics but this will help you decide exactly the purpose of your blog and which method you plan to use to make money with it.</p>
<h3>There are basically two categories for making money with a blog</h3>
<p>Some people may want to get into detail and say there are more than two ways&#8230;and there are&#8230;but you can look at all the different ways and still categorize them into two broad categories. I&#8217;m here to talk about them.</p>
<h3>Direct Monetization</h3>
<p>The direct method is a strategy that allows bloggers to earn an income directly <em>from</em> their blog. This would include running advertisements, acquiring sponsorships, earning affiliate commissions, and even paid reviews. Basically, any way that you are making money as a direct connection to having your blog.</p>
<h3>Indirect Monetization</h3>
<p>The indirect method is very popular in which bloggers earn an income <em>because</em>  of their blog. They have used their blog as a tool to build authority, creditability, or edify their expertise. Because of this, they are able to earn an income from such things as freelance contracts, published books &amp; ebooks, speaking engagements, consulting opportunities, running courses, and membership sites.</p>
<p>Whether your blog earns directly or indirectly, it is still considered <a title="Blogging is passive income" href="http://cliftonhatfield.com/blogging-for-passive-income/">passive income</a>.</p>
<h3>Final Thought</h3>
<p>Many blogs fall into both categories using <strong>direct and indirect monetization methods</strong>. You do not need to stick with one or the other but I encourage you to experiment with all your options. The most important thing to remember is that blog with no activity, not maintained, actively updated, or obviously built on auto-pilot will see low traffic numbers which means you can&#8217;t make money blogging directly or indirectly. It&#8217;s all about the traffic.</p>
<p>The post <a href="http://cliftonhatfield.com/how-to-make-money-blogging/">How To Make Money Blogging</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/how-to-make-money-blogging/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Success Doesn&#8217;t Happen All At Once</title>
		<link>http://cliftonhatfield.com/success-doesnt-happen-all-at-once/</link>
		<comments>http://cliftonhatfield.com/success-doesnt-happen-all-at-once/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 12:00:31 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Personal Development]]></category>
		<category><![CDATA[decisions]]></category>
		<category><![CDATA[moments]]></category>
		<category><![CDATA[positive]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4244</guid>
		<description><![CDATA[<p>Success doesn&#8217;t happen all at once; it&#8217;s built on taking advantage of individual moments and making small, positive decisions over time.</p><p>The post <a href="http://cliftonhatfield.com/success-doesnt-happen-all-at-once/">Success Doesn&#8217;t Happen All At Once</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Success doesn&#8217;t happen all at once; it&#8217;s built on taking advantage of individual moments and making small, positive decisions over time.</p>
<p>The post <a href="http://cliftonhatfield.com/success-doesnt-happen-all-at-once/">Success Doesn&#8217;t Happen All At Once</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/success-doesnt-happen-all-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Circumstances</title>
		<link>http://cliftonhatfield.com/your-circumstances/</link>
		<comments>http://cliftonhatfield.com/your-circumstances/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 19:25:23 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Personal Development]]></category>
		<category><![CDATA[circumstances]]></category>
		<category><![CDATA[influence]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4242</guid>
		<description><![CDATA[<p>Your circumstances can have a great influence over the person you become, but that does not mean they determine who you are.</p><p>The post <a href="http://cliftonhatfield.com/your-circumstances/">Your Circumstances</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Your circumstances can have a great influence over the person you become, but that does not mean they determine who you are.</p>
<p>The post <a href="http://cliftonhatfield.com/your-circumstances/">Your Circumstances</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/your-circumstances/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is WordPress?</title>
		<link>http://cliftonhatfield.com/what-is-wordpress/</link>
		<comments>http://cliftonhatfield.com/what-is-wordpress/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 22:00:03 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4214</guid>
		<description><![CDATA[<p>WordPress is a free and open source blogging tool and publishing platform powered by PHP and MySQL. It is often customized into a content management system (CMS). It has many features including a plug-in architecture and a template system. WordPress is used by over 14.7% of Alexa Internet's "top 1 million" websites and as of August 2011 powers 22% of all new websites. WordPress is currently the most popular CMS in use on the Internet.</p><p>The post <a href="http://cliftonhatfield.com/what-is-wordpress/">What is WordPress?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a title="WordPress" href="http://cliftonhatfield.com/category/wordpress/"><strong><img class="alignright size-medium wp-image-4215" title="WordPress Logo" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-logo.png?resize=225%2C225" alt="WordPress Logo" data-recalc-dims="1" />WordPress</strong></a> is a free and open source blogging tool and publishing platform powered by PHP and MySQL. It is often customized into a content management system (CMS). It has many features including a plug-in architecture and a template system. WordPress is used by over 14.7% of Alexa Internet&#8217;s &#8220;top 1 million&#8221; websites and as of August 2011 powers 22% of all new websites. WordPress is currently the most popular CMS in use on the Internet.</p>
<p>It was first released on May 27, 2003, by Matt Mullenweg as a fork of b2/cafelog. As of February 2011, version 3.0 had been downloaded over 32.5 million times.</p>
<h2>Features</h2>
<div>
<div>
<div>WordPress template hierarchy</div>
</div>
</div>
<p>WordPress has a web template system using a template processor.</p>
<h3>Themes</h3>
<p id="cite_ref-9">WordPress users may install and switch between themes. Themes allow users to change the look and functionality of a WordPress website or installation without altering the informational content. Themes may be installed by using the WordPress &#8220;Dashboard&#8221; administration tool, cPanel or uploading theme folders via FTP.The PHP and HTML code in themes can also be edited for more advanced customizations.</p>
<h3>Plugins</h3>
<p>One very popular feature of WordPress is its rich plugin architecture which allows users and developers to extend its functionality beyond the features that come as part of the base install; WordPress has a database of over 17,000 plugins with purposes ranging from SEO to adding widgets.</p>
<h3>Widgets</h3>
<p>Widgets offer users drag-and-drop sidebar content placement and implementation of many plugins&#8217; extended capabilities. Users can re-arrange widgets without editing PHP or HTML code.</p>
<h3>Multi-user and multi-blogging</h3>
<p>Prior to WordPress 3.0, WordPress supported one blog per installation, although multiple concurrent copies may be run from different directories if configured to use separate database tables. WordPress Multi-User (WordPress MU, or just WPMU) was a fork of WordPress created to allow multiple blogs to exist within one installation that is able to be administered by a centralized maintainer. WordPress MU makes it possible for those with a website to host their own blogging community, as well as control and moderate all the blogs from a single dashboard. WordPress MU adds eight new data tables for each blog.</p>
<p>WordPress MU merged with WordPress as part of the 3.0 release.</p>
<h3>Mobile</h3>
<p>Native applications exist for Android,iPhone/iPod Touch,iPad,Windows Phone 7, and BlackBerry which provide access to some of the features in the WordPress Admin panel and work with WordPress.com and many WordPress.org blogs.</p>
<h3>Other features of note</h3>
<p>WordPress also features integrated link management; a search engine-friendly, clean permalink structure; the ability to assign nested, multiple categories to articles; and support for tagging of posts and articles. Automatic filters are also included, providing standardized formatting and styling of text in articles (for example, converting regular quotes to smart quotes). WordPress also supports the Trackback and Pingback standards for displaying links to other sites that have themselves linked to a post or article.</p>
<p>Resource: <a title="WordPress" href="http://en.wikipedia.org/wiki/index.html?curid=605856" rel="nofollow" target="_blank">Wikipedia</a></p>
<p>The post <a href="http://cliftonhatfield.com/what-is-wordpress/">What is WordPress?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/what-is-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Secure WordPress Passwords</title>
		<link>http://cliftonhatfield.com/secure-wordpress-passwords/</link>
		<comments>http://cliftonhatfield.com/secure-wordpress-passwords/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 05:30:50 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[WordPress Security]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[securing passwords]]></category>
		<category><![CDATA[stolen passwords]]></category>
		<category><![CDATA[wordpress security]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4210</guid>
		<description><![CDATA[<p>“Hackers can easily break into many accounts just by repeatedly trying common passwords,” Slain says. “Even though people are encouraged to select secure, strong passwords, many people continue to choose weak, easy-to-guess ones, placing themselves at risk from fraud and identity theft.”</p><p>The post <a href="http://cliftonhatfield.com/secure-wordpress-passwords/">Secure WordPress Passwords</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-4211" title="Secure WordPress Passwords" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-passwords.png?resize=128%2C128" alt="Secure WordPress Passwords" data-recalc-dims="1" />Are your passwords secure for WordPress or any other online account? Here are some tips on choosing secure passwords for your valuable online assets like your blog and bank accounts.</p>
<ol>
<li>Vary different types of characters in your passwords; include numbers, letters and special characters when possible.</li>
<li>Choose passwords of eight characters or more. Separate short words with spaces or underscores.</li>
<li>Don’t use the same password and username combination for multiple websites. Use an online password manager to keep track of your different accounts.</li>
</ol>
<p>SplashData created the rankings based on millions of stolen passwords posted online by hackers. Here is the complete list:</p>
<ol>
<li>password</li>
<li>123456</li>
<li>12345678</li>
<li>qwerty</li>
<li>abc123</li>
<li>monkey</li>
<li>1234567</li>
<li>letmein</li>
<li>trustno1</li>
<li>dragon</li>
<li>baseball</li>
<li>111111</li>
<li>iloveyou</li>
<li>master</li>
<li>sunshine</li>
<li>ashley</li>
<li>bailey</li>
<li>passw0rd</li>
<li>shadow</li>
<li>123123</li>
<li>654321</li>
<li>superman</li>
<li>gazwsx</li>
<li>michael</li>
<li>football</li>
</ol>
<p>SplashData CEO Morgan Slain urges businesses and consumers using any password on the list to change them immediately.</p>
<p>“Hackers can easily break into many accounts just by repeatedly trying common passwords,” Slain says. “Even though people are encouraged to select secure, strong passwords, many people continue to choose weak, easy-to-guess ones, placing themselves at risk from fraud and identity theft.”</p>
<p>The post <a href="http://cliftonhatfield.com/secure-wordpress-passwords/">Secure WordPress Passwords</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/secure-wordpress-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video of the Week : Party Rock Anthem</title>
		<link>http://cliftonhatfield.com/party-rock-anthem-music-video/</link>
		<comments>http://cliftonhatfield.com/party-rock-anthem-music-video/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 11:00:20 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Video Marketing]]></category>
		<category><![CDATA[LMFAO]]></category>
		<category><![CDATA[music video]]></category>
		<category><![CDATA[Party Rock Anthem]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3926</guid>
		<description><![CDATA[<p>LMFAO comes in this week with the video of the week! This feel-good hip hop song makes me want to cut-a-rug right in front of my desk. This one gets my blood pumping and just listening to it give me energy to get closer to accomplishing my goals. What about you, does Party Rock Anthem [...]</p><p>The post <a href="http://cliftonhatfield.com/party-rock-anthem-music-video/">Video of the Week : Party Rock Anthem</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><object width="610" height="340" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="610" height="340" type="application/x-shockwave-flash" src="http://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>LMFAO comes in this week with the video of the week! This feel-good hip hop song makes me want to cut-a-rug right in front of my desk. This one gets my blood pumping and just listening to it give me energy to get closer to accomplishing my goals.</p>
<p>What about you, does Party Rock Anthem make you just wanna put your dancing shoes on and bust a move?!</p>
<p>The post <a href="http://cliftonhatfield.com/party-rock-anthem-music-video/">Video of the Week : Party Rock Anthem</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/party-rock-anthem-music-video/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy Veterans Day 2011</title>
		<link>http://cliftonhatfield.com/happy-veterans-day-2011/</link>
		<comments>http://cliftonhatfield.com/happy-veterans-day-2011/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 17:14:11 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Who I am]]></category>
		<category><![CDATA[Army]]></category>
		<category><![CDATA[honor]]></category>
		<category><![CDATA[military]]></category>
		<category><![CDATA[usa]]></category>
		<category><![CDATA[veterans day. soldiers]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4123</guid>
		<description><![CDATA[<p>This is always a wonderful day to celebrate the millions of men and women who have served and are serving in our Armed Forces! As a veteran myself, I take great pride in the fact that I've serve my country and fellow countrymen and take time to remember those who made the ultimate sacrifice for our freedoms. Check out my military photos in the Photos link above.</p><p>The post <a href="http://cliftonhatfield.com/happy-veterans-day-2011/">Happy Veterans Day 2011</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p title="Clifton Hatfield's Military Photos">This is always a wonderful day to celebrate the millions of men and women who have served and are serving in our Armed Forces! As a veteran myself, I take great pride in the fact that I&#8217;ve serve my country and fellow countrymen and take time to remember those who made the ultimate sacrifice for our freedoms. Check out my <strong><a title="Clifton Hatfield's Military Photos" href="http://cliftonhatfield.com/photos/military/">military photos</a></strong></p>
<p>The post <a href="http://cliftonhatfield.com/happy-veterans-day-2011/">Happy Veterans Day 2011</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/happy-veterans-day-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a Photo For Your WordPress Blog</title>
		<link>http://cliftonhatfield.com/choosing-a-photo-for-your-wordpressblog/</link>
		<comments>http://cliftonhatfield.com/choosing-a-photo-for-your-wordpressblog/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 04:16:19 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=4021</guid>
		<description><![CDATA[<p>Personal branding has become a very strong factor in successful blogging. Every popular blog that I can think has done this very well and proudly displays their visual brand in their header. So choosing a photo or logo in this area should reflect your brand and should be reflect throughout your branding network.</p><p>The post <a href="http://cliftonhatfield.com/choosing-a-photo-for-your-wordpressblog/">Choosing a Photo For Your WordPress Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>How to choose the right photo for your blog&#8217;s header</h3>
<h3><img class="alignright size-thumbnail wp-image-4030" title="WordPress Photo Header" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/photo-header.jpg?resize=150%2C150" alt="WordPress Photo Header" data-recalc-dims="1" /></h3>
<p>I&#8217;ve built hundreds of WordPress blogs and on occasion someone will ask me, &#8220;How do I choose the best photo for my header?&#8221; There are some things you must take into account when choosing your photo. I&#8217;ve listed those things here.</p>
<h3>Personal Branding</h3>
<p>Personal branding has become a very strong factor in successful blogging. Every popular blog that I can think has done this very well and proudly displays their visual brand in their header. So choosing a photo or logo in this area should reflect your brand and should be reflect throughout your branding network.<span id="more-4021"></span></p>
<h3>Your Best Photo</h3>
<p>If your brand is centered around you, then using your own photo within your WordPress header is a no-brainer. Avoid logos, cartoons, or anything else that isn&#8217;t you. Once you&#8217;re ready to start picking which photo to use, reach for the best ones first. The best one isn&#8217;t always your favorite one either. That candid snap shot of you in some good light taken with a cell phone isn&#8217;t the best photo. You may think you look great and in the photo you may, but on a professional level it may end up looking silly in your header.</p>
<h3>High Resolution</h3>
<p>If you expect a graphic designer to do their magic, give them the quality they need. Don&#8217;t save your favorite Facebook photo because it&#8217;s low resolution. Unless you download the high resolution copy, if available. Don&#8217;t use the photo you captured on your cell phone because the lighting and quality is far too low. Choose a high resolution photo with good lighting.</p>
<h3>Point &amp; Shoot</h3>
<p>Most of today&#8217;s over-the-counter point &amp; shoot cameras will do a decent job capturing a good quality photo of you for your header. I&#8217;m not a photographer or camera expert but I would imagine a 5 megabit or higher camera would dot he job nicely.</p>
<h3>What to Wear?</h3>
<p>This really depends on your brand and target audience. It&#8217;s also common sense so I won&#8217;t spend much time on it. If you are presenting yourself as a professional, dress professional. If you are presenting yourself as someone who is professional but works 10-15 hours a week and spend the rest of your time enjoying the sun or with your family, then maybe you can get away with a Hawaiian shirt and flip flops. My point is that your outfit should reflect your brand.</p>
<h3>Hire a Photographer</h3>
<p>Saving the best for last, hiring a credited photographer is going to give you the best results and options for you to choose from. You will be able to capture your image exactly in a way you want your brand seen across the web. If you want to take this opportunity serious, then you know how important this is.Talk with your photographer to discuss outfits, props, lighting, senses, etc. Tell them your ideas and what your plans are for your photos, blog, and business.</p>
<h3>Check out this Great Headers</h3>
<p><a title="Kary Rogney" href="http://karyrogney.com" target="_blank">http://karyrogney.com</a></p>
<p><a title="Mia Davies" href="http://miadavies.com" target="_blank">http://miadavies.com</a></p>
<p><a title="Brian Fanale" href="http://brianfanale.com" target="_blank">http://brianfanale.com</a></p>
<p><a title="Ashley Hatfield" href="http://ashleyhatfield.com" target="_blank">http://ashleyhatfield.com</a></p>
<p><a title="The Network Dad" href="http://thenetworkdad.com" target="_blank">http://thenetworkdad.com</a></p>
<p><a title="Katie Freiling" href="http://katiefreiling.com" target="_blank">http://katiefreiling.com</a></p>
<p><a title="Jonathan Budd" href="http://jonathanbudd.com" target="_blank">http://jonathanbudd.com</a></p>
<p><a title="Rachel Jackson" href="http://whoisracheljackson.com" target="_blank">http://whoisracheljackson.com</a></p>
<p><a title="Darren Spruyt" href="http://darrenspruyt.com" target="_blank">http://darrenspruyt.com</a></p>
<h3>Final Thought</h3>
<p>I realize not everyone has the time or the funds for hiring a professional photographer, but point &amp; shoot cameras are widely popular now. Ask a friend, spouse, family members to take some shots of you wearing different outfits and start snapping. The header and your image are the first things to load on the page and the first thing most people will see when they land on your blog. Make that first impression impressive and deliver the imprint of your brand.</p>
<p>If you take note of my header and photo you will see that I&#8217;m not in a suit but wearing my favorite jacket and shirt. What&#8217;s on the black shirt? A man with a full beard, cut off jean shorts, no shirt, and holding a sign that says PARTY. My brand is <a title="Clifton Hatfield is The Blog Rockstar" href="http://cliftonhatfield.com/who-am-i/">The Blog Rockstar</a> and that is exactly how I had to deliver it in my header.</p>
<p>What are some of your favorite blog headers? List them in the comments below.</p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/choosing-a-photo-for-your-wordpressblog/">Choosing a Photo For Your WordPress Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/choosing-a-photo-for-your-wordpressblog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Video of the Week : Lose My Soul</title>
		<link>http://cliftonhatfield.com/lose-my-soul-music-video/</link>
		<comments>http://cliftonhatfield.com/lose-my-soul-music-video/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 11:00:21 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Video of the Week]]></category>
		<category><![CDATA[Who I am]]></category>
		<category><![CDATA[music video]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[Toby Mac]]></category>
		<category><![CDATA[video of the week]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3922</guid>
		<description><![CDATA[<p>I&#8217;ve decided to make my blog even more personal by publishing videos of the week. My blog receives a lot of visitors but many of you don&#8217;t really know much about me or the things I am into. With my Video of the Week posts, I am giving you a glimpse into what music videos [...]</p><p>The post <a href="http://cliftonhatfield.com/lose-my-soul-music-video/">Video of the Week : Lose My Soul</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><object width="610" height="443" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/coHKdhAZ9hU?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="610" height="443" type="application/x-shockwave-flash" src="http://www.youtube.com/v/coHKdhAZ9hU?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>I&#8217;ve decided to make my blog even more personal by publishing videos of the week. My blog receives a lot of visitors but many of you don&#8217;t really know much about me or the things I am into. With my Video of the Week posts, I am giving you a glimpse into what music videos I jam. If you don&#8217;t care to know, don&#8217;t bother watching the videos, but if your curiosity grabs you, please leave your feedback in the comment area letting me know what you thought! Thanks :)<br />
This week Toby Mac always brings me back to earth with his <em>Lose My Soul</em> title. This song really reminds me of the important things in life and love. What do you think about this video, how did it make you feel?</p>
<p>The post <a href="http://cliftonhatfield.com/lose-my-soul-music-video/">Video of the Week : Lose My Soul</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/lose-my-soul-music-video/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Use .htaccess File To Block Comment Spammers</title>
		<link>http://cliftonhatfield.com/use-your-htaccess-file-to-block-comment-spammers/</link>
		<comments>http://cliftonhatfield.com/use-your-htaccess-file-to-block-comment-spammers/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 01:47:50 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[fight spam comments]]></category>
		<category><![CDATA[spammers]]></category>
		<category><![CDATA[video tutorial]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3979</guid>
		<description><![CDATA[<p>We all deal with spammers infecting our precious comments and we try our best to block them using plugins like Akismet. But the truth is, some still get through. I don't have the answer to block all of them completely or tell you that you can stop using your spam filter plugin, but I do have a tip using your .htaccess file.</p><p>The post <a href="http://cliftonhatfield.com/use-your-htaccess-file-to-block-comment-spammers/">Use .htaccess File To Block Comment Spammers</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-3990" title="Fight Comment Spam" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/comment-spam.png?resize=128%2C128" alt="Fight Comment Spam" data-recalc-dims="1" />Another defense against spam comments</h3>
<p>We all deal with spammers infecting our precious comments and we try our best to block them using plugins like Akismet. But the truth is, some still get through. I don&#8217;t have the answer to block all of them completely or tell you that you can stop using your spam filter plugin, but I do have a tip using your .htaccess file. The fact is, those comments aren&#8217;t being left by people, they are being left by <del>computers</del> machines. Those machines aren&#8217;t posting a comment from your blog, they are posting the comment using simple spam scripts run on their server. You can tell your server to check if the comment is being left from your blog or from an external server (spammer). If it&#8217;s not being left from your blog, then block it.</p>
<p><strong><em>Always <a title="Full WordPress Backup : Better Safe Than Sorry" href="http://cliftonhatfield.com/full-wordpress-backup-better-safe-than-sorry/">backup</a> your .htaccess file before making any changes.</em></strong></p>
<ol>
<li>Connect to your hosting account via FTP, secure is preferred.</li>
<li>Navigate to the directory WordPress is installed, where you will see the wp-config.php file. This is usually the root directory. Download the .htaccess file.</li>
<li>Open the .htaccess file using a text editor like Notepad.</li>
<li>Copy the code below and paste it within the .htaccess file.</li>
<li>Change the fourth line to your domain name.</li>
<li>Save the .htaccess file.</li>
<li>Upload the file back to the directory. Overwrite.</li>
<li>If you found this helpful, please share on Facebook &amp; Twitter.</li>
<li>Done.</li>
</ol>
<p></p><pre class="crayon-plain-tag">RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourblog.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]</pre><p><object width="610" height="340" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="https://www.youtube.com/v/K4Abexvt6ck?version=3&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed width="610" height="340" type="application/x-shockwave-flash" src="https://www.youtube.com/v/K4Abexvt6ck?version=3&amp;hl=en_US&amp;rel=0" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>Source: <a title="How to: Deny comment posting to no referrer requests" href="http://www.wprecipes.com/how-to-deny-comment-posting-to-no-referrer-requests" rel="nofollow" target="_blank">WPRecipes.com</a></p>
<p>The post <a href="http://cliftonhatfield.com/use-your-htaccess-file-to-block-comment-spammers/">Use .htaccess File To Block Comment Spammers</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/use-your-htaccess-file-to-block-comment-spammers/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New for WordPress 3.3</title>
		<link>http://cliftonhatfield.com/new-for-wordpress-3-3/</link>
		<comments>http://cliftonhatfield.com/new-for-wordpress-3-3/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 00:30:11 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3974</guid>
		<description><![CDATA[<p>Just read WPBeginner.com&#8217;s article on what&#8217;s new for WordPress version 3.3. I&#8217;ve been playing around with beta and it&#8217;s going to be nice. Check out the article here.</p><p>The post <a href="http://cliftonhatfield.com/new-for-wordpress-3-3/">New for WordPress 3.3</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Just read WPBeginner.com&#8217;s article on what&#8217;s new for WordPress version 3.3. I&#8217;ve been playing around with beta and it&#8217;s going to be nice. Check out the article <a title="What's New with WordPress 3.3" href="http://www.wpbeginner.com/news/whats-coming-in-wordpress-3-3-features-screenshots-and-live-demo/" rel="nofollow" target="_blank">here</a>.</p>
<p>The post <a href="http://cliftonhatfield.com/new-for-wordpress-3-3/">New for WordPress 3.3</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/new-for-wordpress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Every Morning</title>
		<link>http://cliftonhatfield.com/every-morning-ritual/</link>
		<comments>http://cliftonhatfield.com/every-morning-ritual/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 03:16:35 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Who I am]]></category>
		<category><![CDATA[inspiring]]></category>
		<category><![CDATA[motivational]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3919</guid>
		<description><![CDATA[<p>Every morning after I wake up and before I get out of bed, I say two sentences. &#8220;I do not fail. I succeed at everything I do.&#8221; Do you have a morning motivational ritual?</p><p>The post <a href="http://cliftonhatfield.com/every-morning-ritual/">Every Morning</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Every morning after I wake up and before I get out of bed, I say two sentences. &#8220;I do not fail. I succeed at everything I do.&#8221; Do you have a morning motivational ritual?</p>
<p>The post <a href="http://cliftonhatfield.com/every-morning-ritual/">Every Morning</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/every-morning-ritual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Empowered Theme v2.0</title>
		<link>http://cliftonhatfield.com/introducing-empowered-theme-v2-0/</link>
		<comments>http://cliftonhatfield.com/introducing-empowered-theme-v2-0/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 16:21:41 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Empowered Blogs]]></category>
		<category><![CDATA[Empowered Theme]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[blog design]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[clifton hatfield]]></category>
		<category><![CDATA[empowered blogs]]></category>
		<category><![CDATA[empowered theme]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3883</guid>
		<description><![CDATA[<p>ETv2.0 was nearly rewritten from the ground up! New features were added while others were simplified but overall everything was improved. To make it even sweeter, you can get Your Empowered Blog for only $99. This price is very limited. Over the last 2 years, we've been selling the complete Empowered Blogs Package for $349 but we've decided to slash the price over 70% off to only $99. Crazy right?! You've got to read more...</p><p>The post <a href="http://cliftonhatfield.com/introducing-empowered-theme-v2-0/">Introducing Empowered Theme v2.0</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3897" title="facebook-page-logo" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-page-logo.jpg?resize=225%2C248" alt="" data-recalc-dims="1" />Empowered Blogs is back in town!</h3>
<p>Actually, EB never went anywhere but it has received a face-lift! We&#8217;ve totally redesigned the website among other things but what we are most excited about is the release of version 2.0!</p>
<h3>Empowered Theme Version 2.0</h3>
<p>ETv2.0 was nearly rewritten from the ground up! New features were added while others were simplified but overall <strong>everything was improved</strong>. To make it even sweeter, you can get Your Empowered Blog for only $99. This price is very limited. Over the last 2 years, we&#8217;ve been selling the complete <a title="Empowered Blogs WordPress Blog Design Company" href="http://empoweredblogs.com" target="_blank">Empowered Blogs Package</a> for $349 but we&#8217;ve decided to <em>slash the price over 70% off</em> to <strong>only $99</strong>. Crazy right?!<span id="more-3883"></span></p>
<h3>What is Empowered Blogs?</h3>
<p>Empowered Blogs is not just a theme but a total blogging package. Don&#8217;t have a WordPress blog even set up yet? Don&#8217;t know how to setup the database? Don&#8217;t worry because we set it up for you on your <a title="HostGator is recommended by Clifton Hatfield" href="http://hostgatorblogs.com" target="_blank">hosting account</a>. We have our web designer cook up some beautiful graphics for your header and background using a photo of your choice. We install &amp; setup the Empowered Theme which is our proprietary premium theme built from the ground up by lead developer, <a title="Who is Clifton Hatfield?" href="http://cliftonhatfield.com/who-is-clifton-hatfield/" target="_blank">Clifton Hatfield</a>. Once the WordPress publishing platform and Empowered Theme are installed, we adjust your core settings so be most effective then upload and active our recommended plugins.</p>
<p>Every blogger is different and because of that, you have complete control over your WordPress blog as an administrator. This means you can create as many pages as you want, manage your plugins by adding new ones or adjusting the one we install for you. You can also add, reorder, and edit your widget areas like your side bar and footer. You also have full control on your menu areas in your blog&#8217;s header so that you can add your own links to the menus or pages you&#8217;ve created or even to other websites.</p>
<h3>So What&#8217;s New with Empowered Theme v2.0?</h3>
<p><em><a title="Empowered Theme Screenshots" href="http://www.empoweredblogs.com/screenshots/" target="_blank">Check out some screenshots or just a few of the new features.</a></em></p>
<p>We&#8217;ve listed only a few of the new or improved features of the Empowered Theme. The Empowered Theme is still packed with many of the same features as before, like the infamous popup Video Widget, welcome box, signature, and Google Analytics.</p>
<h4><strong>Video Tutorials &amp; User Manual</strong></h4>
<p>Every blogger has a different experience level when it comes to being &#8216;web savvy&#8217; but doesn&#8217;t mean blogging should only be for those who can wield the web with their eyes closed. <strong>We encourage everyone to blog because everyone has something important to share with the world.</strong> For this reason, we&#8217;ve add 35+ Professional Video Tutorials that cover how to use the tools and features that the WordPress publishing platform has to offer. Each video is shot in high definition and lets you pause and play making it easy to follow along. <a title="WordPress video tutorials" href="http://www.empoweredblogs.com/professional-wordpress-video-tutorials/" target="_blank">Watch a sample tutorial.</a></p>
<p>The <strong>User Manual</strong> is like that handbook where you can find anything you are looking for when it comes to using your WordPress Dashboard. It&#8217;s packed with screenshots and step-by-step instructions on how to use each little detail of the core features of WordPress.</p>
<h4>Layout Options</h4>
<p>Like most blogs, your sidebar is displayed on the right side of your blog&#8217;s content. However, with the Empowered Theme&#8217;s Layout Options, you can easily choose to move the sidebar to the left side of the content or hide it completely. Within the Layout Options, you can also choose to display full post content by selecting the Content option or to display just the first 55 words of a post and its first image by selecting the Excerpt option. The Excerpt option is great so a clean &amp; organized homepage. Excerpts also have <a title="SEO benefits for WordPress Excerpt with the More Tag" href="http://cliftonhatfield.com/wordpress-excerpt-with-the-more-tag/" target="_blank">search engine optimization</a> benefits.</p>
<h4>Post Formats</h4>
<p>Post formats are used in the Empowered Theme to display the proper format on your homepage for the specific post when using post excerpts on the homepage. e.g. When you publish a video post, you choose the Video post format so that the video will be displayed on the homepage properly. Or if you have something quick to share with the world you can publish it with the Aside post format to keep it short and sweet.</p>
<h4>Typography</h4>
<p>Not everyone likes the same things and this applied to fonts, colors, and styles on their blog too. We&#8217;ve added typography options so you can adjust font face, style, color, and size very easily from your Dashboard&#8217;s Design Options. <em><a title="Empowered Theme Typography Screenshots" href="http://www.empoweredblogs.com/screenshots/" target="_blank">Screenshots here</a></em> Want to be festive for the holidays? Choose the font face &#8216;Mountains of Christmas&#8217; for your Post Titles and help spread Christmas cheer!</p>
<h4>All-New Contact Form</h4>
<p>The contact form is built-in to the Empowered Theme as an added plugin giving you the flexibility to use a third-party contact form if you choose. Our new design makes the form easier to use for your visitors contacting you and is easy-on-the-eyes. It uses the built-in WordPress wp_mail function so you know that our contact form will alays be compatible with future upgrades and improve as WordPress improves.</p>
<h4>Improved Slideshow</h4>
<p>Our slideshow feature was completely rewritten. None of the old code was used because we wanted to make sure v2.0 got everything it deserved. The new slideshow feature uses WordPress custom post types to give you amazing control over your slides. Now you can add to your slides, images, videos, opt-in forms, and anything that you can add to your typical blog posts&#8230;.but this time&#8230;it&#8217;s displayed in your slideshow! You have options to adjust the time between transitions, the type of transition, and what to do after the last slide has appeared, like start-over or hide the slideshow. Manage your slides like you do your posts, draft them, trash them, or publish them. It&#8217;s so flexible and still so simple. <a title="Empowered Theme Slideshow Screenshots" href="http://www.empoweredblogs.com/screenshots/" target="_blank">Screenshots here</a></p>
<h4>Hot Styles &amp; Designs</h4>
<p>Using CSS3, we wanted to keep things clean &amp; professional but will be universal enough to mesh with any blog design you wanted. We chose neutral colors for our fonts, widgets, lists, and layout. These colors will blend nicely with any color scheme you choose for your custom graphics and header.</p>
<h4>Facebook &amp; Twitter Share Buttons</h4>
<p>Facebook is also changing and improving their platform and that includes the social plugins used outside of their site, that includes the Facebook Like button. We use the Facebook Open Graph protocol &amp; javascript library to display the Like button on each of your Posts and Pages. This is the most effective way to share your blog&#8217;s content on the social networking giant, Facebook. Choose what image is displayed on Facebook by setting a Featured Image with each blog post. This gives you optimum control.</p>
<p>We use the native Twitter share button right from twitter.com so you know that the code works. Add your username into the settings and each time your post is shared on Twitter, you will be mentioned.</p>
<p>Both Facebook and Twitter share buttons are built right into the theme so you are guaranteed they will always fit nicely into the layout and never get in the way of your content. No need to install third-party Facebook or Twitter plugins because it&#8217;s all built-in for you.</p>
<h3>Clifton Hatfield</h3>
<p>This article was written by Clifton Hatfield who is the founder of Empowered Blogs and lead developer of the Empowered Theme. He works personally with as many client&#8217;s as possible to uphold the outstanding reputation held by Empowered Blogs. You can learn more about Clifton at <a title="Who is Clifton Hatfield?" href="http://cliftonhatfield.com/who-is-clifton-hatfield/" target="_blank">Who is Clifton Hatfield?</a></p>
<p>The post <a href="http://cliftonhatfield.com/introducing-empowered-theme-v2-0/">Introducing Empowered Theme v2.0</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/introducing-empowered-theme-v2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brand New Day &#8211; Video of the Week</title>
		<link>http://cliftonhatfield.com/brand-new-day-video-of-the-week/</link>
		<comments>http://cliftonhatfield.com/brand-new-day-video-of-the-week/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 03:50:21 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Video Marketing]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[music video]]></category>
		<category><![CDATA[Trevor Hall]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3885</guid>
		<description><![CDATA[<p>Trevor Hall has been a real inspiration for my wife and I over the last few years. His songs, words, and rhythm are also so positive and uplifting. He have seen him in concert 4 times and always grab tickets anytime he makes it around us. Check out one of his newer singles, Brand New Day, and be inspired to [...]</p><p>The post <a href="http://cliftonhatfield.com/brand-new-day-video-of-the-week/">Brand New Day &#8211; Video of the Week</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><object width="615" height="342" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/5Ywiu9r-sv0?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="615" height="342" type="application/x-shockwave-flash" src="http://www.youtube.com/v/5Ywiu9r-sv0?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p><a title="Trevor Hall Music" href="http://www.trevorhallmusic.com/" target="_blank">Trevor Hall</a> has been a real inspiration for <a title="Ashley Hatfield - The Blogging Wife" href="http://ashleyhatfield.com" target="_blank">my wife</a> and I over the last few years. His songs, words, and rhythm are also so positive and uplifting. He have seen him in concert 4 times and always grab tickets anytime he makes it around us. Check out one of his newer singles, <a title="Brand New Day - Trevor Hall Music" href="http://www.youtube.com/watch?v=5Ywiu9r-sv0&amp;ob=av2e" target="_blank">Brand New Day, </a>and be inspired to take advantage of this brand new day! Love is love.</p>
<p>The post <a href="http://cliftonhatfield.com/brand-new-day-video-of-the-week/">Brand New Day &#8211; Video of the Week</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/brand-new-day-video-of-the-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Halloween 2011</title>
		<link>http://cliftonhatfield.com/happy-halloween-2011/</link>
		<comments>http://cliftonhatfield.com/happy-halloween-2011/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 14:53:08 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Empowered Theme]]></category>
		<category><![CDATA[Empowered Theme 2.0]]></category>
		<category><![CDATA[Happy Halloween]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3880</guid>
		<description><![CDATA[<p>Happy Halloween 2011! Just in time to showcase the new typography options for Empowered Theme version 2.0&#8230;Bloody Post Titles! Also, ET2.0 now supports the aside format (e.g. this post)</p><p>The post <a href="http://cliftonhatfield.com/happy-halloween-2011/">Happy Halloween 2011</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Happy Halloween 2011! Just in time to showcase the new typography options for Empowered Theme version 2.0&#8230;Bloody Post Titles! Also, ET2.0 now supports the aside format (e.g. this post)</p>
<p>The post <a href="http://cliftonhatfield.com/happy-halloween-2011/">Happy Halloween 2011</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/happy-halloween-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview with Clifton Hatfield</title>
		<link>http://cliftonhatfield.com/interview-with-clifton-hatfield/</link>
		<comments>http://cliftonhatfield.com/interview-with-clifton-hatfield/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 03:13:32 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Who I am]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[Tristan Azcona]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3862</guid>
		<description><![CDATA[<p>Recently, Tristan Azcona interviewed me about various topics on the internet. We discussed the recent &#038; upcoming changes to Facebook, blogging, internet marketing, and my free support group on Facebook. I'd love for you to head over to his blog and watch this amazing interview. Well done, Tristan.</p><p>The post <a href="http://cliftonhatfield.com/interview-with-clifton-hatfield/">Interview with Clifton Hatfield</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently, <a title="About Tristan Azcona" href="http://tristanazcona.com/about-tristan-azcona/" target="_blank">Tristan Azcona</a> interviewed me about various topics on the internet. We discussed the recent &amp; upcoming changes to Facebook, <a title="A Message For Beginner Bloggers" href="http://cliftonhatfield.com/a-message-for-beginner-bloggers/" target="_blank">blogging</a>, internet marketing, and my free <a title="WordPress, SEO, and Internet Questions Facebook Group" href="http://fb.com/groups/internet.questions/" target="_blank">support group on Facebook</a>. I&#8217;d love for you to head over to his blog and watch this amazing interview. Well done, Tristan.</p>
<p style="text-align: center;"><a href="http://tristanazcona.com/interview-with-the-blog-rockstar" target="_blank"><img class="aligncenter size-full wp-image-3864" title="Interview with Tristan Azcona" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/interview.jpg?resize=555%2C334" alt="Interview with Tristan Azcona" data-recalc-dims="1" /></a></p>
<p>The post <a href="http://cliftonhatfield.com/interview-with-clifton-hatfield/">Interview with Clifton Hatfield</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/interview-with-clifton-hatfield/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Save Your Facebook Photos, Videos, &amp; Life</title>
		<link>http://cliftonhatfield.com/save-your-facebook-photos-videos-life/</link>
		<comments>http://cliftonhatfield.com/save-your-facebook-photos-videos-life/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 16:43:55 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media News]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[Download Facebook]]></category>
		<category><![CDATA[Facebook Archive]]></category>
		<category><![CDATA[Facebook Tutorial]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3828</guid>
		<description><![CDATA[<p>You might have asked yourself, "How do I save my Facebook Photos, Videos, and Messages?". I've put together a tutorial to show you how to save everything you've put on Facebook and download it in one compressed file. A simple three step process that ensures you own all your content on Facebook.</p><p>The post <a href="http://cliftonhatfield.com/save-your-facebook-photos-videos-life/">Save Your Facebook Photos, Videos, &#038; Life</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>How to save your Facebook Profile, Photos, Videos, Messages, etc.</h3>
<p>You might have asked yourself, &#8220;How do I save my Facebook Photos, Videos, and Messages?&#8221;. I&#8217;ve put together a tutorial to show you how to save everything you&#8217;ve put on Facebook and download it in one compressed file.</p>
<p>Facebook has some amazing changes rolling out next week and one of the biggest changes is the Timeline profile. I won&#8217;t cover any details about the <a title="Facebook Timeline" href="http://mashable.com/2011/09/22/facebook-timeline-zuckerberg%e2%80%99s-biggest-gamble-yet/" target="_blank">Facebook Timeline</a> because there are already some many posts available across the internet about that topic.<span id="more-3828"></span></p>
<h3>Start compressing your Facebook content</h3>
<p>The first step is to initiate the compression of your Facebook content by going to your Account Settings page. Click on the down-arrow and select Account Settings. Click on the &#8220;Download a copy of your Facebook data&#8221; link.</p>
<p><img class="aligncenter size-full wp-image-3841" title="Download Facebook - Compress" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/download-facebook1.jpg?resize=580%2C322" alt="Download Facebook - Compress" data-recalc-dims="1" /></p>
<h3>Start the Download</h3>
<p>You&#8217;ll be directed to the Start Download Archive page of your account where you&#8217;ll see information about the content that will be downloaded and what wont be downloaded. Review the details and click Start My Archive.</p>
<p><img class="aligncenter size-full wp-image-3847" title="Start Download Facecbook" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/start-download-facebook.jpg?resize=580%2C289" alt="Start Download Facecbook" data-recalc-dims="1" /></p>
<h3>Download Archive Pending</h3>
<p>The status is pending while the data is compressed. Depending on how much content, video, photos, etc you have on your account will determine the amount of time it takes to compress.</p>
<p><img class="aligncenter size-full wp-image-3845" title="Pending Download Facebook Data" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/pending-download-facebook.jpg?resize=580%2C322" alt="Pending Download Facebook Data" data-recalc-dims="1" /></p>
<h3>Archive Finished Compressing, Download</h3>
<p>Once your Facebook data has been compressed you can click on the Download Archive button. Before you begin your download, make sure you have plenty of storage space on your hard drive. My archive was over 1GB.</p>
<p><img class="aligncenter size-full wp-image-3849" title="Archive Facebook" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/download-archive-facebook1.jpg?resize=580%2C322" alt="Archive Facebook" data-recalc-dims="1" /></p>
<h3>Re-enter Your Password</h3>
<p>Before you can start the download, you will be asked to re-enter your Facebook password. This is to protect your content from anyone how may have found access to your account, i.e. left logged in at the library.</p>
<p><strong>Please click the Like button and share this information with your friends! This is important!</strong></p>
<p><img class="aligncenter size-full wp-image-3852" title="Re-enter Facebook Password" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/reenter-password.jpg?resize=580%2C322" alt="Re-enter Facebook Password" data-recalc-dims="1" /></p>
<p>Additional information about downloading your Facebook data can be found <a title="Facebook Download Content &amp; Data" href="https://www.facebook.com/help/?topic=download" target="_blank">here</a>.</p>
<p>The post <a href="http://cliftonhatfield.com/save-your-facebook-photos-videos-life/">Save Your Facebook Photos, Videos, &#038; Life</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/save-your-facebook-photos-videos-life/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Help Them Spend More Time On Your Blog</title>
		<link>http://cliftonhatfield.com/help-them-spend-more-time-on-your-blog/</link>
		<comments>http://cliftonhatfield.com/help-them-spend-more-time-on-your-blog/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 03:13:49 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[facebook gallery plugin]]></category>
		<category><![CDATA[Linkwithin]]></category>
		<category><![CDATA[photo galleries]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[visitor time]]></category>
		<category><![CDATA[wordpress contest]]></category>
		<category><![CDATA[wordpress quiz]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3777</guid>
		<description><![CDATA[<p>Outside of having rockin' post content and awesome free information, there are other ways to engage your visitors and help them stay on your blog longer. I've put together a list below with a short excerpt for each.</p><p>The post <a href="http://cliftonhatfield.com/help-them-spend-more-time-on-your-blog/">Help Them Spend More Time On Your Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3779" title="Time Spent on a blog" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/time-spent-on-blog.png?resize=225%2C225" alt="Time Spent on a blog" data-recalc-dims="1" />How to get people to spend more time on your blog</h3>
<p>Outside of having rockin&#8217; post content and awesome free information, there are other ways to engage your visitors and help them stay on your blog longer. I&#8217;ve put together a list below with a short excerpt for each tip.</p>
<h3>Video Library</h3>
<p>Do you have a <a title="Clifton's YouTube Channel" href="http://youtube.com/user/cliftonh" target="_blank">YouTube Channel</a>? If you&#8217;re are blogger then you probably have an account on YouTube with some videos. If not, pick your favorite videos to share with your visitors by <a title="Video Embedding in your posts and pages" href="http://cliftonhatfield.com/video-embedding-in-your-posts-and-pages/">embedding the video within a post</a> and add a brief summary of why you like the video. Then, encourage the viewers to leave their feedback in the comment area.<span id="more-3777"></span></p>
<h3>Photo Galleries are fun</h3>
<p>Videos are fun too but photos sometimes capture the most amazing moments. Share those with your visitors. People love looking at photos. Have you personally engaged with your readers at an event or conference? Be sure to publish those photos in your photo galleries on your blog and let them know to check out their photo. People love seeing themselves. I&#8217;ve put together a video tutorial on how to set up the built-in <a title="Create a Photo Gallery in WordPress" href="http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/">WordPress photo gallery </a>function. Check out this awesome free <a title="Facebook Gallery for WordPress" href="http://cliftonhatfield.com/facebook-gallery-for-wordpress/">Facebook Photo Gallery Plugin</a> that lets you display your Facebook Page Photo Albums right on your blog.</p>
<h3>Quiz or Contest</h3>
<p>Do you have a large following or high readership? Hosting a contest can really engage your fans and be a lot of fun. Remember to look into the legalities of it too. A quiz can be fun for those frequent readers and a fun informative activity.</p>
<h3>Don&#8217;t just suggest related blog posts</h3>
<p>Popular WordPress plugin like <a title="WordPress Suggest Blog Posts Plugin" href="http://linkwithin.com" target="_blank">Linkwithin</a> uses their algorithm to suggest related blog posts to the current reader. That is cool, but boring. Although it takes a little more time, you can manually suggest additional reading at the bottom of the post but instead of saying <strong>&#8220;Suggested Blog Posts&#8221;</strong>, try something more interesting like <strong>&#8220;Visitors who read this blog posts also read&#8230;&#8221;</strong> People want to know what other people are doing. If you let them know that someone who read this post also read another post, that visitor is likely to follow in their foot steps.</p>
<h3>Internal Linking</h3>
<p>If you are anything like me when writing a blog post, you don&#8217;t stop and think about linking to your other blog posts at the same time. So here is what I do. Once finished writing, I read through the post again before publishing it live. I look for keywords or keyphrases that I can convert to links to connect to my other <a title="Clifton's Blog Posts" href="http://cliftonhatfield.com/blog-sitemap/">blog posts</a>. This is a great <a title="Search Engine Optimization" href="http://cliftonhatfield.com/category/blogging-tools/seo-blogging-tools/">SEO tip</a> and gives the reader a place to learn more about the content referenced within your post.</p>
<h3>Final Thought</h3>
<p>When you&#8217;re looking for ways to further engage your readers and have them spend more time on your blog, you must think &#8220;outside the box.&#8221; Guess what! The world has gone social and people spend more time on social media sites like Facebook and YouTube watching videos and looking at photos. They want to know what other people are doing and what they&#8217;ve already done. Use those same guidelines to entertain and engage with your visitors encapsulating them into your blog. Just have fun with it. If something doesn&#8217;t work so well&#8230;move on to the next idea. At least you tried it.</p>
<p>The post <a href="http://cliftonhatfield.com/help-them-spend-more-time-on-your-blog/">Help Them Spend More Time On Your Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/help-them-spend-more-time-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>September 11, 2001</title>
		<link>http://cliftonhatfield.com/september-11-2001/</link>
		<comments>http://cliftonhatfield.com/september-11-2001/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 04:01:40 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Who I am]]></category>
		<category><![CDATA[9-11]]></category>
		<category><![CDATA[Army]]></category>
		<category><![CDATA[New York]]></category>
		<category><![CDATA[September 11th 2001]]></category>
		<category><![CDATA[TWorld Trade Centers]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3762</guid>
		<description><![CDATA[<p>I think about the 9-11 terror attacks often as I am sure most of us do. It's a date that will be read about in history books, and told to our generations after us. We will talk about how it changed our lives, our country, and our freedom. Where we stood when we heard that news and the emotions that overcame our bodies. We will continue to hold tributes and ceremonies to remember those who we lost that day and everyday after as a result of the attacks.</p><p>The post <a href="http://cliftonhatfield.com/september-11-2001/">September 11, 2001</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="size-medium wp-image-3763 alignright" title="September 11th, 2001 Falling Man" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/fallingman-lg.jpg?resize=225%2C293" alt="September 11th, 2001 Falling Man" data-recalc-dims="1" />September 11th, 2001 is a day that will live in our hearts and minds forever.</h3>
<p>The morning of September 11th, 2001, I was sitting in a classroom at Fort Gordon, Georgia for my 31C(harlie) training. I was in phase 4 of basic training.</p>
<p>After graduating from Fort Knox just a week earlier, I was bused down to Georgia to continue my training in military communication. One morning in the middle of class, we were released on a 15 minute break down the hall. About 30 of us were in the break room doing push ups, not because we were in trouble but because we were pumped up on caffeine pills we had taken that morning before our physical training began at 3AM. Someone came down the hall to tell us that a plane had hit one of the World Trade Centers. My immediate thought was that a small single engine plane had mistakenly clipped the building and it made the news. I was wrong.</p>
<h3>My World Turned Upside-Down</h3>
<p>Before we were let out of that morning class, the entire world turned upside-down and I was in the middle of an Army Post&#8230;everything went into lockdown. Things went from bad to worse around us and we were left out of the stream of information. While the rest of the world was glued to the news, we were very limited in the exposure we were able to get about what had happened and what was happening to the world we lived in.</p>
<h3>War on Terror</h3>
<p>I enlisted into the military for several reasons but none of those reasons was to go to war. At the time, I was just out of high school and there really wasn&#8217;t much of any threat that I was aware of going on. Joining the military seemed like a new adventure, a way to learn new things, do something that no one around me was doing, and many other reasons.</p>
<p>After graduating from my final days at basic training, I was finally exposed to everything that was happening around me. At that time, I was still unaware of how much that morning on September 11th, 2001 changed my entire world. We were launching a War on Terrorism.</p>
<h3>Iraq &amp; Kosovo</h3>
<p>President Bush began sending American Troops to the Middle East to take on those who jeopardize our future, our freedom, our home. I was ordered to Indiana to begin the first phase of training in preparation for this war. We spent several weeks unaware of what our role was going to be in this war but we knew one thing, that this was what we were trained to do. Within hours of getting on a plane, we did not know if we would heading to the sands of Iraq or the mountains of the Balkans. We were selected to fly into Kosovo and help to keep the peace within a nation NATO invaded in 1999. I served my time in Kosovo as did many others did before and after me but it all happened because of what happened that morning on 9-11.</p>
<h3>My Tribute</h3>
<p>I think about the 9-11 terror attacks often as I am sure most of us do. It&#8217;s a date that will be read about in history books, and told to our generations after us. We will talk about how it changed our lives, our country, and our freedom. Where we stood when we heard that news and the emotions that overcame our bodies. We will continue to hold tributes and ceremonies to remember those who we lost that day and everyday after as a result of the attacks.</p>
<p>The greatest tribute to that day which will survive in infamy forever will be to help the memory move through time and be passed through the minds of the generations below us.</p>
<h3>The Falling Man</h3>
<p>Why I chose the infamous The Falling Man photo to accompany this 9-11 tribute is because of what I see when I stare into the image. From the very first time I viewed this photo, I did not see a falling man. I saw a super hero. A super hero flying around the towers, up and down the structures, catching those that he could save. Maybe not physically but in spirit. He might as well have been an Angel. It&#8217;s a vision of courage, strength, and Faith. His arms tucked tightly to his sides with a radiance of calmness to his posture. <em>Through the last few moments of his life, he knew everything was going to be alright</em>.</p>
<p><em>Questions about the photo? Want to know more about The Falling Man? View the Wikipedia listing, <a title="The Falling Man" href="http://en.wikipedia.org/wiki/The_Falling_Man" target="_blank">The Falling Man</a>.</em></p>
<p>The post <a href="http://cliftonhatfield.com/september-11-2001/">September 11, 2001</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/september-11-2001/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My SEO Resources</title>
		<link>http://cliftonhatfield.com/seo-resources/</link>
		<comments>http://cliftonhatfield.com/seo-resources/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 03:18:13 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3771</guid>
		<description><![CDATA[<p>Search Engine Optimization (SEO) SEO is an acronym for “search engine optimization” or “search engine optimizer.” Deciding to hire an SEO is a big decision that can potentially improve your site and save time, but you can also risk damage to your site and reputation.</p><p>The post <a href="http://cliftonhatfield.com/seo-resources/">My SEO Resources</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-3772" title="SEO Resources" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/seo-resources.png?resize=128%2C128" alt="SEO Resources" data-recalc-dims="1" />Search Engine Optimization (SEO)</h3>
<p><a title="SEO is an acronym for “search engine optimization” or “search engine optimizer.” Deciding to hire an SEO is a big decision that can potentially improve your site and save time, but you can also risk damage to your site and reputation" href="http://www.google.com/support/webmasters/bin/answer.py?answer=35291" target="_blank">Search Engine Optimization (SEO)</a> SEO is an acronym for “search engine optimization” or “search engine optimizer.” Deciding to hire an SEO is a big decision that can potentially improve your site and save time, but you can also risk damage to your site and reputation.</p>
<h3>SEO-Theory.com</h3>
<p><a title="Algorithm analysis, Web community relationship analysis, SEO practices and techniques, industry news, etc. " href="http://www.seo-theory.com/" target="_blank">SEO-Theory.com</a> Algorithm analysis, Web community relationship analysis, SEO practices and techniques, industry news, etc.</p>
<h3>SEOMoz.org</h3>
<p><a title="SEOmoz PRO combines campaign-based monitoring, actionable recommendations, and premium access to the web’s largest SEO community" href="http://seomoz.org/" target="_blank">SEOMoz.org</a> SEOmoz PRO combines campaign-based monitoring, actionable recommendations, and premium access to the web’s largest SEO community.</p>
<h3>What is SEO?</h3>
<p><a title="Search engine optimization (SEO) is the process of improving the visibility of a website or a web page in search engines via the “natural” or un-paid (“organic” or “algorithmic”) search results." href="http://en.wikipedia.org/wiki/Search_engine_optimization" target="_blank">What is SEO?</a> Search engine optimization (SEO) is the process of improving the visibility of a website or a web page in search engines via the “natural” or un-paid (“organic” or “algorithmic”) search results.</p>
<p>The post <a href="http://cliftonhatfield.com/seo-resources/">My SEO Resources</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/seo-resources/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facebook For Business</title>
		<link>http://cliftonhatfield.com/facebook-for-business/</link>
		<comments>http://cliftonhatfield.com/facebook-for-business/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 02:18:14 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Facebook Ads]]></category>
		<category><![CDATA[FB Pages]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3751</guid>
		<description><![CDATA[<p>Facebook has a new resource center and this one is important, Facebook for Business. There, you'll learn how Facebook products can be used together to grow your business and community of customers. You'll also find step-by-step best practices for creating Pages, Ads, Sponsored Stories, and more.</p><p>The post <a href="http://cliftonhatfield.com/facebook-for-business/">Facebook For Business</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Facebook has a new resource center and this one is important, <a title="Facebook For Business" href="http://www.facebook.com/business" target="_blank">Facebook for Business</a>. There, you&#8217;ll learn how Facebook products can be used together to grow your <a title="Facebook Page For Small Businesses : Part 1" href="http://cliftonhatfield.com/facebook-pages-for-small-businesses-part-1/" target="_blank">business</a> and community of customers. You&#8217;ll also find step-by-step best practices for <a title="How To Create A Facebook Page" href="http://cliftonhatfield.com/how-to-create-a-facebook-page/" target="_blank">creating Pages</a>, Ads, Sponsored Stories, and more.<span id="more-3751"></span></p>
<p><iframe src="http://clftn.co/video.php?video=http://cdn.clftn.co/videos/facebook-for-business.mp4&amp;image=http://cliftonhatfield.com/wp-content/uploads/facebook-for-business-video.jpg" frameborder="0" width="520" height="320"></iframe></p>
<p>The post <a href="http://cliftonhatfield.com/facebook-for-business/">Facebook For Business</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/facebook-for-business/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Got Recommend Products? Recommend Them Correctly</title>
		<link>http://cliftonhatfield.com/got-recommend-products-recommend-them-correctly/</link>
		<comments>http://cliftonhatfield.com/got-recommend-products-recommend-them-correctly/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 03:19:32 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Blogging bad habits]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[Recommend Products]]></category>
		<category><![CDATA[sale products]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3726</guid>
		<description><![CDATA[<p>You want to show your visitors that each product is worthy of its own article. Be descriptive why you recommend that product and the success you've had using it. Share your experience with it. Simply listing it on a page with several other products is boring, disorganized, and too much of just an advertisement.</p><p>The post <a href="http://cliftonhatfield.com/got-recommend-products-recommend-them-correctly/">Got Recommend Products? Recommend Them Correctly</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3727" title="Recommend Products" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/recommend-products.png?resize=225%2C225" alt="Recommend Products" data-recalc-dims="1" />You may have picked up a bad habit</h3>
<p>I work with new bloggers and internet marketers nearly everyday. I see them make many of the same mistakes over and over again. That is totally ok because I&#8217;m here to give them a helping hand. Unfortunately, they often pick up these bad habits from &#8220;seasoned&#8221; internet marketers. <strong>One of the most common bad habits I see happening is promoting your recommended products the wrong way.<span id="more-3726"></span></strong></p>
<h3>What the problem is</h3>
<p>You may have already fallen victim to this bad habit or you know someone who has. You&#8217;re told that you need to have a &#8220;Recommend Products&#8221; page where people will flock to it and buy everything you recommend and you make a small commission from each sale. Well in a perfect world that would be awesome. However, there are some things that must happen before that becomes a reality. The most important one is acquire Trust. You can&#8217;t successfully recommend a product or service to someone unless they trust you or acknowledge you as an expert. Now gaining their trust is outside the scope of this article but I will tell you what to do once you have their trust and the proper way to recommend those products to them.</p>
<h3>List of Benefits</h3>
<p>I always encourage people who choose to have a &#8220;recommend products/resources&#8221; type page to avoid doing such. Instead, make it a Category. First I will list the benefits then tell you how to set it up properly.</p>
<ol>
<li>Additional content for blog post chronicle.</li>
<li>Search Engine Optimization</li>
<li>Better focus on a single product</li>
<li>Encourage more comments</li>
<li>Boost social media sharing of a specific product</li>
<li>Less of that &#8220;spammy&#8221; advertising feeling</li>
<li>Show it&#8217;s importance in article form</li>
<li>Many more&#8230;.</li>
</ol>
<h3>How to properly recommend products from your blog</h3>
<ol>
<li>Go to Posts &gt; Categories and make a new category called &#8220;Recommended Products&#8221;.</li>
<li>Go to Posts &gt; Add New. Title your blog post with the product keywords e.g. &#8220;Why I Use My Leads System Pro&#8221;.</li>
<li> Then, continue to write/list reasons why you use the service and why you recommend it to anyone.</li>
<li>Add your banner and any other videos, affiliate link, promo material to the post body.</li>
<li>At the bottom of that post, suggest your other recommended products with links to their post. So visitors can see what other products you recommend. e.g. My other recommend products are&#8230;.</li>
<li>Add 4-5 keywords into the Tags box on the right hand side.</li>
<li>Check the &#8220;Recommended Products&#8221; checkbox in the Categories box on the right hand side.</li>
<li>Go to Appearance &gt; Menus and add the &#8220;Recommend Products&#8221; category to your menu. When someone clicks on that link, they will see the <a title="WordPress Excerpt with the More Tag" href="http://cliftonhatfield.com/wordpress-excerpt-with-the-more-tag/">excerpts</a> of all the recommended products on a single page. From there, they can read more about the product on its individual page.</li>
</ol>
<p><strong>UPDATE 8-10-2011</strong></p>
<p>I forgot to mention something. By making each product a blog post, you can organize that product into multiple categories. For example, a recommended product might be the <a title="Organic Traffic For Blogs" href="http://cliftonhatfield.com/organic-traffic-for-blogs/">SEOPressor WordPress Plugin</a> that can be added to the categories Recommended Products, <a title="Easy Way To Make NoFollow Outbound Links : SEO Tip" href="http://cliftonhatfield.com/easy-way-to-make-nofollow-outbound-links-seo-tip/">SEO</a>, <a title="My WordPress Plugins" href="http://cliftonhatfield.com/my-wordpress-plugins/">WordPress Plugins</a>, and <a href="http://cliftonhatfield.com/category/blogging-tools/">Blogging</a>.</p>
<h3>Final Thought</h3>
<p>You want to show your visitors that each product is worthy of its own article. Be descriptive why you recommend that product and the success you&#8217;ve had using it. Share your experience with it. Simply listing it on a page with several other products is boring, disorganized, and too much of just an advertisement. When you recommend a restaurant to someone, you don&#8217;t play the commercial for them. Do you? No&#8230;You tell them how much you enjoy their food, service, and about their value in the price. Recommending products on your blog should be treated the same way.</p>
<p style="text-align: center;"><em><strong>What are your thoughts? </strong></em></p>
<p style="text-align: center;"><em><strong>Have you noticed this on other blogs or have you fallen for this bad habit?</strong></em></p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/got-recommend-products-recommend-them-correctly/">Got Recommend Products? Recommend Them Correctly</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/got-recommend-products-recommend-them-correctly/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>My WordPress Plugins</title>
		<link>http://cliftonhatfield.com/my-wordpress-plugins/</link>
		<comments>http://cliftonhatfield.com/my-wordpress-plugins/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 21:05:30 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[clifton's lightbox plugin]]></category>
		<category><![CDATA[comment responder]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[facebook gallery]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3696</guid>
		<description><![CDATA[<p>Over the years, I have written many WordPress plugins. Some have been for myself. Some have been for others. Some have been paid jobs. And some have been for fun. I have complied a list of some of my favorites below.</p><p>The post <a href="http://cliftonhatfield.com/my-wordpress-plugins/">My WordPress Plugins</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3701" title="WordPress Plugins" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/plugins.png?resize=225%2C225" alt="WordPress Plugins" data-recalc-dims="1" />Over the years, I have written many WordPress plugins. Some have been for myself. Some have been for others. Some have been paid jobs. And some have been for fun. I have complied a list of some of my favorites below.</p>
<h3>Clifton&#8217;s Lightbox Plugin</h3>
<p>A <strong>lightbox plugin</strong> lets your visitors opt into your email list through a popup or lightbox that appears after entering your blog. There many different available settings. Change how frequent the lightbox appears for your visitors. Delay its appearance in seconds after the page loads. Add an image or video (<a title="Clifton Hatfield's YouTube Channel" href="http://youtube.com/user/cliftonh" target="_blank">YouTube</a>). Add a privacy message and more. You can download this plugin for free at <a href="http://lightbox.cliftonhatfield.com">http://lightbox.cliftonhatfield.com</a></p>
<h3>Facebook Gallery for WordPress</h3>
<p>Want a simple way to mange and add a photo gallery to your WordPress blog in just a few minutes? This plugin displays your Facebook Page (aka Fan Page) photo albums on any post or page. It&#8217;s very simple to setup and use. This plugin can be downloaded at <a title="Facebook Gallery for WordPress Plugin" href="http://cliftonhatfield.com/facebook-gallery-for-wordpress/">http://cliftonhatfield.com/facebook-gallery-for-wordpress/</a></p>
<p>The post <a href="http://cliftonhatfield.com/my-wordpress-plugins/">My WordPress Plugins</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/my-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Help On Facebook</title>
		<link>http://cliftonhatfield.com/wordpress-help-on-facebook/</link>
		<comments>http://cliftonhatfield.com/wordpress-help-on-facebook/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 23:05:29 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Facebook Groups]]></category>
		<category><![CDATA[SEO Help]]></category>
		<category><![CDATA[wordpress help]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3673</guid>
		<description><![CDATA[<p>So, if you are interested in learning more about WordPress, SEO, or the Internet in general then I invite you to submit a request to join by clicking on the link below. Once joined, you can ask and answer questions for those who seek help as well as learn somethings you may not have already known.</p><p>The post <a href="http://cliftonhatfield.com/wordpress-help-on-facebook/">WordPress Help On Facebook</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3674" title="WordPress help on Facebook" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-help-on-facebook.png?resize=225%2C225" alt="WordPress help on Facebook" data-recalc-dims="1" />Early last week I started a WordPress Support Group on Facebook called <a title="WordPress Help" href="http://www.facebook.com/groups/109578262474380/" target="_blank"><strong>WordPress, SEO, &amp; Internet Questions</strong></a>. It&#8217;s a collective place where myself and some of my knowledgeable internet gurus can answer novice questions about those topics.</p>
<h3>Why did I start the group?</h3>
<p>Well if you received my email last week about trying to free up more of my time from answering loads of questions every week then you already have the answer. I am quickly finding out that this has been a great way for me to answer questions open to a community of interested listeners. Previously, I was answering questions over and over again through email and often the same questions. I love to help but with the amount of support I was providing it has become very inefficient. <span id="more-3673"></span></p>
<h3>How to request to join</h3>
<p>So, if you are interested in learning more about <strong>WordPress, SEO, or the Internet</strong> in general then I invite you to submit a request to join by clicking on the link below. Once joined, you can ask and answer questions for those who seek help as well as learn somethings you may not have already known.</p>
<p>Join my group ==&gt; <a href="http://www.facebook.com/groups/109578262474380/">http://www.facebook.com/groups/109578262474380/</a></p>
<p>Once you are a member, I welcome you to invite all of your friends &amp; share the love.</p>
<p>P.S. I&#8217;ve got a new free plugin coming out soon that links your <strong>Facebook Page Photo Gallery</strong> to your WordPress blog! More on that soon :)</p>
<p>The post <a href="http://cliftonhatfield.com/wordpress-help-on-facebook/">WordPress Help On Facebook</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-help-on-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Losing Time&#8230;Help Me</title>
		<link>http://cliftonhatfield.com/im-losing-time-help-me/</link>
		<comments>http://cliftonhatfield.com/im-losing-time-help-me/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 05:37:06 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3638</guid>
		<description><![CDATA[<p>I've been noticing a growing trend lately. Many people are approaching me with some really great questions about blogging, WordPress, and internet marketing. In fact, when you add it all up, I spend a lot of my time answering the same questions over &#038; over again which eventually steals from my free time and family time.</p><p>The post <a href="http://cliftonhatfield.com/im-losing-time-help-me/">I&#8217;m Losing Time&#8230;Help Me</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3640" title="WordPress Time" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-time.png?resize=225%2C225" alt="WordPress Time" data-recalc-dims="1" />Growing Trend</h3>
<p>I&#8217;ve been noticing a growing trend lately. Many people are approaching me with some really great questions about <em>blogging, WordPress, and internet marketing</em>. In fact, when you add it all up, I spend a lot of my time answering the same questions over &amp; over again which eventually steals from my free time and family time.</p>
<h3>The Solution</h3>
<p>The solution would be to write blog posts about each of their questions. But, most of the time I already have written them. So I guess I need to just do a better job of making people aware of that available information.<span id="more-3638"></span></p>
<p>That is exactly what I am doing for you right now. I&#8217;ve compiled a list of posts that are older but still very useful. Find one or two interesting? <strong>Click the link, read the post, and share on Facebook &amp; Twitter</strong>!</p>
<p>Help me get some of my time back by educating everyone else with this information.</p>
<h3>WordPress, Blogging, Internet Marketing Tips</h3>
<ul>
<li><a title="January 2011" href="http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/">Create a Photo Gallery in WordPress</a></li>
<li><a title="November 2010" href="http://cliftonhatfield.com/your-blog-posts-are-too-long/">Your Blog Posts Are Too Long</a></li>
<li><a title="October 2010" href="http://cliftonhatfield.com/my-four-secrets-to-killer-blog-posts-series/">My Four Secrets To Killer Blog Posts Series</a></li>
<li><a title="October 2010" href="http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/">Stop Installing So Many WordPress Plugins</a></li>
<li><a title="September 2010" href="http://cliftonhatfield.com/i-have-failed/">I Have Failed</a></li>
<li><a title="August 2010" href="http://cliftonhatfield.com/i-need-help-with-my-blog/">I Need Help With My Blog</a></li>
<li><a title="July 2010" href="http://cliftonhatfield.com/managing-your-wordpress-categories-part-1/">Managing Your WordPress Categories : Part 1</a></li>
<li><a title="July 2010" href="http://cliftonhatfield.com/wordpress-3-0-menu-management-video-tutorial/">WordPress 3.0 Menu Management : Video Tutorial</a></li>
<li><a title="July 2010" href="http://cliftonhatfield.com/wordpress-author-page/">WordPress Author Page</a></li>
</ul>
<p>There are still so many more&#8230;.visit my <a href="http://cliftonhatfield.com/blog-sitemap/">Sitemap</a></p>
<p>Looking forward to having for time!</p>
<p>P.S. Like me on Facebook too! <a title="Facebook Clifton Hatfield" href="http://facebook.com/cliftonhatfield.page" target="_blank">http://facebook.com/cliftonhatfield.page</a></p>
<p>The post <a href="http://cliftonhatfield.com/im-losing-time-help-me/">I&#8217;m Losing Time&#8230;Help Me</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/im-losing-time-help-me/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Buying A Domain Name</title>
		<link>http://cliftonhatfield.com/buying-a-domain-name/</link>
		<comments>http://cliftonhatfield.com/buying-a-domain-name/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 05:38:04 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[network solutions]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3621</guid>
		<description><![CDATA[<p>You're ready to get started with your website or blog but you are looking for the perfect domain name but you need to find that perfect web address. Here are a few suggestions to help you to find the right domain name for your website.</p><p>The post <a href="http://cliftonhatfield.com/buying-a-domain-name/">Buying A Domain Name</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3622 no-border" title="Buy a domain name" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/domain-name.png?resize=203%2C203" alt="Buy a domain name" data-recalc-dims="1" /></h3>
<h3>What is a domain name?</h3>
<p>A <strong>domain name</strong> is an identification label that defines a realm of administrative autonomy, authority, or control in the Internet. More commonly used as a <em>web address for websites</em>.</p>
<h3>Picking a domain name</h3>
<p>You&#8217;re ready to get started with your website or blog but you are looking for the perfect domain name but you need to find that perfect web address. Here are a few suggestions to help you to find the right <strong>domain name for your website</strong>.<span id="more-3621"></span></p>
<ul>
<li><strong>Branding</strong> &#8211; People will often associate a website by its domain name. Use this method to establish your brand online. If your website or blog is about you, consider your first &amp; last name dot com.</li>
<li><strong>Keep it short</strong> &#8211; Keeping your domain short and simple to spell will help people remember it.</li>
<li><strong>Using keywords &#8211; </strong>When considering a domain name, it&#8217;s wise to think about using targeted keywords if possible. A website about garage sales may want to try to using the words garage sales within its domain.</li>
<li><strong>Avoid easy to misspell words</strong> &#8211; This one may seem like it makes sense but I see it often. If the word is difficult to spell outside of simple pronouncing then it may causing people to have trouble finding your site.</li>
<li><strong>Thesaurus</strong> &#8211; Using this tool can help you brainstorm for other word choices.</li>
<li><strong>Extensions</strong> &#8211; If available, try sticking with the popular domain extensions like *.com, *.org, or *.net.</li>
</ul>
<h3>Register a private domain</h3>
<p>Each registered domain name requires information to be submitted to the WHOIS database. This information may be information that you don&#8217;t want to make public. When purchasing a domain you often have the option to make the <a title="Private Domain Registration" href="http://cliftonhatfield.com/private-domain-registration/">WHOIS information private</a> by using services available at checkout.</p>
<h3>GoDaddy Domain Promo Codes</h3>
<p>I&#8217;ve been buying and selling domain names for years. I own 100+ domain names that all require a year renewal fee. You can often avoid paying higher registration fees by using the domain registrar&#8217;s promo codes. I&#8217;ve been using the promo code &#8220;cjcwinner&#8221; (without quotes) for years. It drops the price to $7.67 for the first year. Once you&#8217;ve purhased several domain name through a service like GoDaddy, they will often work with you on renewal pricing to pursade you to continue hosting your domains with them. Each month I give my GoDaddy sales rep a call to renew my domains for that month at a lower cost.</p>
<h3>Final Thought</h3>
<p>Domain name can be taken as serious as thinking of a name for business so don&#8217;t go about it lightly. Get out the pen and paper to write down word choices, ideas, brainstorming ideas, etc. Then visit a site like <a title="GoDaddy.com" href="http://godaddy.com" target="_blank">GoDaddy.com</a> or <a title="Network Tools" href="http://network-tools.com" target="_blank">Network-tools.com</a> to search the availability of possible new domain names.</p>
<p>The post <a href="http://cliftonhatfield.com/buying-a-domain-name/">Buying A Domain Name</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/buying-a-domain-name/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Private Domain Registration</title>
		<link>http://cliftonhatfield.com/private-domain-registration/</link>
		<comments>http://cliftonhatfield.com/private-domain-registration/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 00:09:55 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[network solutions]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[private domain resgitration]]></category>
		<category><![CDATA[WHOIS]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3614</guid>
		<description><![CDATA[<p>Essentially, private domain registration allows you to adhere to the rules and requirements of the public WHOIS database; however, your web hosting company will now submit alternate contact information. This maintains trust and confidence among your website’s visitors, as you will still have a legitimate listing in the WHOIS database, but it also upholds your own personal privacy.</p><p>The post <a href="http://cliftonhatfield.com/private-domain-registration/">Private Domain Registration</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-3615" title="Private Domain Registration" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/private-domain-registration.png?resize=128%2C128" alt="Private Domain Registration" data-recalc-dims="1" />When starting your own website, one thing that you want to consider early on is your security. These days, online security is an increasingly complicated concept, as we seem to be asked to post our name, email, and general information on half of the websites we visit. Throw in trends like social networking and increased connectivity through the spread of wireless internet, and it seems as if we are constantly exhibiting ourselves online, making privacy very difficult to maintain. The same is true in creating a website. However, when you register a domain name through a professional website hosting company like Network Solutions, you do at least have the option of choosing <a href="http://www.networksolutions.com">private domain registration</a> which can go a long way toward protecting your personal information and privacy.<span id="more-3614"></span></p>
<p>Generally, when you register your own domain name, you are actually required to submit personal information (such as your name, email, and contact information) for usage on what is called the pubic WHOIS database. This is essentially a search tool that allows pretty much anybody to look into your site to make sure that, for example, you are who you claim to be, or that your web page is legitimate, and not some sort of scheme or lie. It is a helpful tool for inspiring confidence in your website’s visitors, but it also makes your private contact information available to the public online, which may be less than desirable. This is where private domain registration comes in.</p>
<p>Essentially, private domain registration allows you to adhere to the rules and requirements of the public WHOIS database; however, your web hosting company will now submit alternate contact information. This maintains trust and confidence among your website’s visitors, as you will still have a legitimate listing in the WHOIS database, but it also upholds your own personal privacy. Not only will your information be kept private, but you will also gain protection against common Internet annoyances such as spam email and telemarketing. In fact, you can even look into what is called “email masking” for even more thorough protection against such inconveniences. Of course, a private domain registration costs you a bit extra, as it is a service offered to increase your comfort and security. But, when you consider the vast uncertainties of Internet privacy, and the number of people who enjoy stealing information, spamming email boxes, and generally wreaking havoc online, increased personal security is generally well worth the slight additional cost.</p>
<p>The post <a href="http://cliftonhatfield.com/private-domain-registration/">Private Domain Registration</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/private-domain-registration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Title Tags Are Important</title>
		<link>http://cliftonhatfield.com/wordpress-title-tags-are-important/</link>
		<comments>http://cliftonhatfield.com/wordpress-title-tags-are-important/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 04:54:58 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[title tags]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3603</guid>
		<description><![CDATA[<p>Writing descriptive title tags is very important aspect of optimizing a site to ran well with Search Engines like Google. They also attract more clicks by visitors on search engines. A good title tag can generate interest from people who know nothing about your brand, website, or company pulling them into your conversion funnel. </p><p>The post <a href="http://cliftonhatfield.com/wordpress-title-tags-are-important/">WordPress Title Tags Are Important</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3607" title="WordPress HTML Title Tags" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/html-title-tags-wordpress.png?resize=225%2C290" alt="WordPress HTML Title Tags" data-recalc-dims="1" />What are title tags?</h3>
<p>For those who may be unfamiliar with what title tags are, they describe the text that appears in the top line of a user&#8217;s web browser. The title tags are also used by search engines as the actual title of a search listing.</p>
<p>Writing descriptive title tags is very important aspect of optimizing a site to ran well with Search Engines like Google. They also attract more clicks by visitors on search engines. A good title tag can generate interest from people who know nothing about your brand, website, or company pulling them into your conversion funnel. This should be an expectation with modifying your title tags.</p>
<h3>Figure out what title tags you should use.</h3>
<p>Check your competition. See how others in your industry are structuring their title tags using keywords or phrases. Often times your post title is used as your title tag and this can make things simpler if you are using proper keywords within your post title. Having your keywords inside of your title tags means they will be prominently displayed in search engines therefore users identify the main subject of the page quickly.<span id="more-3603"></span></p>
<h3>Include your brand.</h3>
<p>Next time you perform a search on Google, read through the result titles and notice how many display their <a title="Promoting your brand &amp; yourself" href="http://cliftonhatfield.com/tag/promote-yourself/" target="_blank">brand</a>. If your brand is clear and helps to deliver meaning behind your content, then including your brand into the title tags can be very helpful with your SEO efforts. However, if your brand contains any special characters like copyright, register, pound sign, dollar signs, etc avoid placing them into your title tags. Avoiding this practice will fall in line with the major web properties.</p>
<h3>Title tag lengths</h3>
<p>Each search engine has their own specifications on title tag character length so it is best to check with a resource like <a title="SEO Software" href="http://seomoz.org" target="_blank">SEOMoz.org</a>. It&#8217;s best practice to keep your title tags to <strong>70 characters or less</strong>. There is little statistical data about the role that title tag length may play in generating clicks (longer or shorter better?) but your focus should be on the primary objective anyway&#8230;.keywords.</p>
<h3>WordPress Title Tag Plugin</h3>
<p>There are several <a title="Organic Traffic For Blogs" href="http://cliftonhatfield.com/organic-traffic-for-blogs/" target="_blank">SEO plugins for WordPress</a> available. However, always be sure that the plugin has the capability to edit the post&#8217;s title tags. There are also many themes available that support <em>custom title tags</em>. At the very least, be sure that your blog post title is reflected within the browser&#8217;s top line (e.g. top of the window or tab). One recommended plugin for customizing your title tags is <a title="WordPress All in one SEO" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in One SEO</a>.</p>
<h3>Final Thought</h3>
<p><a href="http://cliftonhatfield.com/category/blogging-tools/seo-blogging-tools/" target="_blank"><strong>SEO</strong></a> is something you should be taking very serious if you expect to draw in organic traffic from search engine. <strong>When it comes to on-site search engine optimization, few elements are more important than the title tag.</strong> If you have any questions about customizing your title tags leave a comment below!</p>
<p>The post <a href="http://cliftonhatfield.com/wordpress-title-tags-are-important/">WordPress Title Tags Are Important</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-title-tags-are-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Schedule Blog Posts</title>
		<link>http://cliftonhatfield.com/how-to-schedule-blog-posts-in-wordpress/</link>
		<comments>http://cliftonhatfield.com/how-to-schedule-blog-posts-in-wordpress/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 05:56:55 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[easy blogging]]></category>
		<category><![CDATA[schedule blog posts]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2953</guid>
		<description><![CDATA[<p>Let me give you a nice tip. Don't try to write your entire blog article at once. Spread it out over the course of a few days. If you can find 10-20 minutes to sit down at your computer or scribble down some notes on a piece of paper then you can put together your blog post over the course of a few days. Then publish it once you're ready.</p><p>The post <a href="http://cliftonhatfield.com/how-to-schedule-blog-posts-in-wordpress/">How To Schedule Blog Posts</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-3593" title="Schedule Blog Post" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/schedule-blog-post.png?resize=128%2C128" alt="Schedule Blog Post" data-recalc-dims="1" />Ease the pain of blogging</h3>
<p><a title="WordPress Blogging" href="http://cliftonhatfield.com/category/blogging-tools/">Blogging</a> shouldn&#8217;t be a difficult task for you&#8230;if you do it right. Do you have trouble finding the time to sit down and write a good blog post? Or maybe you do find the time but can&#8217;t overcome a sudden onset of writer&#8217;s block? Well let me give you a nice tip. Don&#8217;t try to write your entire blog article at once. Spread it out over the course of a few days. If you can find 10-20 minutes to sit down at your computer or scribble down some notes on a piece of paper then you can put together your blog post over the course of a few days. Then publish it once you&#8217;re ready.</p>
<h3>Write 5 blog posts in a day</h3>
<p>If you are one of those people who can sit down and write several blog posts in a row in a single day then you may face a different kind of problem. You might write a week&#8217;s worth of blog posts in one sitting but it would almost be silly to publish all of them at once&#8230;right? By scheduling your WordPress blog posts, you can type up all those articles in one day then schedule them to publish each day of the week. Check out the video tutorial below on <strong>how to schedule your blog posts for <a title="WordPress" href="http://cliftonhatfield.com/category/wordpress/">WordPress</a></strong>.</p>
<p><object width="595" height="359" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/E0lcPq76PC8?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed width="595" height="359" type="application/x-shockwave-flash" src="http://www.youtube.com/v/E0lcPq76PC8?fs=1&amp;hl=en_US&amp;rel=0" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>The post <a href="http://cliftonhatfield.com/how-to-schedule-blog-posts-in-wordpress/">How To Schedule Blog Posts</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/how-to-schedule-blog-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Credits</title>
		<link>http://cliftonhatfield.com/wordpress-credits/</link>
		<comments>http://cliftonhatfield.com/wordpress-credits/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 20:34:38 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[credits]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[programmers]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress developers]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3579</guid>
		<description><![CDATA[<p>You can now find some of the most influential people currently involved with the project of building your publishing platform by visiting your Dashboard and clicking on the Credits links. Take a few moments to browse through some of them and learn about the people make things happen for you and your blog.</p><p>The post <a href="http://cliftonhatfield.com/wordpress-credits/">WordPress Credits</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3585" title="WordPress Credits" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-credits.jpg?resize=225%2C168" alt="WordPress Credits" data-recalc-dims="1" />Giving credit where credit is do</h3>
<p><a title="WordPress Blog Posts" href="http://cliftonhatfield.com/category/wordpress/" target="_blank">WordPress</a> is used by an astonishing number of websites and bloggers all across the entire globe&#8230;.it&#8217;s actually a jaw-dropping number. But how many of us actually know who is behind the development of the publishing platform we&#8217;ve grown to love? Well, finally <a title="WordPress" href="http://wordpress.org" target="_blank">WordPress</a> has made it simple to find out for everyone.</p>
<h3>We are a community</h3>
<p><strong>WordPress users have become a community of people ranging from novice bloggers to expert developers.</strong> As a community we work together to report bugs, offer suggestions, and more to the WordPress team. So although there are thousands and thousands of people who contribute to the development of WordPress, it wouldn&#8217;t be possible to point out everyone.</p>
<h3>WordPress Credits Page</h3>
<p>You can now find some of the most influential people currently involved with the project of building your publishing platform by visiting your Dashboard and clicking on the Credits links. Take a few moments to browse through some of them and <em>learn about the people make things happen for you and your blog.</em></p>
<p>The post <a href="http://cliftonhatfield.com/wordpress-credits/">WordPress Credits</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-credits/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;Just Write&#8221; Says WordPress 3.2</title>
		<link>http://cliftonhatfield.com/just-write-says-wordpress-3-2/</link>
		<comments>http://cliftonhatfield.com/just-write-says-wordpress-3-2/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 12:15:21 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[distraction free blogging]]></category>
		<category><![CDATA[fullscreen editor]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[WordPress 3.2]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3570</guid>
		<description><![CDATA[<p>WordPress never lets me down when they roll out a major update with sweet little gifts for us to play with or improve our overall experience blogging. The improve fullscreen mode gives me the comfortable setting I've been looking for out of WordPress each time I sit down to express my ideas and share my thoughts through blogging.</p><p>The post <a href="http://cliftonhatfield.com/just-write-says-wordpress-3-2/">&#8220;Just Write&#8221; Says WordPress 3.2</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3681" title="WordPress Just Write" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-just-write.gif?resize=225%2C146" alt="WordPress Just Write" data-recalc-dims="1" />WordPress 3.2 much improved Fullscreen Mode</h3>
<p>So as I peck away at my keyboard this morning I&#8217;ve decided to give the improved fullscreen mode in WordPress 3.2 a try. I wasn&#8217;t much a fan of the previous mode and found it a little cumbersome and more of a hassle than what it claimed to be worth. However, the improved mode tells a different story.</p>
<h3>Please don&#8217;t distract me</h3>
<p>I enjoy being free of many distractions while I write blog posts. (When I am writing code I enjoy listening to my favorite music) Over the last few version releases, the <a title="WordPress Team Credits" href="http://cliftonhatfield.com/wordpress-credits/ ">WordPress team</a> has really paid close attention to giving us distraction free environment to type up our masterpieces (or something close). Obviously they can&#8217;t do anything about what&#8217;s outside the scope of WordPress but with layout changes, speed improvements, and color choices improved, we finally have a wonderful atmosphere that gives us the ability to become intimate with only the words on the screen and a white canvas to print them on.</p>
<h3>F11 takes you a step further</h3>
<p>Using a modern internet browser like the latest versions of Firefox, Chrome, or Internet Explorer gives you the capability to put your entire browser window into fullscreen mode (beyond just maximizing the window). By clicking the fullscreen button in your post editor then pressing the F11 key on your keyboard you will experience a complete white window where you can type away. No more colorful icons to look at or flashing notifications in your taskbar.</p>
<h3>WordPress 3.2 Fullscreen Mode Video Tutorial</h3>
<p><object width="590" height="366" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/lrVnkrAgCsU?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="590" height="366" type="application/x-shockwave-flash" src="http://www.youtube.com/v/lrVnkrAgCsU?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<h3>Final Thought</h3>
<p>WordPress never lets me down when they roll out a major update with sweet little gifts for us to play with or improve our overall experience blogging. The improve fullscreen mode gives me the comfortable setting I&#8217;ve been looking for out of WordPress each time I sit down to express my ideas and share my thoughts through blogging. Thanks again WordPress!</p>
<p>The post <a href="http://cliftonhatfield.com/just-write-says-wordpress-3-2/">&#8220;Just Write&#8221; Says WordPress 3.2</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/just-write-says-wordpress-3-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>When To Update Your WordPress Blog</title>
		<link>http://cliftonhatfield.com/when-to-update-your-wordpress-blog/</link>
		<comments>http://cliftonhatfield.com/when-to-update-your-wordpress-blog/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 12:10:20 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Cpanel backups]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[WordPress Updates]]></category>
		<category><![CDATA[WordPress versions]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3552</guid>
		<description><![CDATA[<p>This is a question I am hit with often by clients and friends. It's actually a really good question for a couple of reasons. Your blog is so important to you that you become worried that upgrading my cause issues with your theme, plugins, or worse...erase your WordPress database. Well I am here to help answer some of your questions and concerns. I will keep this short....kinda.</p><p>The post <a href="http://cliftonhatfield.com/when-to-update-your-wordpress-blog/">When To Update Your WordPress Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3556" title="WordPress Blog Updates" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress-blog-updates.png?resize=225%2C225" alt="WordPress Blog Updates" data-recalc-dims="1" />When should I update my WordPress Blog?</h3>
<p>This is a question I am hit with often by clients and friends. It&#8217;s actually a really good question for a couple of reasons. Your blog is so important to you that you become worried that upgrading my cause issues with your theme, plugins, or worse&#8230;<strong>erase your WordPress database</strong>. Well I am here to help answer some of your questions and concerns. I will keep this short&#8230;.kinda.<span id="more-3552"></span></p>
<h3>Minor updates &amp; major updates</h3>
<p>I am not going to get really specific here but the main difference between the two is simple. Minor updates typically increases by a subversion e.g. 3.1.1 upgrades to 3.1.2. A major upgrade typically increase from 3.1 to 3.2&#8230;.or better yet&#8230;.3.2 to 4.0. Now what sets the version numbers anyway? There are several different reasons but for simplicity sake, minor updates usually only contain fixes for bugs, errors, or security holes. Major updates often introduce new or improved features or tools for your WordPress blog. That isn&#8217;t a perfect answer but you get the idea.</p>
<h3>Risks involved with updating your WordPress Blog</h3>
<p>If we loved in a perfect world then things would be boring but everything would work just as we wanted them to work. We don&#8217;t live in that world and &#8220;things&#8221; happen. Like updating your blog for years and it never breaks but one day you run an update and now your <a title="An automated WordPress update has failed to complete" href="http://cliftonhatfield.com/an-automated-wordpress-update-has-failed-to-complete/" target="_blank">blog is all messed up</a>! First question to ask yourself is, &#8220;When was my last back up?&#8221; Well hopefully you are performing an backup weekly or so (depending on how often your blog changes e.g. new posts, comments, etc). If you don&#8217;t back up weekly then you MUST back up your blog before running any updates for <a title="Update &amp; Active New Plugin" href="http://cliftonhatfield.com/update-active-new-wordpress-plugin/" target="_blank">WordPress plugins</a>, theme, or core files. If you lose everything or possibly just mess something up you can then at least hire a <a title="Who is Clifton Hatfield?" href="http://cliftonhatfield.com/who-is-clifton-hatfield/" target="_blank">web developer</a> to fix it for you but in order for them to restore it, they may need a backup.</p>
<h3>How to perform a WordPress backup</h3>
<p>There are different solutions for backups from different hosting providers. Here is a tutorial on <strong><a title="Full WordPress Backup : Better Safe Than Sorry" href="http://cliftonhatfield.com/full-wordpress-backup-better-safe-than-sorry/" target="_blank">How to backup your WordPress blog using Cpanel</a>.</strong> Most hosting companies use Cpanel/WHM for their shared/dedicated hosting account. However, if you use GoDaddy hosting or some other hosting provider then you may need to contact them and ask support the proper why to perform and update on your blog/site.<strong></strong></p>
<h3>WordPress Automated Backup Plugins = Fail.</h3>
<p>Several people recommend using free plugins that are available in the WordPress Plugin Repository that will running automated backups on your WordPress database. <strong>I personally don&#8217;t recommend using these for several reasons. </strong></p>
<ol>
<li>The plugin may no longer but supported and out-dated with the latest version of WordPress which may just make things worse.</li>
<li>I believe those plugins ONLY back up your WordPress database and NOT your theme&#8217;s files. So if you have custom graphics and no backups of them, don&#8217;t expect your plugin to backup those files to in case of an error.</li>
<li>Their backups aren&#8217;t full. The plugin doesn&#8217;t back up your entire hosting account so if you have email addresses, add-on sites, images saved in your media library, etc. When your blog crashes, you won&#8217;t have a back up copy of any of those.</li>
<li>You don&#8217;t know who actually created the plugin and if they even knew what they were doing. Your WordPress blog is so important to you so why would you trust your valuable database data to a WordPress backup plugin that ws developed by some kid who doesn&#8217;t really know Jack from Jill. :O</li>
</ol>
<h3>Final Thought</h3>
<p>Next time you are asked to perform an update on your WordPress blog, feel better about it by performing a <a title="Full WordPress Backup : Better Safe Than Sorry" href="http://cliftonhatfield.com/full-wordpress-backup-better-safe-than-sorry/">full WordPress Backup</a> first. If it&#8217;s a minor version update then you shouldn&#8217;t really have much to worry about (hopefully lol) but always be caustious when updating to a major version. You are best to let that warning message in your Dashboard linger for a few weeks before updating. That will give theme and plugin developers more than enough time to test their products with the newest version to be sure of compatibility. Happy blogging.</p>
<p>The post <a href="http://cliftonhatfield.com/when-to-update-your-wordpress-blog/">When To Update Your WordPress Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/when-to-update-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Update &amp; Active New Plugin</title>
		<link>http://cliftonhatfield.com/update-active-new-wordpress-plugin/</link>
		<comments>http://cliftonhatfield.com/update-active-new-wordpress-plugin/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 02:05:06 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[clifton's lightbox plugin]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3537</guid>
		<description><![CDATA[<p>Many free WordPress plugins are available inside the WordPress Plugins Directory and you can easily update them using your WP Dashboard. However, you may have purchased a plugin or downloaded a plugin that doesn't support the one-click update function. Don't worry because typically updating is a fairly simple process and I have put together a short video tutorial to help you along.</p><p>The post <a href="http://cliftonhatfield.com/update-active-new-wordpress-plugin/">Update &#038; Active New Plugin</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-3540" title="Clifton's Lightbox Plugin" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/bulb.png?resize=128%2C128" alt="Clifton's Lightbox Plugin" data-recalc-dims="1" />How to update a WordPress Plugin that is not hosted in the WP plugin directory</h3>
<p>I&#8217;ve written this blog post and create a video tutorial on how to install and update a new WordPress plugin that is not hosted in the WordPress Plugin Directory, specifically for the latest version of <a title="Clifton’s Lightbox Plugin" href="http://cliftonhatfield.com/cliftons-lightbox-plugin-page/">Clifton&#8217;s Lightbox Plugin</a> (v2.2).</p>
<p>Many free WordPress plugins are available inside the WordPress Plugins Directory and you can easily update them using your WP Dashboard. However, you may have purchased a plugin or downloaded a plugin that doesn&#8217;t support the one-click update function. Don&#8217;t worry because typically updating is a fairly simple process and I have put together a short video tutorial to help you along. I will use my <a title="Clifton’s Lightbox Plugin" href="http://cliftonhatfield.com/cliftons-lightbox-plugin-page/"><span style="text-decoration: underline;">free lightbox plugin for WordPress</span></a> as an example.<span id="more-3537"></span></p>
<p><strong>Instructions</strong></p>
<ol>
<li>Backup your entire WordPress blog &amp; database.</li>
<li>Click on Plugins in your WP Dashboard.</li>
<li>Find the plugin you want to update. If the plugin is active, deactivate it.</li>
<li>Click the Delete link for the plugin &amp; confirm.</li>
<li>Download the new version of the plugin to your desktop.</li>
<li>Click the Add New button to add the new plugin.</li>
<li>Click on the Upload link.</li>
<li>Click Browse to find the downloaded plugin on your desktop.</li>
<li>Click the Install Now button.</li>
<li>Click on Active Plugin link.</li>
<li>Visit Plugins settings page to be sure everything is still configured correctly.</li>
</ol>
<h3>Video Tutorial</h3>
<p><object width="590" height="366" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/KAympmoYJRg?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="590" height="366" type="application/x-shockwave-flash" src="http://www.youtube.com/v/KAympmoYJRg?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>The post <a href="http://cliftonhatfield.com/update-active-new-wordpress-plugin/">Update &#038; Active New Plugin</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/update-active-new-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Who is Clifton Hatfield?</title>
		<link>http://cliftonhatfield.com/who-is-clifton-hatfield/</link>
		<comments>http://cliftonhatfield.com/who-is-clifton-hatfield/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 17:29:43 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Who I am]]></category>
		<category><![CDATA[clifton hatfield]]></category>
		<category><![CDATA[internet marketer]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[online marketer]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3528</guid>
		<description><![CDATA[<p>Hey everyone. If you have found my blog, then you may already know who I am. For those of you that don’t know me personal, I’ll give you a some information about my background and interests. I am a family man. At 28, I am married to a beautiful woman who is a wonderful mother [...]</p><p>The post <a href="http://cliftonhatfield.com/who-is-clifton-hatfield/">Who is Clifton Hatfield?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-3529" title="Clifton Hatfield celebrating with his with wife." src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/9523_161619256005_566416005_3244295_7896913_n1.jpg?resize=108%2C144" alt="Clifton Hatfield celebrating with his with wife." data-recalc-dims="1" />Hey everyone. If you have found my blog, then you may already know who I am. For those of you that don’t know me personal, I’ll give you a some information about my background and interests.</p>
<p><strong>I am a family man.</strong> At 28, I am <a title="The Couple." href="../wp-content/uploads/the_couple.jpg" rel="who-am-i">married to a beautiful woman</a> who is a wonderful mother to our son. We live in a small village in southwest Ohio where I spent most of the days growing up.  After graduating high school,</p>
<p><strong><a title="Who is Clifton Hatfield?" href="http://cliftonhatfield.com/who-am-i/">Learn More About Clifton Hatfield &#8211;&gt;</a></strong></p>
<p>The post <a href="http://cliftonhatfield.com/who-is-clifton-hatfield/">Who is Clifton Hatfield?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/who-is-clifton-hatfield/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How To Create A Facebook Page</title>
		<link>http://cliftonhatfield.com/how-to-create-a-facebook-page/</link>
		<comments>http://cliftonhatfield.com/how-to-create-a-facebook-page/#comments</comments>
		<pubDate>Tue, 24 May 2011 04:04:57 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[create page]]></category>
		<category><![CDATA[facebook pages]]></category>
		<category><![CDATA[fan page]]></category>
		<category><![CDATA[fb marketing]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3477</guid>
		<description><![CDATA[<p>Over 700 million people have a Facebook user account which comes with a Facebook Profile. But you want to be able to effectively market your home-based business on Facebook but you can't use your personal Facebook Profile because it's against Facebook Terms of Service.</p><p>The post <a href="http://cliftonhatfield.com/how-to-create-a-facebook-page/">How To Create A Facebook Page</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Let&#8217;s create a Facebook Business Page (formerly known as Fan Page).</h3>
<h3><img class="alignright size-medium wp-image-3478" title="How to create a Facebook Page" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-page.jpg?resize=225%2C185" alt="How to create a Facebook Page" data-recalc-dims="1" /></h3>
<p>Over 700 million people have a Facebook user account which comes with a Facebook Profile. But you want to be able to effectively market your home-based business on Facebook but you can&#8217;t use your personal Facebook Profile because it&#8217;s against <a title="Facebook Terms of Service" href="http://www.facebook.com/terms.php" target="_blank">Facebook Terms of Service</a>.</p>
<p>Below are a few screenshots and a video tutorial on how to create your first Facebook Page.</p>
<p><span id="more-3477"></span></p>
<h3>1. Create Your Page</h3>
<p><img class="alignnone size-full wp-image-3480" title="Facebook Pages" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-pages.jpg?resize=560%2C228" alt="Facebook Pages" data-recalc-dims="1" /></p>
<p>Go to <a title="Facebook Pages" href="http://facebook.com/pages" target="_blank">http://facebook.com/pages</a> and link on the Create Page button in the upper right corner of the page.</p>
<p>The next screen asks you to select a category from the following list:</p>
<ul>
<li>Local Business or Place</li>
<li>Company, Organization or Institution</li>
<li>Brand or Product</li>
<li>Artist, Band or Public Figure</li>
<li>Entertainment</li>
<li>Cause or Community</li>
</ul>
<h3>2. Enter Your Information</h3>
<p><img class="alignnone size-full wp-image-3482" title="Facebook Create Pages " src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-pages-2.jpg?resize=560%2C228" alt="Facebook Create Pages " data-recalc-dims="1" /></p>
<p>Once you select the category for your business, you can fill in the additional requested information. Check the box next to “I agree to Facebook Pages Terms” and click &#8220;Get Started.&#8221;</p>
<h3>Watch The Video Tutorial : How to create a Facebook Page</h3>
<p><a href="http://clftn.co/video.php?video=http%3A%2F%2Fcdn.clftn.co%2Fvideos%2Fhow-to-create-facebook-page.mp4&amp;autoplay=true&amp;&amp;rel="shadowbox;;><img class="alignnone size-full wp-image-3483 no-border" title="Create a Facebook Page Tutorial" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/create-a-facebook-page-tutorial.jpg?resize=567%2C379" alt="Create a Facebook Page Tutorial" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/how-to-create-a-facebook-page/">How To Create A Facebook Page</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/how-to-create-a-facebook-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Ends Support For Internet Explorer 6</title>
		<link>http://cliftonhatfield.com/wordpress-ends-support-for-internet-explorer-6/</link>
		<comments>http://cliftonhatfield.com/wordpress-ends-support-for-internet-explorer-6/#comments</comments>
		<pubDate>Mon, 23 May 2011 05:27:44 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[Internet Explorer 6]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Virus]]></category>
		<category><![CDATA[WordPress.com]]></category>
		<category><![CDATA[WP 3.2]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3464</guid>
		<description><![CDATA[<p>WordPress has done an amazing job of being backwards compatible and offering a platform usable by even the slowest computers used in third worlds but eventually WordPress has to cut ties and keep moving forward with the rest of the world. We want to keep the internet safe and secure. One way to do that is to get as many people as we can to upgrade their browsers.</p><p>The post <a href="http://cliftonhatfield.com/wordpress-ends-support-for-internet-explorer-6/">WordPress Ends Support For Internet Explorer 6</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-3470" title="ie6" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/ie6.jpg?resize=174%2C185" alt="ie6" data-recalc-dims="1" />WordPress kills off Internet Explorer 6 (IE6)</h3>
<p>Free at last. Free at last! WordPress finally pulls the plug on the much hated internet browser, <strong>Internet Explorer</strong> version 6. WordPress.com is the first to discontinue support of IE6 with the self-hosted WordPress.org platform version 3.2 to soon follow suit. <a title="WordPress Publishing Platform" href="http://wordpress.org" target="_blank">WordPress 3.2</a> stable is set to release June 2011 and will require all users to upgrade their browsers if using Internet Explorer 6.<span id="more-3464"></span></p>
<h3>About Internet Explorer 6</h3>
<p>Internet Explorer 6 was first released with Microsoft XP on August 27, 2001. It was the sixth version of Microsoft&#8217;s default browser to hit the market and it has made waves ever since by being remarked as one of the <a title="Internet Explorer 6 Worst tech product of all time." href="http://www.pcworld.com/article/125772-3/the_25_worst_tech_products_of_all_time.html" target="_blank">worst tech products of all time</a>. Besides it&#8217;s near total lack of web standards and missing features of modern browsers, the near decade old browser has some very serious security issues.</p>
<h3>Microsoft wants you to upgrade too!</h3>
<p>That&#8217;s right! <strong>Microsoft</strong> is trying to get the rest of the world to move past its mistake and <a title="IE6 Countdown" href="http://ie6countdown.com" target="_blank">upgrade their browsers</a>. They have recently released Internet Explorer 9 with several great features and offers a better experience on the web.</p>
<p style="text-align: center;"><img class="size-full wp-image-3469 no-border aligncenter" title="WordPress drop support for Internet Explorer 6 IE6" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress_ie6.jpg?resize=561%2C329" alt="WordPress drop support for Internet Explorer 6 IE6" data-recalc-dims="1" /></p>
<h3>Why did WordPress drop support?</h3>
<p>At some point we just have to move on and thankfully that time is now. WordPress has done an amazing job of being backwards compatible and offering a platform usable by even the slowest computers used in third worlds but eventually WordPress has to cut ties and keep moving forward with the rest of the world. We want to keep the internet safe and secure. One way to do that is to get as many people as we can to upgrade their browsers. Also, as WordPress becomes more feature-filled the platform will require more from the browser and that browser needs to have the capabilities to keep up.</p>
<h3>Final Thought</h3>
<p>About time! Personally as a web developer, IE6 has done nothing but cause headaches for me. Its complete lack of web standards has been such a burden on the internet. Knowing there are people out there still using <a title="Microsoft Internet Explorer 6" href="http://en.wikipedia.org/wiki/Internet_Explorer_6" target="_blank">Internet Explorer 6</a> simply because they don&#8217;t know any better eats me up inside. I know <strong>they are totally missing out on the entire internet</strong>. I want to give props to WordPress for finally making the call to drop support for IE6 and helping the world move past Microsoft&#8217;s mistake. Thank you WordPress!</p>
<p>The post <a href="http://cliftonhatfield.com/wordpress-ends-support-for-internet-explorer-6/">WordPress Ends Support For Internet Explorer 6</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-ends-support-for-internet-explorer-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Groupon&#8217;s Advice To Build A Business</title>
		<link>http://cliftonhatfield.com/groupons-advice-to-build-a-business/</link>
		<comments>http://cliftonhatfield.com/groupons-advice-to-build-a-business/#comments</comments>
		<pubDate>Wed, 18 May 2011 17:28:15 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[andrew mason]]></category>
		<category><![CDATA[Ben Parr]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[groupon]]></category>
		<category><![CDATA[mashable]]></category>
		<category><![CDATA[startup school]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[ycombinator]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2607</guid>
		<description><![CDATA[<p>The truth is what successful entrepreneurs want to hear and must be told. Often the best way to be appealing is to take a simple idea and keep it simple. This is something Groupon has done very well. All entrepreneurs are risk takers but that doesn't mean that ignore or forget about the possible failure that may be the result of their risk.</p><p>The post <a href="http://cliftonhatfield.com/groupons-advice-to-build-a-business/">Groupon&#8217;s Advice To Build A Business</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://groupon.com" rel="nofollow" target="_blank"><img class="alignright size-medium wp-image-2684 no-border" title="Groupon" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/groupon.png?resize=225%2C87" alt="Groupon" data-recalc-dims="1" /></a>This article is based on a blog post written by <a href="http://mashable.com/author/ben-parr/" target="_blank">Ben Parr</a> at <a href="http://mashable.com" rel="nofollow" target="_blank">Mashable.com</a>.</p>
<p>During YCombinator&#8217;s startup school at Harvard University, Groupon&#8217;s founder, Andrew Mason, talked about his six points to successfully build a business. I found his list enlightening and truthful.</p>
<ol style="padding-left: 20px;">
<li style="margin: 6px 0;">You’re building a tool, not a piece of art. Mason suggests that you don’t get blinded by vision, as he was with ThePoint. Groupon has been the total opposite, very focused on hooking the customer within the first few seconds.</li>
<li style="margin: 6px 0;">Recognize and embrace your constraints.</li>
<li style="margin: 6px 0;">Have a growth plan.<span id="more-2607"></span></li>
<li style="margin: 6px 0;">The best tools aren’t always that cool. Groupon chose e-mail because it’s simple and universal.</li>
<li style="margin: 6px 0;">You’ll probably fail. Mason suggests that you have the fear of failure in the back of your mind because it’ll help you confront reality and shape your decisions toward building a viable product.</li>
<li style="margin: 6px 0;">Quit now. Sometimes you have to let an idea go.</li>
</ol>
<h3>Final Thought</h3>
<p>The truth is what successful entrepreneurs want to hear and must be told. Often the best way to be appealing is to take a simple idea and keep it simple. This is something Groupon has done very well. All entrepreneurs are risk takers but that doesn&#8217;t mean that ignore or forget about the possible failure that may be the result of their risk. Instead, they use it to fuel them in their drive to succeed. Then, if that times comes and the risk you took wasn&#8217;t a success, you may have to walk away from it with a lesson learned and experienced gained. It&#8217;s ok.</p>
<p>The post <a href="http://cliftonhatfield.com/groupons-advice-to-build-a-business/">Groupon&#8217;s Advice To Build A Business</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/groupons-advice-to-build-a-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Ping List 2011</title>
		<link>http://cliftonhatfield.com/wordpress-ping-list/</link>
		<comments>http://cliftonhatfield.com/wordpress-ping-list/#comments</comments>
		<pubDate>Sun, 08 May 2011 19:34:22 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[ping list]]></category>
		<category><![CDATA[pings]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[syndication]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3455</guid>
		<description><![CDATA[<p>This is a recommended ping list for your WordPress blog. The information is gathered from personal experience and various sources on the web. Every time you post these services will be notified of your blog post increasing your online exposure. </p><p>The post <a href="http://cliftonhatfield.com/wordpress-ping-list/">WordPress Ping List 2011</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<div>
<p><img class="size-medium wp-image-3456 alignright" title="WordPress Logo" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress_black_white.png?resize=135%2C135" alt="WordPress Logo" data-recalc-dims="1" />This is a recommended ping list for your <a title="WordPress Blogs" href="http://cliftonhatfield.com/category/wordpress/">WordPress blog</a>. The information is gathered from personal experience and various sources on the web. Every time you post these services will be notified of your blog post increasing your online exposure. <strong>To use this list, copy and paste this list to your Settings-&gt;Writing tab in the admin panel. </strong></p>
<p>This list comes as-is without guarantee.</p>
<p>http://api.moreover.com/RPC2</p>
<p>http://bblog.com/ping.php</p>
<p>http://blogsearch.google.com/ping/RPC2</p>
<p>http://ping.weblogalot.com/rpc.php</p>
<p>http://ping.feedburner.com</p>
<p>http://ping.syndic8.com/xmlrpc.php</p>
<p>http://ping.bloggers.jp/rpc/</p>
<p>http://rpc.pingomatic.com/</p>
<p>http://rpc.weblogs.com/RPC2</p>
<p>http://rpc.technorati.com/rpc/ping</p>
<p>http://topicexchange.com/RPC2</p>
<p>http://www.blogpeople.net/servlet/weblogUpdates</p>
<p>http://xping.pubsub.com/ping</p>
<h3>References</h3>
<p><a href="http://codex.wordpress.org/Update_Services" target="_blank">http://codex.wordpress.org/Update_Services</a></p>
<p><a href="http://www.prelovac.com/vladimir/wordpress-ping-list" target="_blank">http://www.prelovac.com/vladimir/wordpress-ping-list</a></p>
<p><a href="http://wptidbits.com/trends/250-complete-list-of-pingupdate-services/" target="_blank">http://wptidbits.com/trends/250-complete-list-of-pingupdate-services/</a></p>
<p><a href="http://www.instant-info-online.com/wordpress-compressed-all-inclusive-ping-list.html" target="_blank">http://www.instant-info-online.com/wordpress-compressed-all-inclusive-ping-list.html</a></p>
<p>&nbsp;</p>
</div>
<p>The post <a href="http://cliftonhatfield.com/wordpress-ping-list/">WordPress Ping List 2011</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/wordpress-ping-list/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Facebook Security &#8211; Hacked Accounts</title>
		<link>http://cliftonhatfield.com/facebook-security-hacked-accounts/</link>
		<comments>http://cliftonhatfield.com/facebook-security-hacked-accounts/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 04:51:37 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media News]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[facebook myths]]></category>
		<category><![CDATA[facebook security]]></category>
		<category><![CDATA[hacked Facebook Accounts]]></category>
		<category><![CDATA[media news]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3397</guid>
		<description><![CDATA[<p>Facebook Security is the latest in hot social media news. Well, I am here to shed some light on this hot topic and give you some additional information to let you decide if you want to use a regular HTTP connection when surfing Facebook or the more secure HTTPS connection.</p><p>The post <a href="http://cliftonhatfield.com/facebook-security-hacked-accounts/">Facebook Security &#8211; Hacked Accounts</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3399" title="Facebook Security" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-security.jpg?resize=225%2C180" alt="Facebook Security" data-recalc-dims="1" /></h3>
<h3>Facebook Security &amp; Privacy</h3>
<p><a title="Facebook Security" href="http://www.facebook.com/help/?page=420" target="_blank">Facebook Security</a> is the latest in hot social media news. I guess we wanted to give <a title="Facebook Apps’ Access to Contact Information" href="http://cliftonhatfield.com/facebook-apps-access-to-contact-information/">Facebook Privacy</a> some time off. Nearly everyday I have been seeing the same Facebook Post that if people don&#8217;t switch their Facebook connection over to an HTTPS (<a title="Hypertext Trasnfer Protocol Secure" href="http://en.wikipedia.org/wiki/HTTP_Secure" target="_blank">Hypertext Transfer Protocol Secure)</a> then their Facebook account will be hacked. Well, I am here to shed some light on this hot topic and give you some additional information to let you decide if you want to use a regular HTTP connection when surfing Facebook or the more secure HTTPS connection.<span id="more-3397"></span></p>
<h3>What does HTTPS mean?</h3>
<p>HTTPS is a way of establishing a secure connection with a website. Anytime you are checking your bank accounts or purchasing a product online, you will see the web address begins with https:// as opposed to the typical http:// that we generally see throughout the web. This means that the connection between you and the website <em>should</em> be secure. I say the word <em>should</em> because your browser will alert you if there are any errors with the secure connection. It provides a relatively secure connection that will prevent &#8220;middle-man attacks&#8221; or eavesdroppers.</p>
<h3>When should I use an HTTPS connection?</h3>
<p>It is most important to know that you are on a secure connection during any payment transactions to prevent hackers from obtaining your bank account information or details. A secure connection is most important when you are using the internet in public places such as airports, libraries, coffee shop, school, etc. These places are more vulnerable to hackers and eavesdroppers.</p>
<h3>What are the disadvantages of using Facebook with HTTPS?</h3>
<p>The most noticeable disadvantage is load times. Obtaining a secure connection, encrypting, decrypting, and transferring are things that happen while surfing Facebook on HTTPS.  Because these things take longer to happen, it will slow down the <a title="SSL Handshake Latency" href="http://www.semicomplete.com/blog/geekery/ssl-latency.html" target="_blank">page loading times</a>. You may only notice it on the first connection and before the SSL connection is cached.</p>
<p>As of right now, most Facebook Games and Applications don&#8217;t support HTTPS which leaves your secure connection open or useless.</p>
<p><img class="alignnone size-full wp-image-3410" title="Facebook Secure Browsing" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-secure-browsing1.jpg?resize=560%2C270" alt="Facebook Secure Browsing" data-recalc-dims="1" /></p>
<p>&nbsp;</p>
<h3>How can I turn on HTTPS in Facebook?</h3>
<ol>
<li>Login to Facebook</li>
<li>Click on Account</li>
<li>Click on Account Settings</li>
<li>Click Change next to Account Security</li>
<li>Check Secure Browsing (https)</li>
<li>Click Save</li>
</ol>
<h3>What else can I do to protect my Facebook Account?</h3>
<p>Well besides not giving away your password to people and making sure you have a secure password <em>(NOT password123 or qwerty)</em> you can have Facebook send an alert to your email address or to your mobile phone each time an unrecognized computer or device accesses your account. This is a good idea so you can be alerted when your account is accessed without your authorization.</p>
<h3>Watch Facebook Video by Alex Rice</h3>
<p><em><a title="Facebook Security Engineer" href="http://www.facebook.com/arice" target="_blank">Alex Rice</a> is a security engineer at Facebook.com</em></p>
<p><em><a href="http://clftn.co/video.php?video=http%3A%2F%2Fcdn.clftn.co%2Fvideos%2Ffacebook-security.mp4&amp;&amp;&amp;autoplay=true" rel="shadowbox;;><img class="alignnone size-full wp-image-3416 no-border" title="Facebook Security Video" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/facebook-security-video.jpg?resize=567%2C379" alt="Facebook Security Video" data-recalc-dims="1" /></a><br />
</em></p>
<h3>Resources/Links</h3>
<p><a title="Official Facebook Security Page" href="http://www.facebook.com/security" target="_blank">Official Facebook Security Page</a></p>
<p><a title="Facebook Blog Security" href="https://www.facebook.com/blog.php?post=486790652130" target="_blank">Facebook Blog (</a><a href="https://blog.facebook.com/blog.php?post=486790652130">A Continued Commitment to Security</a><a title="Facebook Blog Security" href="https://www.facebook.com/blog.php?post=486790652130" target="_blank">)</a></p>
<p><a title="Facebook HTTPS CNET.com" href="http://news.cnet.com/8301-13880_3-20030725-68.html" target="_blank">Facebook HTTPS CNET.com</a></p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/facebook-security-hacked-accounts/">Facebook Security &#8211; Hacked Accounts</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/facebook-security-hacked-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Some Life To Your Blog Posts</title>
		<link>http://cliftonhatfield.com/add-some-life-to-your-blog-posts/</link>
		<comments>http://cliftonhatfield.com/add-some-life-to-your-blog-posts/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 04:21:06 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[istock]]></category>
		<category><![CDATA[Proper Blogging]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[using photos]]></category>
		<category><![CDATA[visual]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3374</guid>
		<description><![CDATA[<p>You are visual. I am visual. Those reading your blog are visual and those you want to read your blog are visual. Basically, I am telling you that people want something beyond words. We want to see pictures, graphics, and images. Add some life to your blog posts by tastefully placing images within your blog posts and pages.</p><p>The post <a href="http://cliftonhatfield.com/add-some-life-to-your-blog-posts/">Add Some Life To Your Blog Posts</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3388 no-border" title="Visual" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/visual-people.jpg?resize=225%2C167" alt="Visual" data-recalc-dims="1" />You are visual. I am visual. They are visual.</h3>
<p>You are visual. I am visual. Those reading your blog are visual and those you want to read your blog are visual. Basically, I am telling you that people want something beyond words. We want to see pictures, graphics, and images. Add some life to your blog posts by tastefully placing images within your blog posts and pages.<span id="more-3374"></span></p>
<p>You will best be able to deliver the message of your blog post if you stimulate the readers senses beyond just your words. As you are explaining your message drop in a graphic here and a photo there. If possible, don&#8217;t just stick an image randomly in the middle of the post. It looks completely out of place and&#8230;<em>honestly</em>&#8230;tacky. Confused? Let me give you an example.</p>
<h3>Don&#8217;t do this&#8230;</h3>
<p><img class="size-full wp-image-3378 aligncenter" title="Bad Alignment" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/bad-alignment.jpg?resize=522%2C230" alt="Bad Alignment" data-recalc-dims="1" /></p>
<h3>Instead do this&#8230;</h3>
<p><img class="size-full wp-image-3379 aligncenter" title="Good Alignment" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/good-alignment.jpg?resize=517%2C198" alt="Good Alignment" data-recalc-dims="1" /></p>
<h3>Here is how&#8230;</h3>
<p>This instruction is theme specific so if your results aren&#8217;t working, your theme may not easily support this ability. Consider upgrading your theme to a <a title="Empowered Theme" href="http://empoweredblogs.com" target="_blank">Premium WordPress Theme</a>. Place the cursor within the post editor inline with the text where you want the image to go. The image will always float left or right of the text. So it doesn&#8217;t matter whether you want the image on the left or the right on your paragraph, place the cursor before the first character of the paragraph that will be next to the image.</p>
<p>Ok, now you have your cursor set so click on the square icon <img class="alignnone no-border" src="http://i2.wp.com/cliftonhatfield.com/wp-admin/images/media-button-image.gif?resize=14%2C12" alt="" data-recalc-dims="1" /> right next to Upload/Insert above the post editor. The Add an Image lightbox will open on top of your post editor where you can upload a new image. Once the image is uploaded you will be able to select its <strong>Alignment</strong>. Choosing None will leave the image inline with the text. Left will float the image to the left of the text. Right will float the image to the right of the text.</p>
<p style="text-align: center;"><img class="size-full wp-image-3382 aligncenter" title="Image alignment in WordPress" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/image-align-wordpress.jpg?resize=522%2C434" alt="Image alignment in WordPress" data-recalc-dims="1" /></p>
<p>If that doesn&#8217;t work or you aren&#8217;t seeing the results you expected there could be a couple of reasons. The first reason may be that the theme you are using just doesn&#8217;t support that ability and you may want to consider upgrading to a better <a title="Better WordPress Theme" href="http://empoweredblogs.com" target="_blank">theme</a>. You may also want to try clicking on the alignment icons within your post editor toolbar to see if that helps any. If not, more advanced users can click on the HTML tab of the post editor and add the align attribute (e.g. align=&#8221;left&#8221;) to the &lt;img&gt; tag. The other reason may be just the lack of practice. You may not be able to figure it out the first time so just keep messing with it until you get the image exactly the way you like it.</p>
<h3>Why is this even important again?</h3>
<p>Well, like I said before that this just looks better and gives the reader a better visual of your message. It also helps the reader during their journey down your page of box-looking paragraphs&#8230;.which is B.O.R.I.N.G. to say the least. <em><strong>I am NOT saying that your article is boring!</strong></em> I am saying that people who see paragraph after paragraph&#8230;after paragraph of text usually run for the hills. For example, why is it that we never read Privacy Policies or Terms of Service Agreements? Because despite the fact they are very important to review, they are visually boring and no one wants to be bored, especially not me. :)</p>
<p>As soon as the page loads, your readers may perform a quick scan of the content they will be reading and during that quick scan they will pick up on the images you&#8217;ve placed throughout your article. An image may look interesting to them which will encourage them to continue reading your post so that they can better understand the reason you&#8217;ve chosen that particular image.</p>
<h3><img class="alignleft size-medium wp-image-3386" title="Google Logo" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/google-logo.jpg?resize=225%2C168" alt="Google Logo" data-recalc-dims="1" />Google L.O.V.E.S. Images</h3>
<p>One of the highest ranked search terms on one of my blogs is for a blog post wrote about Albert Einstein. Every month thousands of visitors come to that post because they discover the image of Albert Einstein from Google&#8217;s Image Search Results. Now getting traffic isn&#8217;t just about how many people are coming to your blog but about how effective you are once they are there. I spotted this increase and took action in order to better capture those visitor beyond just coming here for the image.</p>
<h3>How to Search Engine Optimize your images</h3>
<p>Before uploading the image, rename the image file with your keywords e.g. blog-post-images.jpg. Then, immediately after the image upload completes you will be able to add an image title (the text that displays when a cursor hovers over the image). Add your keywords to the title too e.g. Blog Post Images. The alternate text is used by people with disabilities or text browsers. If an image doesn&#8217;t load for any reason, the alternate text is displayed within its place. Use this opportunity to add some keywords there as well.</p>
<h3>What about videos? They are visual.</h3>
<p>True. Videos are very visual but they are different than having images or photos within your articles. The reason is because videos deliver a message usually a spoken message and it doesn&#8217;t have the same kind of effect as an image. Don&#8217;t get me wrong though. Videos are great but images are more for visual aids to the message and not there to directly deliver the message.</p>
<p>Videos also won&#8217;t have the same SEO capabilities as images so I wouldn&#8217;t rely solely on video for visuals. It is always a good idea to write very descriptive text that covers everything that is covered in your video. Not everyone wants to watch your video and Google will do a better job indexing your content with text to crawl.</p>
<h3>Where do I find images &amp; photos?</h3>
<p>The easiest thing to do is take the photos yourself. Writing an article about health or fitness? Have your photo taken while you&#8217;re on the treadmill. Another option is to purchase stock photos or graphics using sites like <a title="Sotkc Photos" href="http://www.istockphoto.com/CliftonH" target="_blank">iStock.com</a>, or <a title="Stock Photos" href="http://photodune.net/?ref=cliftonh" target="_blank">PhotoDune.com</a>. If you want to be really creative then you can purchase your own image/photo editing software to create your own graphics.</p>
<h3>Final Thoughts</h3>
<p>Don&#8217;t be boring. When you are blogging in a world where everyone and their mom has a blog too, the competition to draw the attention of readers and keep them coming back can be difficult. Difficult, unless you are ready to do what it takes to stand out from the rest. Attention to detail like choosing the right images or photos then placing them in the right spot can make a drastic difference. It may take some practice or asking your friends for their opinion but don&#8217;t give up because soon you&#8217;ll be creating articles that would be fit for a magazine!</p>
<p>The post <a href="http://cliftonhatfield.com/add-some-life-to-your-blog-posts/">Add Some Life To Your Blog Posts</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/add-some-life-to-your-blog-posts/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Improve Your Blog&#8217;s Page Speed</title>
		<link>http://cliftonhatfield.com/improve-your-blogs-page-speed/</link>
		<comments>http://cliftonhatfield.com/improve-your-blogs-page-speed/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 05:48:08 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Firefox Add-ons]]></category>
		<category><![CDATA[get traffic]]></category>
		<category><![CDATA[page load times]]></category>
		<category><![CDATA[Page Speed Add-on for Firefox]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[search engine results position]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3336</guid>
		<description><![CDATA[<p>Your blog's page speed is very important because it can determine whether or not your visitor hangs around for the page to load so they can read your content. It can determine the page's position within Google's search engine results. If you are concerned about things like your search engine optimization and delivering your awesome content as fast as possible to your reader then page speed should be at the top of your list. </p><p>The post <a href="http://cliftonhatfield.com/improve-your-blogs-page-speed/">Improve Your Blog&#8217;s Page Speed</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3368" title="Faster Pase Speeda" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/fast-page-speed.jpg?resize=225%2C168" alt="Faster Pase Speeda" data-recalc-dims="1" /></h3>
<h3>How do I improve my blog&#8217;s page speed?</h3>
<p>This is another question I am asked often and it is about time I <del>share</del> blog about the tool I use to <strong>optimize my blog&#8217;s page load times</strong>. If you are concerned about things like your search engine optimization and delivering your awesome content as fast as possible to your reader then <em>page speed should be at the top of your list. </em>Right now, I am going to share with you how I optimize my page speeds and what tool I use to do this.<span id="more-3336"></span></p>
<h3>Page Speed Add-on for Firefox</h3>
<p><strong>The <a title="Page Speed Add-on for Firefox" href="http://code.google.com/speed/page-speed/download.html" target="_blank">Page Speed Add-on for Firefox</a> is flat out rockin!</strong> This Google-built tool is designed to help you optimize the load times of specific pages on your blog. It will tell you what is affecting it the most and if applicable it will give you an optimized version of the file or image that may be slowing things down. The add-on will also score each area of the file when you an analysis as well as give you an overall score out of 100 maximum.<br />
<a href="http://code.google.com/speed/page-speed/download.html"><img class="aligncenter size-full wp-image-3349" title="Firebug Page Speed For Your Blog" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/firebug-page-speed1.jpg?resize=558%2C160" alt="Firebug Page Speed For Your Blog" data-recalc-dims="1" /></a></p>
<h3 style="text-align: left;">Why is Page Speed important?</h3>
<p>Your blog&#8217;s page speed is very important because it can determine whether or not your visitor hangs around for the page to load so they can read your content. It can determine the <strong>page&#8217;s position within Google&#8217;s search engine results</strong>. If you decide to advertise your blog on Google Adwords, they will use the landing page&#8217;s load time to help determine your ad&#8217;s <a title="Google Adwords Quality Score" href="http://adwords.google.com/support/aw/bin/answer.py?hl=en&amp;answer=10215" target="_blank"><span style="text-decoration: underline;">Quality Score</span></a> <em>(a high Quality Score means that your keyword will trigger ads in a higher position and at a lower cost-per-click : CPC)</em>.</p>
<p><a href="http://cliftonhatfield.com/who-am-i/"><img class="aligncenter size-full wp-image-3347" title="Google Clifton Hatfield" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/google-clifton-hatfield.jpg?resize=558%2C160" alt="Google Clifton Hatfield" data-recalc-dims="1" /></a></p>
<h3>What does the Page Speed Add-on tell me?</h3>
<p>After running an analysis using Page Speed, I receive a score and a complete list of what I need to work on improving if <strong>I want my page to load faster</strong>. It meters the HTTP Headers, images, javascript files, CSS files, style selectors, and the list goes on&#8230;Are your images too large and not optimized for the web? No problem because the add-on will tell you which images need optimizing, how much they can be reduced, and even a &#8216;Save As&#8217; link to download the optimized version <em>(which you can then FTP back to your theme&#8217;s images directory to replace the unoptimized version)</em>.</p>
<h2 style="text-align: center;"><strong>Watch the Video</strong></h2>
<p style="text-align: center;"><a href="http://clftn.co/video.php?video=http%3A%2F%2Fcdn.clftn.co%2Fvideos%2FHow+to+use+Page+Speed+Firefox+Addon+for+Web.mp4&amp;autoplay=true&amp;&amp;rel="shadowbox;;><img class="size-full wp-image-3360 no-border" title="Page Speed Tutorial" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/page-speed-tutorial.jpg?resize=580%2C366" alt="Page Speed Tutorial" data-recalc-dims="1" /></a></p>
<h3 style="text-align: left;">Where can I download Page Speed or learn more about it?</h3>
<p><a title="Download Page Speed" href="http://code.google.com/speed/page-speed/download.html" target="_blank">Download Page Speed</a> on Google Code for either Mozilla Firefox (need the <a title="Firebug for Firefox" href="http://getfirebug.com/" target="_blank">Firebug extension</a> first) or for Google Chrome browsers. The <a title="Page Speed Family Overview" href="http://code.google.com/speed/page-speed/docs/overview.html" target="_blank">Page Speed Family</a> Overview can provide additional links to better help you understand the tool or you can watch the video within this article.</p>
<h3>I am a novice user but concerned about load times, all of this scares me</h3>
<p>I understand your concern and the difficulty involved with using tools designed for developers. If you would rather not deal with installing the Page Speed Add-on then you can just use the <a title="Page Speed Online Tool" href="http://code.google.com/speed/page-speed/docs/online.html" target="_blank">Online Tool</a>. It gives you the same result without having it quickly accessible on your browser window.</p>
<h3>Final Thoughts</h3>
<p>Although this may be require higher skills than a moderate blogger, it is worth learning or hiring someone to teach you because as I&#8217;ve listed in the first paragraph it is important. I do a lot of searching on Google and if the page takes much longer than a few seconds to load, I am out of there and slim chances I will ever return. Other people are the same way&#8230;probably even you. So concerned optimizing your blog for speed and ask your friends to check it out too for their feedback in case their experience is different than yours.</p>
<p><a title="5 Firefox Addons for Internet Marketing" href="http://cliftonhatfield.com/five-firefox-pluginsaddons-for-internet-marketing/">Check out 5 Firefox Addons for Internet Marketing</a></p>
<h3>Page Speed Links</h3>
<p><a title="Page Speed Home" href="http://code.google.com/speed/page-speed/">Page Speed Home</a></p>
<p><a title="Download Page Speed Firefox Add-on" href="http://code.google.com/speed/page-speed/download.html" target="_blank">Download Page Speed Firefox Add-on</a></p>
<p><a title="Using Page Speed for Firefox" href="http://code.google.com/speed/page-speed/docs/using_firefox.html" target="_blank">Using Page Speed for Firefox</a></p>
<p><a title="Using Page Speed for Google Chrome" href="http://code.google.com/speed/page-speed/docs/using_chrome.html" target="_blank">Using Page Speed for Chrome</a></p>
<p><a title="Use Page Speed Online Tool" href="http://pagespeed.googlelabs.com/" target="_blank">Page Speed Online Tool</a></p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/improve-your-blogs-page-speed/">Improve Your Blog&#8217;s Page Speed</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/improve-your-blogs-page-speed/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Organic Traffic For Blogs</title>
		<link>http://cliftonhatfield.com/organic-traffic-for-blogs/</link>
		<comments>http://cliftonhatfield.com/organic-traffic-for-blogs/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 02:47:28 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[organic traffic]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SEO Plugins]]></category>
		<category><![CDATA[SEOPressor]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3293</guid>
		<description><![CDATA[<p>Organic traffic is best obtained by relevant links, relevant content, and proper content formatting. That is it at its simplest form. Organic traffic is not easy business and if it was, everyone would be able to do it...successfully.</p><p>The post <a href="http://cliftonhatfield.com/organic-traffic-for-blogs/">Organic Traffic For Blogs</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3299" title="quick-traffic" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/quick-traffic.jpg?resize=225%2C225" alt="" data-recalc-dims="1" />Organic Traffic Disclaimer</h3>
<p>I just received an email today from a friend who was inquiring about how to build organic traffic to your blog or website. I could probably write at least two books on proper ways to gain organic traffic so explaining it within a single email will be difficult. It is constantly changing and evolving. <span style="text-decoration: underline;">Organic traffic</span> is not easy business and if it was, everyone would be able to do it&#8230;successfully. So with that boring stuff said&#8230;</p>
<p><strong>Organic traffic is best obtained by relevant links, relevant content, and proper content formatting. That is it at its simplest form.<span id="more-3293"></span></strong></p>
<h3>Organic Traffic &#8211; Relevant Links<strong><br />
</strong></h3>
<p>Relevant links are classed into <strong>on-page</strong> and <strong>off-page</strong> linking. Receiving <span style="text-decoration: underline;">inbound links</span> from relevant high ranked websites with proper anchor text and content is important and will help to increase in <span style="text-decoration: underline;">Google&#8217;s Page Rank </span>system. <em>For example</em>, if <a title="Havard Technology" href="http://news.harvard.edu/gazette/section/science-n-health/technology/" target="_blank">Harvard Engineering &amp; Technology</a> Dept. is linked to your blog post about Facebook Technology. Also, linking from within your blog to other content on your blog helps Google to understand the relationship between pages/articles within your blog which will give it a better understanding of what it is that your blog/website is about. <em>For example</em>, you&#8217;ve written about article about <a title="Email Marketing Superhero" href="http://cliftonhatfield.com/email-marketing-superhero/">Proper Email Marketing</a> and within the article text you also link to your article about the Top 5 <a title="Making Your Emails More Engaging" href="http://cliftonhatfield.com/making-your-emails-more-engaging/">Email Marketing Services</a>.</p>
<h3>Organic Traffic &#8211; Relevant Content</h3>
<p>Relevant content is important because it gives Google a clear understand on what your blog/website is about. If you have blog posts about real estate, <a title="Talk Fusion Network Marketing Company" href="http://what-is-talk-fusion.com" target="_blank">network marketing</a>, Pittsburgh Steelers, lawn care, etc then you don&#8217;t really have a centralize topic. Pick a topic or niche for a blog and stick with it. If the blog is attached to a website that sells a product, write articles about the latest news on the industry, or even something that may interest your shoppers like how the product is made.</p>
<h3>Organic Traffic &#8211; Relevant Content Formatting</h3>
<p>Proper content formatting is the use of HTML to highlight keywords/phrases to target for organic traffic. Just as important is using them correctly and not over-doing it. Proper use of <a title="Writing A Blog Post? Make sure it’s worth it. : Part 1" href="http://cliftonhatfield.com/writing-a-blog-post-make-sure-its-worth-it-part-1/">heading tag</a>s (H1, H2, H3, etc) to create a hierarchy of keywords. Making font bold or italic and also tip off search engines that that keyword is important. Proper keyword placement within the content and impact organic traffic too. Also, making sure targeted keywords are used within the page URL and within the title tags.</p>
<h3>SEOPressor</h3>
<p>If you are serious about your SEO (<a title="WordPress Blog Search Engine Optimization" href="http://cliftonhatfield.com/wordpress-blog-search-engine-optimization/">search engine optimization</a>) please don&#8217;t get caught up in the <a title="5 Out-of-Date SEO Strategies on FamousBloggers.net" href="http://cliftonhatfield.com/5-out-of-date-seo-strategies-on-famousbloggers-net/">out-of-date SEO tricks</a> because they will only hurt you. Invest in one of the most powerful SEO plugins currently available for WordPress blogs, <a title="SEOPressor WordPress SEO Plugin" href="http://cliftonh.seopressor.hop.clickbank.net" target="_blank">SEOPressor</a>. Let the SEOPressor WordPress Plugin guide you to write and format your blog post content for on-page optimization. <a title="SEOPressor WordPress Plugin" href="http://cliftonh.seopressor.hop.clickbank.net" target="_blank">Visit SEOPressor Website</a> or&#8230;</p>
<p style="text-align: center;"><span style="font-size: medium;"><a title="SEOPressor Video" href="http://clftn.co/video.php?video=http%3A%2F%2Fcdn.clftn.co%2Fvideos%2Fseopressor.mp4&amp;width=800&amp;height=485&amp;autoplay=true" rel="shadowbox;width=800;height=485;"><strong><span style="text-decoration: underline;">Watch the SEOPressor Video</span></strong></a></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><a title="SEOPressor Plugin" href="http://cliftonh.seopressor.hop.clickbank.net/" target="_blank"><strong>Yes, </strong>I want that SEOPressor Plugin!</a></span></p>
<h3>Buying Traffic</h3>
<p>Sometimes buying advertising is a great way to get the ball rolling on organic traffic even though it isn&#8217;t organic it can lead to organic traffic from your visitors sharing and bookmarking the pages.</p>
<h3>Final Thought</h3>
<p>I hope that was enough information to give you some very simple basics to build organic traffic through SEO for blogs. I didn&#8217;t touch on <a title="Facebook Pages &amp; Top News" href="../edgerank-facebook-pages-top-news/">Facebook Marketing</a> (not advertising) or <a title="Why You Need To Be On Digg.com, Ya Dig?" href="../why-you-need-to-be-on-digg-com-ya-dig/">bookmarking</a> to gain organic traffic. Also, those tips above are simplified because it goes much much deep than that so if you are serious about optimizing your blog for organic traffic hire a couch, an marketing company, or reading the most up-to-date information. <strong><em>May the Force be with You.</em></strong></p>
<p>&nbsp;</p>
<p>The post <a href="http://cliftonhatfield.com/organic-traffic-for-blogs/">Organic Traffic For Blogs</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/organic-traffic-for-blogs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add Your Blog&#8217;s Commenters To Your Email List</title>
		<link>http://cliftonhatfield.com/add-your-blogs-commenters-to-your-email-list/</link>
		<comments>http://cliftonhatfield.com/add-your-blogs-commenters-to-your-email-list/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 06:21:22 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[autoresponder]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[build your email list]]></category>
		<category><![CDATA[CCR Plugin]]></category>
		<category><![CDATA[Clifton's Comment Responder Plugin]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[lightbox plugin]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3279</guid>
		<description><![CDATA[<p>Are you ready for this one? I&#8217;ve written many WordPress plugins and I&#8217;ve built hundreds of blogs but my CCR Plugin is by far my favorite creation! Online Powerhouse Internet Marketing has exploded tremendously in the last few years and blogging has growth right there with it. Often, the two are meshed together to create [...]</p><p>The post <a href="http://cliftonhatfield.com/add-your-blogs-commenters-to-your-email-list/">Add Your Blog&#8217;s Commenters To Your Email List</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3282" title="Cliftons Comment Responder Plugin" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/cliftons-comment-responder-plugin.jpg?resize=225%2C189" alt="Cliftons Comment Responder Plugin" data-recalc-dims="1" />Are you ready for this one?</p>
<p>I&#8217;ve written many <a href="../category/wordpress/">WordPress</a> plugins and I&#8217;ve built hundreds of blogs but my CCR Plugin is by far my favorite creation!<strong> </strong></p>
<h3><strong>Online Powerhouse</strong></h3>
<p><a title="Internet Marketing" href="http://cliftonhatfield.com/tag/internet-marketing/">Internet  Marketing</a> has exploded tremendously in the last few years and blogging  has growth right there with it. Often, the two are meshed together to  create a powerhouse of marketing strategies while establishing a  home-base for an online presence.<span id="more-3279"></span><strong> </strong></p>
<h3><strong>Introducing Clifton&#8217;s Comment Responder Plugin</strong><strong> (CCR Plugin)</strong></h3>
<p>If  you&#8217;ve visited any <a title="WordPress Blogging" href="http://cliftonhatfield.com/category/blogging-tools/">blogs</a> in the last few years then you&#8217;ve definitely  seen the subscription form in the sidebars or maybe the <a title="Free WordPress Lightbox Plugin " href="http://cliftonhatfield.com/cliftons-lightbox-plugin-page/">lightbox/popup</a> asking your name and email while offering you a newsletter or product in  return. Great stuff&#8230;.but old school..still effective&#8230;but I&#8217;ve got  an even easier way. It&#8217;s called the <a href="http://ccr-plugin.com/">CCR Plugin</a>.</p>
<p><img src="../wp-content/uploads/manage_ccr_campaigns.jpg" alt="" width="540" height="153" /></p>
<h3><strong>Capture your commenters&#8217; name &amp; email address</strong></h3>
<p>Capture your commenters&#8217; name and email address and add it to your email service, e.g. <a href="http://getresponse.cliftonhatfield.com/">Get Response</a>, <a href="http://aweber.cliftonhatfield.com/">Aweber</a>, <a href="http://what-is-talk-fusion.com/">Talk Fusion</a>.  Create autoresponder campaigns in your email marketing service, then  add those campaigns to your blog posts, so when someone leaves a  comment, they can either opt-in to your email list or (if you choose)  have them added automatically. <em>(it&#8217;s legal too)</em> <strong> </strong></p>
<h3><strong>How can this be really effective?</strong></h3>
<p>Let  me give you an example of one way this plugin can be very effective for  YOU. Let&#8217;s say you&#8217;ve written an e-book about Health &amp; Wellness  that you&#8217;ve begun to sell and market online. You&#8217;ve decided to write a  blog post about the Healthy Eating and the post is getting some action  from your followers, but there&#8217;s one problem. <em>No one is buying your book.</em> You know that they will love it but they just need to read a few pages  to provoke them to buy it. Just offer a download link on your blog  doesn&#8217;t give you an opportunity to market a sale to those how download a  sample of your book.</p>
<p><img src="../wp-content/uploads/add_ccr_campaign.jpg" alt="" width="540" height="162" /><strong></strong></p>
<h3><strong>Here is what you do.</strong></h3>
<p>Make a PDF of 5 pages from the best chapter in your book. Next, create  an autoresponder with your email marketing service to immediately send a  new subscriber those 5 pages. Then, create a new CCR Campaign with the  subscription form for your autoresponder from your email marketing  service. After that, attach the CCR Campaign to the Healthy Eating blog  post. Finally, tell your readers that when they leave a comment on your  blog post, your autoresponder will immediately email them the download  link to your 5 pages from the best chapter of your e-book on Health  &amp; Wellness. Now that they&#8217;ve gotten a taste of your best chapter,  follow up with them and offer them to purchase your full e-book! <em><strong>Now do you see how incredibly effective this plugin is?!</strong></em></p>
<p>The <a href="http://ccr-plugin.com/">CCR Plugin</a> is available for $70 at <a href="http://ccr-plugin.com/">http://CCR-Plugin.com</a> OR send me an email and <strong>ask me how you can have it for $0.00</strong>&#8230;<span style="text-decoration: underline;"><em><strong>FREE!</strong></em></span></p>
<h3 style="text-align: center;"><span style="text-decoration: underline;"><em><strong>Give it a try and leave a comment below!<br />
</strong></em></span></h3>
<p>Thanks!<br />
Clifton</p>
<p>P.S.  Not only can you get my CCR Plugin for FREE but I&#8217;ll give you  all of my products and services at no cost. Hurry to find out. :)</p>
<p>P.S.S. <strong>Know any other bloggers?</strong> I bet they would this plugin too. <a href="http://ccr-plugin.com/become-an-affiliate/">Become an affiliate</a> and share this with them too!</p>
<p>The post <a href="http://cliftonhatfield.com/add-your-blogs-commenters-to-your-email-list/">Add Your Blog&#8217;s Commenters To Your Email List</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/add-your-blogs-commenters-to-your-email-list/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Power of Sequential Emails</title>
		<link>http://cliftonhatfield.com/the-power-of-sequential-emails/</link>
		<comments>http://cliftonhatfield.com/the-power-of-sequential-emails/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 03:19:02 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[building your brand]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[Get Response]]></category>
		<category><![CDATA[sequential emails]]></category>
		<category><![CDATA[talk fusion]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3262</guid>
		<description><![CDATA[<p>Sequential Email Marketing If you are familiar with email marketing then you should be familiar with sequential emails as well. If not, let me enlighten you. I am sure you have received a sequential email to your inbox at one point or another. This is because every success internet marketing campaign uses them. What are [...]</p><p>The post <a href="http://cliftonhatfield.com/the-power-of-sequential-emails/">The Power of Sequential Emails</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="size-medium wp-image-3269 alignright" title="Timed Emails" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/clock.jpg?resize=225%2C168" alt="" data-recalc-dims="1" />Sequential Email Marketing</h3>
<p>If you are familiar with <a title="Email Marketing Superhero" href="http://cliftonhatfield.com/email-marketing-superhero/">email marketing</a> then you should be familiar with sequential emails as well. If not, let me enlighten you. I am sure you have received a sequential email to your inbox at one point or another. This is because every success internet marketing campaign uses them.</p>
<h3>What are Sequential Emails?</h3>
<p>The most common term or another name for sequential emails is autoresponder or autoresponder emails. These are a series of emails sent on a predetermined timeframe. <span id="more-3262"></span>For example, you sign up for a new service online. Then, you immediately receive an email from them within your inbox. Then on the next day, you receive another email that extends the series from the first one and so on until you unsubscribe or you complete the entire sequential email campaign.</p>
<h3>Why are Sequential Emails Effective?</h3>
<p>They are most effective because they are automated. Automation is a key factor to success. You need hard work &amp; automation because it doesn&#8217;t matter if you are a one man shop or a multilevel corporation, automation will always save time, money, and man power.</p>
<h3>Sequential Emails Build Brands</h3>
<p>Sequential Emails will help you to build your brand. Why? Because of the constant scheduled contact you will have with your audience. Pay close attention when creating your sequential emails and make sure to make your brand clear and important. If your subscribers are receiving your campaign emails then they may be new to you and your company&#8217;s brand. Your sequential emails will be your chance you keep your brand in front of them after they&#8217;ve left your website.</p>
<p>The post <a href="http://cliftonhatfield.com/the-power-of-sequential-emails/">The Power of Sequential Emails</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/the-power-of-sequential-emails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Email Marketing Superhero</title>
		<link>http://cliftonhatfield.com/email-marketing-superhero/</link>
		<comments>http://cliftonhatfield.com/email-marketing-superhero/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 02:46:51 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[email automation]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[email superhero]]></category>
		<category><![CDATA[Get Response]]></category>
		<category><![CDATA[sequential emails]]></category>
		<category><![CDATA[talk fusion]]></category>
		<category><![CDATA[triggered emails]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3257</guid>
		<description><![CDATA[<p>&#8230;doesn&#8217;t require you to wear tights or be faster than a speeding bullet&#8230; How are things going for you lately? Have you been struggling to stay connected with your audience, customers, or prospects? From home-based business operations to Fortune 500 mega-companies they all use a very simple system to take full advantage of this totally [...]</p><p>The post <a href="http://cliftonhatfield.com/email-marketing-superhero/">Email Marketing Superhero</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="size-medium wp-image-3258 alignright" title="Businesswoman working on laptop." src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/iStock_000009039974XSmall.jpg?resize=225%2C149" alt="Email Marketing Image" data-recalc-dims="1" />&#8230;doesn&#8217;t require you to wear tights or be faster than a speeding bullet&#8230;</p>
<p>How are things going for you lately? Have you been struggling to stay connected with your audience, customers, or prospects? From <a title="Talk Fusion Video Email Marketing" href="http://join-talk-fusion.com" target="_blank">home-based business operations</a> to Fortune 500 mega-companies they all use a very simple system to take full advantage of this totally awesome resource we call &#8220;email&#8221;&#8230;or email marketing to be a little more specific.</p>
<p><a title="Get Response Email Marketing" href="http://getresponse.cliftonhatfield.com" target="_blank">Email Marketing</a> is one of the best (if not THE best) ways to communicate information to those you want to reach, AKA Your Audience/Customer. Now I know that I said that it doesn&#8217;t require me to be faster than a speeding bullet, and that&#8217;s true, but my sent emails most definitely are&#8230;and I love that is can instantly reach thousands of people at the same time by clicking a button&#8230;and even not clicking a button when it&#8217;s automated!<span id="more-3257"></span></p>
<h3>Automation</h3>
<p>Most businesses have one of two problems. One, they either have too many employees doing too many different things and all at the same time. Or two, they are just a one or two person operation trying to handle EVERYTHING by themselves and that can be very overwhelming. The answer to both problems is Automation.</p>
<p>There are two types of automated email &#8212; Triggered &#8212; <a title="What are Sequential Emails?" href="http://cliftonhatfield.com/the-power-of-sequential-emails/" target="_blank">Sequential</a>. Triggered are emails sent to a person after they perform a particular action, like signing up for your website or purchasing your product. Sequential emails are sent to a person on a predetermined time frame, like after you sign up for a service and a week later you get an email from them then another one the following week and so on.</p>
<p>The power between the two is contact. Have you ever heard the term &#8220;Out of sight out of mind&#8221;? Well&#8230;.this is the opposite. :) After you&#8217;ve acquired someones email address, don&#8217;t hesitate to email them. They obviously want to stay connected with you or else they would have never given you their private information in the first place,  right?</p>
<p>So , here is what you must do&#8230;Get a powerful email marketing system that can handle all of your needs and has the resources to handle your growing email list. As soon as you&#8217;ve signed up for your new service, find their tutorials and read/watch through them. Learn everything you can about maximizing their system and absorb their tips and marketing strategies&#8230;this stuff is priceless. Once you are ready, create your first sequential follow up email campaign so when you are ready to start building your list, you already have the emails written and scheduled that you want to send to them. From there&#8230;.it&#8217;s Game On!</p>
<h3>Email Marketing Systems</h3>
<p>Are you using an email marketing system? If the answer is yes, do they provide all of the features and tools that you need, like multimedia support, plain text &amp; HTML versions, free stock images, detailed statistics, and email surveys just to name a few? How about a custom API that your developer can use to set up smooth custom operations that can seamlessly integrate with your blog or website? <a title="Get Response Email Marketing" href="http://getresponse.cliftonhatfield.com" target="_blank">Get Response Email Marketing</a> provides me with ALL of those things PLUS so much more. If you aren&#8217;t using one yet&#8230;what the heck are you thinking?! LOL You are just spinning your wheels in the mud by not having a powerful email marketing system set up.</p>
<h3>Get Response</h3>
<p>I&#8217;ve been using Get Response over the last few years and have been able to reach thousands of people hundreds of times while giving me the upper hand against my competition. I&#8217;ve watched Get Response video tutorials, read through their blog, and been on their free webinars to help me learn this marketing strategy. And you know what? It has paid off ten fold.</p>
<p>So now that I&#8217;ve shared some of my email marketing secrets with you&#8230;.are you ready to become an Email Superhero too? <a title="Get Response Email Marketing" href="http://getresponse.cliftonhatfield.com" target="_blank">Join Get Response</a> Today starting at just $8.16/MONTH&#8230;seriously&#8230;that is about <span style="text-decoration: underline;"><strong>26 cents a day!</strong></span></p>
<p><span style="text-decoration: underline;"><strong><img class="aligncenter size-full wp-image-3256" title="Get Response Email Marketing" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/getresponse_graphic.jpg?resize=348%2C310" alt="" data-recalc-dims="1" /></strong></span></p>
<p><span style="text-decoration: underline;"><strong><br />
</strong></span></p>
<p>The post <a href="http://cliftonhatfield.com/email-marketing-superhero/">Email Marketing Superhero</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/email-marketing-superhero/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Another Pet Peeve of a Blog Rockstar &#8211; More Tag</title>
		<link>http://cliftonhatfield.com/another-pet-peeve-of-a-blog-rockstar-more-tag/</link>
		<comments>http://cliftonhatfield.com/another-pet-peeve-of-a-blog-rockstar-more-tag/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 04:19:31 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[More Tag]]></category>
		<category><![CDATA[post excerpts]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3187</guid>
		<description><![CDATA[<p>Use the More Tag with TinyMCE Advanced Plugin I hate hate hate to see the blog home page display the last 10 blog posts from start to finish. Don&#8217;t scare your visitors off because they can&#8217;t find an article that is actually interesting to them. Only show excerpts of your latest blog posts on your [...]</p><p>The post <a href="http://cliftonhatfield.com/another-pet-peeve-of-a-blog-rockstar-more-tag/">Another Pet Peeve of a Blog Rockstar &#8211; More Tag</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3439" title="pet-peeve-blog-rockstar-more-tag" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/pet-peeve-blog-rckstar-more-tag.jpg?resize=225%2C121" alt="pet-peeve-blog-rockstar-more-tag" data-recalc-dims="1" />Use the More Tag with TinyMCE Advanced Plugin</h3>
<p>I hate hate hate to see the blog home page display the last 10 blog posts from start to finish. Don&#8217;t scare your visitors off because they can&#8217;t find an article that is actually interesting to them. Only show excerpts of your latest blog posts on your homepage and let them quickly find the ones the wants to read!</p>
<p style="text-align: center;"><span style="font-size: x-large;"><a href="http://cliftonhatfield.com/?p=3187">Watch The Video!</a></span></p>
<p style="text-align: center;"><span style="font-size: x-large;"><a href="http://cliftonhatfield.com/?p=3187"></a></span><span id="more-3187"></span></p>
<p><object width="590" height="473"><param name="movie" value="http://www.youtube.com/v/2v0BeFde8K0?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="590" height="473" src="http://www.youtube.com/v/2v0BeFde8K0?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;"><span style="font-size: large;">Click This Link</span><span style="font-size: large;"> </span><span style="font-size: large;">===&gt; </span><span style="text-decoration: underline;"><span style="font-size: large;"><a href="http://cliftonhatfield.com/wordpress-excerpt-with-the-more-tag/" target="_blank">WordPress Excerpt with the More Tag</a></span></span></p>
<p>The post <a href="http://cliftonhatfield.com/another-pet-peeve-of-a-blog-rockstar-more-tag/">Another Pet Peeve of a Blog Rockstar &#8211; More Tag</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/another-pet-peeve-of-a-blog-rockstar-more-tag/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Facebook Apps&#8217; Access to Contact Information</title>
		<link>http://cliftonhatfield.com/facebook-apps-access-to-contact-information/</link>
		<comments>http://cliftonhatfield.com/facebook-apps-access-to-contact-information/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 08:46:29 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Social Media News]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[facebook apps]]></category>
		<category><![CDATA[facebook connect]]></category>
		<category><![CDATA[facebook news]]></category>
		<category><![CDATA[facebook privacy policy]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3141</guid>
		<description><![CDATA[<p>They now have your address and phone number If you keep up with the latest news about Facebook and more specifically their privacy issues then you are probably aware of their latest change that now offers Facebook Application developers access to your street address and phone number. Wait&#8230;what?! Well, that is probably what you&#8217;ve heard [...]</p><p>The post <a href="http://cliftonhatfield.com/facebook-apps-access-to-contact-information/">Facebook Apps&#8217; Access to Contact Information</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3153" title="Facebook Privacy" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/facebook_lock.png?resize=225%2C230" alt="Facebook Privacy" data-recalc-dims="1" />They now have your address and phone number</h3>
<p>If you keep up with the latest news about Facebook and more specifically their privacy issues then you are probably aware of their latest change that now offers Facebook Application developers access to your street address and phone number. <strong>Wait&#8230;what?!</strong> Well, that is probably what you&#8217;ve heard and instantly thought, &#8220;Oh no! Now I am going to start receiving junk mail and solicited phone calls!&#8221;. <em>NOT TRUE!</em></p>
<p>Unfortunately, this makes for good news since over a half a billion people are on <a href="http://facebook.com/cliftonhatfield.page" target="_blank">Facebook.com</a>. The media is blowing, yet again, another Facebook Privacy change out the water and I am here to clear things up for you.</p>
<h3>They LIE</h3>
<p>If you are looking for your news on social media from main stream news channels, then the information you are receiving is probably way off base. Those guys have no idea what they are talking about and they skew the headlines to draw your attention and only stir up more upset people. Basically, they lie.<span id="more-3141"></span></p>
<p>I have built many Facebook applications during my time and I am going to fill you in on what we have access to retrieve from your profile. The answer is nothing. <strong>We do not have access to retrieve ANY information from you Facebook profile without your consent.</strong> Should I say that again? Because I will if you need me too.</p>
<p>When you decide to use a Facebook application, you will be asked to authorize permission to specific data which is meant to enhance your experience while using that app. <a href="http://cliftonhatfield.com/facebook-pages-for-small-businesses-part-1/">Facebook</a> will display a nice little popup (sometimes it&#8217;s a whole web page) that lists all of the information the Facebook App is trying to receive permission to access. Don&#8217;t want them to have your phone number? Cool, deny it. However, you won&#8217;t be able to use the app. That sounds kind of crappy huh? Let me explain.</p>
<h3>Facebook makes your life easier</h3>
<p>You find this cool Facebook App listed in the Games category and it looks like tons of fun. You decide to give it a whirl but when trying to access the app, it asks for permission to access your name, address, and phone number. Huh? Why the heck would a game on Facebook need my name and phone number?! I am not sure but probably not for the greater good. So what do you do? Deny access and run for the hills (stay away from that app). However, what if you are shopping for Christmas gifts on a website that offers Facebook Connect. Using Facebook Connect, the checkout process asks for your name, address, and phone from Facebook. Why would a shopping cart need that information? Oh&#8230;I would have to enter that information in anyway to finish checking out, so sure, I will authorize this shopping cart access to my name, address, and phone from my Facebook profile. Now I won&#8217;t have to enter that information into the checkout process. See how that makes sense?</p>
<h3>Final Thought</h3>
<p>Next time you see the &#8220;Latest News&#8221; about Facebook giving all of your personal information away, don&#8217;t get caught up in the hype and do just a little real research and you will quickly learn there is no value to that story. Facebook is only trying to make the web a better and easier place for you to connect and be social. When a Facebook Application asks for access to your personal information, review it and if it looks fishy, bail. Don&#8217;t go crying to the media about Facebook. The people at Facebook are only trying to help and it is the app developer who is trying to make a fool out of you. Be safe and be smart and you will make it out of the internet alive.</p>
<p>The post <a href="http://cliftonhatfield.com/facebook-apps-access-to-contact-information/">Facebook Apps&#8217; Access to Contact Information</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/facebook-apps-access-to-contact-information/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Why Napster Failed in 2001</title>
		<link>http://cliftonhatfield.com/why-napster-failed-in-2001/</link>
		<comments>http://cliftonhatfield.com/why-napster-failed-in-2001/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 05:17:57 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mp3 download]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[napster]]></category>
		<category><![CDATA[sean parker]]></category>
		<category><![CDATA[steve jobs]]></category>
		<category><![CDATA[the social network]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3135</guid>
		<description><![CDATA[<p>I was probably the last Facebook Application Developer to watch The Social Network but something that struck a chord with me was the role that Justin Timberlake played as Sean Parker, a co-founder of Napster. This caused me to think back during the huge popularity of the music sharing giant and how it came crashing [...]</p><p>The post <a href="http://cliftonhatfield.com/why-napster-failed-in-2001/">Why Napster Failed in 2001</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3138" title="napster" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/napster.jpg?resize=225%2C285" alt="" data-recalc-dims="1" />I was probably the last Facebook Application Developer to watch <span style="text-decoration: underline;">The Social Network</span> but something that struck a chord with me was the role that Justin Timberlake played as Sean Parker, a co-founder of <em>Napster</em>. This caused me to think back during the huge popularity of the music sharing giant and how it came crashing down in the early 2000s. But even more so, why did it fail and how did the music industry miss its biggest opportunity?</p>
<h2>They were stealing</h2>
<p>I think that we all know Napster users were flat out stealing, we get it. I buy a CD, rip the music, upload it to Napster, then let everyone around the world download the music and mix their own CDs. Like I said, stealing.</p>
<p>Metallica got word of this after a demo of their &#8220;I disappear&#8221; hit the Napster network and everyone was rockin&#8217; to it or listening to it on the radio&#8230;.before it was ever released. Not good. After Metallica files a lawsuit, Dr. Dre follows suit. Then in 2001, Napster turned out the lights.<span id="more-3135"></span></p>
<h2>Biggest Opportunity Ever</h2>
<p>Have you ever used iTunes? Probably, considering they have been around since 2003 and over 250 million iPods have been sold. So what does that have to do with Napster? Well, everything.</p>
<p>During its peak, Napster had more than 26 million users&#8230;.yeah&#8230;.26 million! That might not seem like a lot now because Facebook&#8217;s 500+ million users gets flashed all over the place but right after the millennium, that was a HUGE number.</p>
<p>Ok, back to Metallica. These guys became upset to see their music being illegally shared online and they have ever right to be mad. I agree. However, this is where they, meaning the music industry, missed the biggest opportunity they have ever had. Their number one goal was to shut Napster down and cut off millions of users who were trying to easily access millions of song titles. Keyword there is &#8216;<em>easily</em>&#8216;. Not only was Napster popular because it was free, but it was popular because it was easy to use, easy to find the songs you wanted, and much easier than driving to the store and digging through rows of CD cases.</p>
<p>The music industry tycoons weren&#8217;t looking for an opportunity to make money because they were blinded by the money they had already lost. The move they should have made was to strike a deal with Napster or possibly buy them out. But why would you buy out a company that was stealing from you? To capture the loyalty of their user base, that&#8217;s why. If A&amp;M Records would have bought out Napster, immediately they would have the attention of millions of users years before Steve Jobs. Instead, Apple launched their own online music store in 2003, iTunes. iTunes had many of the same perks of Napster, allowing you to easily find and download song titles. Then, unlike Rhaposdy, you could copy the song as many times as you want and place it in several different devices. The only difference from Napster is that you had to pay 99 cents a song. Oh No! Are people willing to pay 99 cents for a song they want? By the popularity of iTunes, I will say the answer is YES! Now, you can legally fill a CD with 18 of your favorite songs..cost $18. About the average cost of an artists CD with maybe 3-4 good songs that you would actually listen to while working out. :)</p>
<h2>Final Thought</h2>
<p>Never let the idea of losing money blind you from the opportunities to make more money. Napster was illegal and has since become a part of Best Buy&#8217;s venture but in 2001 they were king of mp3 downloads. Metallica should have seen this chance but let a little embarrassment get the best of them. I am just glad Steve figured it out. Better late than never!</p>
<p>The post <a href="http://cliftonhatfield.com/why-napster-failed-in-2001/">Why Napster Failed in 2001</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/why-napster-failed-in-2001/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create a Photo Gallery in WordPress</title>
		<link>http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/</link>
		<comments>http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 00:07:58 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[photo galleries]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[self branding]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[wordpress photo gallery]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3125</guid>
		<description><![CDATA[<p>WHOA! It has been a BUSY thirty days. Between the holidays, shopping, family events, and work, I can barely keep up. But now I am back with a new (and much needed) video tutorial on how to create a photo gallery in WordPress. How to create a photo gallery in WordPress 3.0+ Majority of the [...]</p><p>The post <a href="http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/">Create a Photo Gallery in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-3132 no-border" title="WordPress Photo Gallery" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/photo.png?resize=225%2C225" alt="WordPress Photo Gallery" data-recalc-dims="1" />WHOA! It has been a BUSY thirty days.</h3>
<p>Between the holidays, shopping, family events, and work, I can barely keep up. But now I am back with a new (and much needed) video tutorial on how to <strong>create a photo gallery in WordPress</strong>.</p>
<h3>How to create a photo gallery in WordPress 3.0+</h3>
<p>Majority of the bloggers I know are working to brand themselves. They write about topics they are passionate about and give information to those looking for their knowledge. What about branding yourself through blogging? Who are you? You may have a neatly written About Me page with a photo of yourself but people are visual. What about a photo gallery or even a video of you? <span style="text-decoration: underline;">Creating a photo gallery</span> in WordPress 3.0 is extremely simple and I have put together a video to walk you through the steps. So get your photos on your computer&#8217;s hard drive ready to be shared with your visitors through a simple and easy to navigate <em>photo gallery</em>.<span id="more-3125"></span></p>
<h3>Create a photo gallery in WordPress Video Tutorial</h3>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="595" height="359" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/9xnxNx9OD1s?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="595" height="359" src="http://www.youtube.com/v/9xnxNx9OD1s?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The post <a href="http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/">Create a Photo Gallery in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/create-a-photo-gallery-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Fingerless Gloves Are For Facebook</title>
		<link>http://cliftonhatfield.com/fingerless-gloves-are-for-facebook/</link>
		<comments>http://cliftonhatfield.com/fingerless-gloves-are-for-facebook/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 01:41:30 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Things that interest me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook statistics]]></category>
		<category><![CDATA[fingerless gloves]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile device]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3085</guid>
		<description><![CDATA[<p>Hobos and Tough Guys Hobos and tough guys are no longer the only ones wearing fingerless gloves. If you are wondering what the &#8216;heck&#8217; I am talking about let me share a few very interesting Facebook statistics with you. I think we all know that Facebook has over 500 million active users but did you [...]</p><p>The post <a href="http://cliftonhatfield.com/fingerless-gloves-are-for-facebook/">Fingerless Gloves Are For Facebook</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><a rel="attachment wp-att-3090" href="http://cliftonhatfield.com/fingerless-gloves-are-for-facebook/fingerless-facebook/"><img class="alignright size-medium wp-image-3090" title="Fingerless gloves are for Facebook" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/fingerless-facebook.jpg?resize=225%2C187" alt="Fingerless gloves are for Facebook" data-recalc-dims="1" /></a>Hobos and Tough Guys</h3>
<p>Hobos and tough guys are no longer the only ones wearing fingerless gloves. If you are wondering what the &#8216;heck&#8217; I am talking about let me share a few very interesting <span style="text-decoration: underline;"><a title="Facebook Statistics" href="http://cliftonhatfield.com/facebook-statistics-april-8-2010/" target="_blank">Facebook statistics</a></span> with you. I think we all know that <strong>Facebook</strong> has over 500 million active users but did you know that more than 200 million (40%) of those active users access Facebook from their mobile device. Those are serious numbers, folks.</p>
<p>Now that the temperatures have dropped throughout many parts of the United States, people are heading out with a pair of gloves on their hands. If you are one of the growing number of people purchasing a touch screen mobile device like<span id="more-3085"></span> the <a title="Jailbreaking an iPhone" href="http://cliftonhatfield.com/jailhouse-breaking-an-iphone-and-unlocking-cell-phones-now-legal/" target="_blank">iPhone</a> or Droid, then you probably understand the frustration of ripping off your gloves each time you want to check your friends&#8217; latest status updates or check into a new place on Facebook. Fingerless gloves are a great idea for those looking for a solution to this problem. I picked up a cheap pair this past weekend after temperatures dropped and the snow started falling. If you are looking to keep the tips of your fingers warm, there are styles available that offer mitten-like flaps that snap or button to the back of your hand when you need the touch of your skin for your mobile device.</p>
<h3>Final Thought</h3>
<p>This post was short but&#8230;..so what. I&#8217;m just really happy that the homeless and body builders aren&#8217;t the only ones allowed to get away with the convenience of fingerless gloves without looking foolish&#8230;.much. I was surprised at the warmth these gloves still provided even with my fingers were exposed. Making a quick fist was one way to keep them warm and there are always the pockets in my jeans. :) If you still think they look silly, just think about how silly you look pulling a <a title="Michael Jackson Online Memorial" href="http://apps.facebook.com/mournwatch/view_profile.php?pid=342" target="_blank">Michael Jackson</a> when you&#8217;ve got one glove on and one glove off poking away at your cell&#8230;</p>
<p>The post <a href="http://cliftonhatfield.com/fingerless-gloves-are-for-facebook/">Fingerless Gloves Are For Facebook</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/fingerless-gloves-are-for-facebook/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Facebook New Profiles</title>
		<link>http://cliftonhatfield.com/facebook-new-profiles/</link>
		<comments>http://cliftonhatfield.com/facebook-new-profiles/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 08:07:40 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Social Media News]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook changes]]></category>
		<category><![CDATA[new facebook profile]]></category>
		<category><![CDATA[tell your story]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=3057</guid>
		<description><![CDATA[<p>The New Facebook Profile&#8230;Again Whoa! It&#8217;s been more than a minute since my last blog post. I have been swamped with new projects and the launch of my latest Email List Building Tool, the CCR Plugin (Clifton&#8217;s Comment Responder Plugin). Now, I am back to talk about the New Facebook Profiles. If you&#8217;ve been on [...]</p><p>The post <a href="http://cliftonhatfield.com/facebook-new-profiles/">Facebook New Profiles</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><a rel="attachment wp-att-3074" href="http://cliftonhatfield.com/facebook-new-profiles/facebook_new_profile/"><img class="alignright size-medium wp-image-3074" title="Facebook New Profile" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/facebook_new_profile.jpg?resize=225%2C138" alt="Facebook New Profile" data-recalc-dims="1" /></a>The New Facebook Profile&#8230;Again</h3>
<p>Whoa! It&#8217;s been more than a minute since my last blog post. I have been swamped with new projects and the launch of my latest <strong>Email List Building Tool</strong>, the <a title="Email List Building Tool for WordPress" href="http://ccr-plugin.com" target="_blank">CCR Plugin</a> (Clifton&#8217;s Comment Responder Plugin).</p>
<p>Now, I am back to talk about the <strong>New Facebook Profiles</strong>. If you&#8217;ve been on Facebook within the last couple of days then you may have noticed many users have a new look to their profiles. Once again Facebook is forcing you to learn how to navigate their site as they continue to nail in a great layout. And honestly, I don&#8217;t think changing things around is a bad things for even the most newbie users. Why? Because it helps the new people to learn how to &#8220;discover&#8221; pages and navigate through new environments.  Basically, it&#8217;s good practice for them whether they like it or not.</p>
<h3>What&#8217;s so great about the new profiles?</h3>
<p>Well, I am not going to go over every little detail and bore you but I will cover a couple things that stand out and tell you why I think they are awesome. <em><strong>Get ready to tell your story.</strong></em><span id="more-3057"></span></p>
<h3>New Facebook Profile Tabs Gone</h3>
<p><a rel="attachment wp-att-3061" href="http://cliftonhatfield.com/facebook-new-profiles/facebook_new_profile_tabs/"><img class="alignright size-medium wp-image-3061" title="Facebook New Profile Tabs" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/facebook_new_profile_tabs.jpg?resize=225%2C138" alt="Facebook New Profile Tabs" data-recalc-dims="1" /></a>So if you follow the <a title="Facebook Developer's Blog" rel="nofollow" href="http://developers.facebook.com/blog/" target="_blank">Facebook Developer&#8217;s blog</a> then you knew&#8230;like a forever ago..that Facebook was going to drop profile tabs on user profiles. At first I thought that was a bummer but I should have known better. The tabs have been moved to links into the left sidebar beneath the user profile photo. This is a much better location which reflects a similar layout of the user homepage with links stacked in the left sidebar. Previously, only Facebook Pages and User Profiles were the only pages on the site that carried tabs in their layout and this was an anomaly to the rest of the site&#8217;s layout. Yes, we grew used to it but still it was too different. I will not be shocked when Facebook Page Tabs meet the same fate.</p>
<h3>New Facebook Profile Info</h3>
<p><a href="http://cliftonhatfield.com/?attachment_id=3059"><img class="alignright size-medium wp-image-3059" title="Facebook New Profile Info" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/facebook_new_profile_info.jpg?resize=225%2C138" alt="Facebook New Profile Info" data-recalc-dims="1" /></a>Facebook has dropped profile tabs (something we knew was coming) and now offers profile visitors a glimpse of the user&#8217;s info right on their profile without having to click the Info tab. Why is this awesome? One less click. Now you can find out more as soon as you land on your friend&#8217;s page without having to click that Info tab. Instantly  learn about the user&#8217;s education, company, relationship, birth date, etc. Why is this good for your profile? Facebook is made up of friends and connections. Letting people know about you is a huge focus for Facebook and being transparent with your friends is a step in the right direction.</p>
<h3>New Facebook Profile Connections</h3>
<p><a rel="attachment wp-att-3068" href="http://cliftonhatfield.com/facebook-new-profiles/facebook_new_profile_connections/"><img class="alignright size-medium wp-image-3068" title="Facebook New Profile Connections" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/facebook_new_profile_connections.jpg?resize=225%2C138" alt="Facebook New Profile Connections" data-recalc-dims="1" /></a>The people at Facebook also realize that their social networking giant is all about connections. The new <span style="text-decoration: underline;">Facebook Profile </span>Connections in the left side bar beneath your profile info links is an amazing addition! Why? Because now you can really represent your friends, family, and connections into lists and display them directly on your profile. Let others know more about the people you have connected with and the relationship you have with them. Organizing your friends into lists is another great way for you to keep friends list under control especially when you have more than a hand full of them.</p>
<h3>Final Thought</h3>
<p>You may not like the new profile layout and I am sure you have good reasons but overall I still think their changes are a huge improvement. Remember that Facebook is about building better connections with your friends and sharing your story with them. They will continue to change things until they feel like they make it as easy as possible to do that. I know that I didn&#8217;t cover everything in this post about the recent changes but I hit many of the highlights. My suggestion to you is check out the <a title="Facebook New Profile" href="http://www.facebook.com/about/profile/" target="_blank">Facebook New Profile</a> page and learn more about all of the changes. Then learn <a title="How to dominate your Facebook friends' Newsfeed with the Edgerank formula." href="http://cliftonhatfield.com/edgerank-facebook-pages-top-news/">how to dominate your Facebook friends&#8217; NewsFeed</a>.</p>
<h3>Tell Your Story On Facebook</h3>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="595" height="359" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/UJ3hfZS16Lo?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="595" height="359" src="http://www.youtube.com/v/UJ3hfZS16Lo?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The post <a href="http://cliftonhatfield.com/facebook-new-profiles/">Facebook New Profiles</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/facebook-new-profiles/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Why I Created A Tumblr Blog &amp; Why You Should Too</title>
		<link>http://cliftonhatfield.com/why-i-created-a-tumblr-blog-why-you-should-too/</link>
		<comments>http://cliftonhatfield.com/why-i-created-a-tumblr-blog-why-you-should-too/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 23:12:51 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[seo ninja]]></category>
		<category><![CDATA[tumblr]]></category>
		<category><![CDATA[tumblrize]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2973</guid>
		<description><![CDATA[<p>Blogging like a Pro So, you&#8217;ve got your WordPress blog and you&#8217;ve been blogging, building a following, and wondering what else you could do to enhance your blog. The answer is expansion. Joining a growing website like Tumblr.com give you the opportunity to publish your content on another website. You can rely on syndication and [...]</p><p>The post <a href="http://cliftonhatfield.com/why-i-created-a-tumblr-blog-why-you-should-too/">Why I Created A Tumblr Blog &#038; Why You Should Too</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2979" title="Tumblr" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/tumblr.png?resize=225%2C225" alt="Tumblr" data-recalc-dims="1" />Blogging like a Pro</h3>
<p>So, you&#8217;ve got your <a title="WordPress Blog Posts" href="http://cliftonhatfield.com/category/wordpress/" target="_blank">WordPress</a> blog and you&#8217;ve been blogging, building a following, and wondering what else you could do to enhance your blog. The answer is expansion. Joining a growing website like <a title="Clifton Hatfield on Tumblr.com" href="http://cliftonhatfield.tumblr.com/" target="_blank">Tumblr.com</a> give you the opportunity to publish your content on another website. You can rely on syndication and your visitors to share your content, or you can do things PLUS adding your content to growing social sites which will let you reach a wider audience quicker.</p>
<h3>What is Tumblr?</h3>
<p>Imagine WordPress and Twitter having a romantic evening with a candle lit dinner and maybe a little wine. Then, nine months later they celebrate the arrival of their new bundle of joy, Tumblr.<span id="more-2973"></span> Ok, so obviously great websites aren&#8217;t born that way but it&#8217;s probably something close or at least I like to think so. :)</p>
<p>Tumblr takes the power of blogging and simplicity of simplicity and give its user an awesome short-form blogging platform. Unlike <a title="Clifton Hatfield on Twitter.com" href="http://twitter.com/cliftonhatfield" target="_blank">Twitter</a>, Tumbr allows its user to publish media content directly within their posts and doesn&#8217;t have a character limit.</p>
<h3>Why I joined Tumblr</h3>
<p>Lately, I have been doing some research looking for new ways to expand my reach and attract more people to my blog and WordPress tutorials. Facebook, Twitter, and YouTube have been very effective for me but my interest is in finding younger sites that are growing rapidly so I can get establish my presence with early on. <em>Tumblr</em> is one of them.</p>
<p>Although I have only recently created my account, I feel like I already know a lot about the microblogging site and ways it will be able to help me. So, I am going to share my findings with you and you can do the same.</p>
<h3>I want to expand</h3>
<p>Everyday less and less people are relying on automated systems like RSS Feeds to receive information. They are relying on their friends on Twitter, Facebook, and even SMS (text messaging) to let them know what is going on in the world and recommend what&#8217;s important to know. Using Tumblr makes it easy for users to reblog content (a function similar to retweet on Twitter) and consume the recommended posts. Since their launch in 2007, <span style="text-decoration: underline;">Tumblr</span> has reached over 1 Billion posts. I think you get the idea.</p>
<h3><img class="alignleft size-thumbnail wp-image-2984" title="Piggy Bank" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/piggybank.png?resize=135%2C135" alt="Piggy Bank" data-recalc-dims="1" />The art of making money</h3>
<p>You may have 10,000 fans on Facebook and 100,000 followers on Twitter but the advertisements that run beside your content on those sites are only putting money into their pockets and not yours. Tumblr lets you place your own advertisements and affiliate links with your content. Now, YOU keep the money from the ads and it doesn&#8217;t cost your a dime. Instead of fattening FB and TW bank accounts, fatten up yours. I like that.</p>
<h3>WordPress Tumblr Plugins</h3>
<p><a title="WordPress Tumblr Plugin" href="http://wordpress.org/extend/plugins/tumblrize/" target="_blank">Tumblrize</a> is a WordPress plugin that will make things a little easier for you if you are already publishing content to your WordPress blog. Simply put, it ports your posts to your <strong>Tumblr blog</strong>. Although this makes it easy to share your blog&#8217;s content on Tumblr, I recommend writing unique content if you have the time <strong>&lt;&#8211;<a title="SEO Blogging Tools" href="http://cliftonhatfield.com/category/blogging-tools/seo-blogging-tools/"><span style="text-decoration: underline;"><em>SEO Ninja Move</em></span></a></strong>.</p>
<h3>Final Thought</h3>
<p>Using younger sites like Tumblr will definitely help your chance of <a title="Becoming a Rockstar" href="http://cliftonhatfield.com/work-with-clifton-hatfield/">becoming a Rockstar.</a> The downside to trying to publish and maintain content across multiple sites is pretty obvious, time and effort. My plan of attack&#8230;outsourcing. If that isn&#8217;t an option for you right now but you are ready to expand your reach to more people and have the time to put into the efforts of making that happen then think about creating a Tumblr blog.</p>
<p>The post <a href="http://cliftonhatfield.com/why-i-created-a-tumblr-blog-why-you-should-too/">Why I Created A Tumblr Blog &#038; Why You Should Too</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/why-i-created-a-tumblr-blog-why-you-should-too/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>One Can Not Fly Into Flying</title>
		<link>http://cliftonhatfield.com/one-can-not-fly-into-flying-friedrich-nietzsche/</link>
		<comments>http://cliftonhatfield.com/one-can-not-fly-into-flying-friedrich-nietzsche/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 18:59:09 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[blog help]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[darren hardy]]></category>
		<category><![CDATA[Friedrich Nietzsche]]></category>
		<category><![CDATA[qoutes]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[the compound effect]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2957</guid>
		<description><![CDATA[<p>The Compound Effect I recently read The Compound Effect by Darren Hardy and he drills into some great points that people, including myself, often overlook. He speaks of the importance in the little things that we take for granted or assume that they do not have any significance. However, over time and practicing a consistent [...]</p><p>The post <a href="http://cliftonhatfield.com/one-can-not-fly-into-flying-friedrich-nietzsche/">One Can Not Fly Into Flying</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><a href="http://en.wikipedia.org/wiki/Friedrich_Nietzsche"><img class="alignright size-medium wp-image-2966" title="Friedrich Nietzsche" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/friedrich-nietzsche.jpg?resize=225%2C291" alt="Friedrich Nietzsche" data-recalc-dims="1" /></a>The Compound Effect</h3>
<p>I recently read <a href="http://thecompoundeffect.com"><em>The Compound Effect</em></a> by Darren Hardy and he drills into some great points that people, including myself, often overlook. He speaks of the importance in the little things that we take for granted or assume that they do not have any significance. However, over time and practicing a consistent routine of those little things will very quickly add up and multiple into good habits and even better, wealth.</p>
<h3>Blogging Habits</h3>
<p>Your blogging habits will directly effect the success of your blog, your brand, and your wealth if you have chosen to use blogging as a business tool. In the video below, I will give you some tips and words of encouragement to become a consistent, effective, and successful bloggers.<span id="more-2957"></span></p>
<h3 id="firstHeading">Friedrich Nietzsche</h3>
<p id="firstHeading">I have a quote excerpt from Friedrich Nietzsche that I think about every day during tough decisions and when I am in one of those <em>I just don&#8217;t feel like doing it</em> moods. &#8220;He who would learn to fly one day, must first learn to stand and walk&#8230;One can not fly into flying&#8221; &#8211; Friedrich Nietzsche. Continuously practicing over and over again, I will be able to gain more knowledge that brings me closer to achieving my goals. Because of two things, habits and stating off small.</p>
<h4>Watch my video below, leave your comments. Let me know what habits you have that help you to reach your goals. Share with your friends, please!</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="595" height="359" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0FsMgUpS88I?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="595" height="359" src="http://www.youtube.com/v/0FsMgUpS88I?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The post <a href="http://cliftonhatfield.com/one-can-not-fly-into-flying-friedrich-nietzsche/">One Can Not Fly Into Flying</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/one-can-not-fly-into-flying-friedrich-nietzsche/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Page Fold Is A Myth</title>
		<link>http://cliftonhatfield.com/the-page-fold-is-a-myth/</link>
		<comments>http://cliftonhatfield.com/the-page-fold-is-a-myth/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 04:01:42 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[blog posts]]></category>
		<category><![CDATA[cxpartners]]></category>
		<category><![CDATA[iframes]]></category>
		<category><![CDATA[joe leech]]></category>
		<category><![CDATA[page fold]]></category>
		<category><![CDATA[Practical Web Design Magazine]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website architecture]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2911</guid>
		<description><![CDATA[<p>The Myth The myth is that your visitors aren&#8217;t scrolling down your pages. The truth is&#8230;well..is the good news, they are. Internet surfers quickly learn that in order for them to receive the most out of a page, they will must scroll. I recently read an article in Practical Web Design Nov 2010 Issue written [...]</p><p>The post <a href="http://cliftonhatfield.com/the-page-fold-is-a-myth/">The Page Fold Is A Myth</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2928" title="Practical Web Design Magazine" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/practical_web_design_magazine.jpg?resize=225%2C150" alt="Practical Web Design Magazine" data-recalc-dims="1" />The Myth</h3>
<p>The myth is that your visitors aren&#8217;t scrolling down your pages. The truth is&#8230;well..is the good news, they are. Internet surfers quickly learn that in order for them to receive the most out of a page, they <span style="text-decoration: line-through;">will</span> must scroll.</p>
<p>I recently read an article in <em>Practical Web Design Nov 2010 Issue</em> written by <cite>Joe Leech</cite> of <a href="http://cxpartners.co.uk" target="_blank">cxparenters.co.uk</a>. Although the article was merely a foot note in the &#8216;expert advise&#8217; area, he did a wonderful job of squashing the idea that content below the page fold (page fold &#8211; area of the page you see before you begin to scroll down) is often missed by visitors because they don&#8217;t actually scroll down. Again, that isn&#8217;t true at all.<span id="more-2911"></span></p>
<h3>Good News</h3>
<p>When your visitor lands on a page you might think that you have to cram as much information near the top so that it&#8217;s right in their face. Good news, people have learned how to use the internet and expect to scroll&#8230;well my mom might still be learning. :)</p>
<h3>Never use iframes</h3>
<p>Don&#8217;t force information above the fold using gimmicks like <a rel="nofollow" href="http://en.wikipedia.org/wiki/HTML_element#Frames" target="_blank">iframes</a> or smaller text. You are wasting your time. In fact, iframes could possible be the worst thing you could do. I will tell you why.</p>
<p>Based on user-test studies done by cxpartners, a user experience consultant, heat maps generated by eye trackers show that moments after the user lands on a web page they look at the browser&#8217;s scroll bar to gauge its extend of content. If you choose to use an iframe you may be concealing the fact that your page has much more content but it&#8217;s buried within the iframe and not the browser&#8217;s actual window. Therefore, your visitors may not see everything you have to offer or they may have a difficult time finding what they are looking for.</p>
<h3>Avoid horizontal lines</h3>
<p>Proper web design is not quite a science but it&#8217;s far from a simple task. You may be surprised how much thought goes into deciding where to place certain elements on a page, what styles to use, and how to encourage users to explore the entire page. One tip, avoid strong horizontal lines. They naturally discourage people from scrolling but vertical lines or boxes give the appearance that content exists down the page and causes the eyes to move more up and down rather than simply left and right.</p>
<h3>Whitespace is your friend</h3>
<p>Another great tip that strongly encourages exploration of your web pages is the use of <a href="http://en.wikipedia.org/wiki/White_space_%28visual_arts%29" target="_blank">whitespace</a> and imagery. When well placed, they will let visitors unconsciously know that more content exists down the page. Remember <strong>Less is More</strong>.</p>
<h3>Final Thought</h3>
<p><strong>Website architecture </strong>is a key element in user experience. So it doesn&#8217;t matter if you have a website with 10,000 unique visitors a day or ten.  If they made it to your blog or website then I am confident they are expecting to use the scroll bar to explore your content.</p>
<p>Now that I have said all of that, I feel inclined to let you know that <a href="http://cliftonhatfield.com/your-blog-posts-are-too-long/">your blog posts are too long</a>. Just because I&#8217;ve told you that people actually scroll down pages doesn&#8217;t mean you need to make them scroll their life away. Keep your blog posts to the point and informative. And don&#8217;t forget to use your <a title="WordPress More Tag" href="http://cliftonhatfield.com/wordpress-excerpt-with-the-more-tag/">More Tag</a> to avoid flooding your homepage with complete blog posts.</p>
<p>If you already know all of this stuff, go make sure you don&#8217;t have <a title="WordPress Plugin Management" href="http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/">too many plugins installed</a>!</p>
<p>Check Out <a title="Page Fold Video" href="http://www.youtube.com/watch?v=nYlYMtD05b0" target="_blank">My Page Fold Video</a></p>
<p>The post <a href="http://cliftonhatfield.com/the-page-fold-is-a-myth/">The Page Fold Is A Myth</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/the-page-fold-is-a-myth/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Your Blog Posts Are Too Long</title>
		<link>http://cliftonhatfield.com/your-blog-posts-are-too-long/</link>
		<comments>http://cliftonhatfield.com/your-blog-posts-are-too-long/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 06:50:31 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[bloggers tip]]></category>
		<category><![CDATA[edgar allen poe]]></category>
		<category><![CDATA[insert page break]]></category>
		<category><![CDATA[long posts vs short posts]]></category>
		<category><![CDATA[pillar posts]]></category>
		<category><![CDATA[tinymce advanced]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2913</guid>
		<description><![CDATA[<p>Bloggers have a lot to say Often bloggers have a lot to say which is probably a good reason why they are blogging in the first place. The problem lays in their reader&#8217;s attention span or the fact that people want instant gratification or maybe just don&#8217;t have the time to read your pillar post. [...]</p><p>The post <a href="http://cliftonhatfield.com/your-blog-posts-are-too-long/">Your Blog Posts Are Too Long</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2916" title="Edgar Allen Poe" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/poe-tm.jpg?resize=225%2C291" alt="Edgar Allen Poe" data-recalc-dims="1" />Bloggers have a lot to say</h3>
<p>Often bloggers have a lot to say which is probably a good reason why they are blogging in the first place. The problem lays in their reader&#8217;s attention span or the fact that people want instant gratification or maybe just don&#8217;t have the time to read your <abbr title="A really long blog post">pillar post</abbr>.</p>
<h3>You have to get it all out</h3>
<p>If you are one of those bloggers who write posts that are comparable in length to a short story by Edgar Allen Poe, then you are probably thinking to yourself, &#8220;But Clifton I have a lot to say and want my readers to get exactly my point. I can&#8217;t help but write long posts!&#8221; Well, if that is you then I have a few solutions for you to consider.<span id="more-2913"></span></p>
<h3>Post breaking up isn&#8217;t hard to do</h3>
<p>Do you have the TinyMCE Advanced plugin installed? If not, get it installed now.</p>
<ol>
<li>Go to Plugins in your WordPress Dashboard.</li>
<li>Click on the Add New button.</li>
<li>Search for TinyMCE Advanced.</li>
<li>Click Install Now.</li>
<li>Click Activate Plugin.</li>
</ol>
<p>Alright, thanks for installing that plugin which now places an &#8221;Insert Page break&#8217; icon to your post editor. Now, you can break you overly long post into several pages. Place the cursor within your post and click the Insert Page Break icon to distinguish a break and create a new page for your post. What does this do? It doesn&#8217;t scare your visitors away when they see the behemoth blog post you&#8217;ve written. Remember, instant gratification. If they think they have to read all of that, they will bolt.</p>
<h3>Create a series</h3>
<p>Would you rather have one long blog post that is probably scaring your readers away or would you rather break that post into a series of small posts and give the illusion that you have more content? I hope that you would choose to create the series. Divide your post into a series of smaller posts each highlighting a point within the overall post topic. Here is an example of my <a title="October 2010" href="../my-four-secrets-to-killer-blog-posts-series/">My Four Secrets To Killer Blog Posts Series</a>.</p>
<h3>Be Bold</h3>
<p>Look up. No, not literally at your ceiling. I mean move your eyes up the page and notice the subtitles above my paragraphs styled in bold. In fact, they aren&#8217;t just bold because I utilized the Header tags that are hidden under the Paragraph drop down menu in the post editor. This helps your on page SEO. The subtitles give your readers the opportunity to scan the page quickly and decide if there is actually going to be some points within the text that they will find interesting.</p>
<h3>How much is too much?</h3>
<p>Like always, the answer is &#8220;it depends&#8221;. But if you blog posts look more like a college essay and less like an informative summary then you and leaning in the wrong direction. Somewhere in between is a good target. Use your comments and feedback to gauge if you left too much information out.</p>
<h3>Final Thoughts</h3>
<p>This is a blogging tip to increase your page views, time on site, and reader interaction. If you are happy with writing your pillar posts and it doesn&#8217;t seem to impact your readers then don&#8217;t change a thing. Or just try out a few shorter posts and see if that changes anything. Everything is trial and error.</p>
<p>I would love to hear everyone&#8217;s feedback on this topic. What works for you? What are you comfortable with? Do you enjoy reading long blog posts or the shorter but informative ones?</p>
<p>Guess what?! <a title="WordPress Plugins" href="http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/">You Have Too Many Plugins Installed Too</a></p>
<p>And&#8230;learn how to <a title="WordPress More Tag" href="http://cliftonhatfield.com/wordpress-excerpt-with-the-more-tag/">add post excerpts to your homepage by using the More Tag</a>. Help your SEO and increase readership.</p>
<p>Then, share this post on Facebook and Twitter!</p>
<p>The post <a href="http://cliftonhatfield.com/your-blog-posts-are-too-long/">Your Blog Posts Are Too Long</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/your-blog-posts-are-too-long/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>5 Quick Steps To A Successful Blog</title>
		<link>http://cliftonhatfield.com/5-quick-steps-to-a-successful-blog/</link>
		<comments>http://cliftonhatfield.com/5-quick-steps-to-a-successful-blog/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 05:59:24 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[successful blogging]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2741</guid>
		<description><![CDATA[<p>No mumbo-jumbo just pure honesty. Let&#8217;s get down to business. Step 1 Be prepared. Building a successful blog takes dedication and enthusiasm. If you aren&#8217;t willing to stay dedicated or excited about what you are creating then stop reading this right now and go back to Facebook. Step 2 Glad you stuck around, now let&#8217;s [...]</p><p>The post <a href="http://cliftonhatfield.com/5-quick-steps-to-a-successful-blog/">5 Quick Steps To A Successful Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-2746 no-border" title="Silly Walks" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/silly_walks_small.jpg?resize=225%2C231" alt="Silly Walks" data-recalc-dims="1" />No mumbo-jumbo just pure honesty. Let&#8217;s get down to business.</p>
<h3>Step 1</h3>
<p>Be prepared. Building a successful blog takes dedication and enthusiasm. If you aren&#8217;t willing to stay dedicated or excited about what you are creating then stop reading this right now and go back to <a onclick="return confirm('Wait one second. Are you sure you would rather go back to Facebook than learn how to build a successful blog?')" rel="nofollow" href="http://facebook.com/cliftonhatfield.page" target="_blank">Facebook</a>.</p>
<h3>Step 2</h3>
<p>Glad you stuck around, now let&#8217;s get back to business.<span id="more-2741"></span></p>
<p>Narrow your niche and become an expert. What are you passionate about? If you are attempting to write about topic that you have little interest in or feel this may be a phase then you will quickly loose interest and your readers will see right through it.</p>
<h3>Step 3</h3>
<p>Know your audience based on the target niche that you are passionate about. Basically, who is reading your blog? What questions are they looking for answers to? Are you answering those questions?  If not, you better figure them out.</p>
<h3>Step 4</h3>
<p>Learn how to use your <a rel="nofollow" href="http://empoweredblogs.com" target="_blank">WordPress blog</a>. There are over 25 million WordPress blogs swirling around the blogosphere and the support is absolutely&#8230;.<strong>Absolutely</strong>&#8230;incredible. Have a question about WordPress? My good friend Google has the answer. Performing a better search returns better results. Looking for a way to upload images to a post? Search &#8216;WordPress how to upload images to a post&#8217; and the first result is &#8216;Using Image and File Attachments WordPress Codex&#8217; which has detailed instructions on how to upload an image to a post. If you don&#8217;t have time to learn to use WordPress, then hire someone who does. Click here if you <a href="http://cliftonhatfield.com/i-need-help-with-my-blog/" target="_blank">need help with your blog</a>.</p>
<h3>Step 5</h3>
<p>Continue to learn. Your niche is probably constantly changing and evolving. Now it is your job to stay on top of that and make sure you are delivering valuable, quality, up-to-date information to your readers. The plus side is that this always gives you something to talk about and teach.</p>
<h3>Final Thought</h3>
<p>Never be scared to start blogging or even reach for the stars. The harder you work at it, the quicker you will become comfortable with it. Before long, you will not only be passionate about your niche but you will become passionate about sharing it with your community. <strong>Now Go Get Your Blog On.</strong></p>
<p>The post <a href="http://cliftonhatfield.com/5-quick-steps-to-a-successful-blog/">5 Quick Steps To A Successful Blog</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/5-quick-steps-to-a-successful-blog/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Wow 250 Million Users Everyday BooYa!</title>
		<link>http://cliftonhatfield.com/250-millions-users-everyday/</link>
		<comments>http://cliftonhatfield.com/250-millions-users-everyday/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 04:34:01 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Network Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Social Media News]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[500 million users]]></category>
		<category><![CDATA[edgerank]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook advertising]]></category>
		<category><![CDATA[fan pages]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2708</guid>
		<description><![CDATA[<p>20 million people visit Walmart on a daily basis That is a huge number I would love to reach. Wouldn&#8217;t you? Now imagine being able to reach over 12 times that number and being able to tightly narrow that target. The answer is Facebook.com. Now with more than 500 million users and 50% of them [...]</p><p>The post <a href="http://cliftonhatfield.com/250-millions-users-everyday/">Wow 250 Million Users Everyday BooYa!</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>20 million people visit Walmart on a daily basis</h3>
<h3><a rel="attachment wp-att-2713" href="http://cliftonhatfield.com/250-millions-users-everyday/500millionfacebook/"><img class="alignright size-medium wp-image-2713" title="500 Million Users on Facebook" src="../wp-content/uploads/500millionfacebook-225x186.jpg" alt="500 Million Users on Facebook" width="225" height="186" /></a></h3>
<p>That is a huge number I would love to reach. Wouldn&#8217;t you? Now imagine being able to reach over 12 times that number and being able to tightly narrow that target. The answer is <a title="Facebook Clifton Hatfield Page" href="http://facebook.com/cliftonhatfield.page" target="_blank">Facebook.com</a>. Now with more than 500 million users and 50% of them log in any given day, Facebook has grown into possibly the number one marketing platform available.</p>
<p>There are ways to properly reach your market&#8217;s target on Facebook. <span id="more-2708"></span><a title="Get Traffic using Facebook Advertising" rel="nofollow" href="http://get-traffic.cliftonhatfield.com" target="_blank">Facebook advertising</a> is really powerful for geotargeting or just advertising to those who already Like your Page. Taking advantage of the <a title="Facebook EdgeRank Formula" href="http://cliftonhatfield.com/edgerank-facebook-pages-top-news/" target="_blank">EdgeRank formula</a> will drastically increase your odds of landing on a user&#8217;s Top News feed. In fact, if you aren&#8217;t using the EdgeRank formula, you might as well close your Page. :)</p>
<h3>Final Thought</h3>
<p>As Facebook continues to grow and they are able to offer tremendously useful features for businesses to target their market and still keep the social networking site fun then any internet marketer will be able to reach great success if they play their hand just right. Here are some more tips to having a very successful Facebook Page. <a title="Facebook Page for small businesses" href="http://cliftonhatfield.com/facebook-pages-for-small-businesses-part-1/">Facebook Page for small businesses</a> is a 3 part series on tips and strategies for using and maintaining your Page properly. If you are branding yourself on Facebook, you will probably have people wanting to connect with not only your Page but also your personal profile as well. I have put together some things you need to know on <a title="How to write an attractive profile on Facebook" href="http://cliftonhatfield.com/how-to-write-an-attractive-facebook-profile/">how to write an attractive profile for Facebook</a>.</p>
<p><span style="color: #0000ff;"><strong>What do you think about Facebook growing into this monster and how you are utilizing it to expand your reach? Facebook advertising? Page promotion? Surveys? Contests? Let me know in the comment area!<br />
</strong></span></p>
<p>The post <a href="http://cliftonhatfield.com/250-millions-users-everyday/">Wow 250 Million Users Everyday BooYa!</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/250-millions-users-everyday/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook Pages &amp; Top News</title>
		<link>http://cliftonhatfield.com/edgerank-facebook-pages-top-news/</link>
		<comments>http://cliftonhatfield.com/edgerank-facebook-pages-top-news/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 04:02:06 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[edgerank formula]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fan pages]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[top news feed]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2695</guid>
		<description><![CDATA[<p>How do I get onto someone&#8217;s Top News feed? Every time you log into Facebook (according to statistics that would everyday) you land on your homepage and start reading your Top News feed, the default view. Then, switch over to your Most Recent feed to catch anything else you may have missed. But the real [...]</p><p>The post <a href="http://cliftonhatfield.com/edgerank-facebook-pages-top-news/">Facebook Pages &#038; Top News</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2697 no-border" title="EdgeRank" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/edgerank.jpg?resize=225%2C119" alt="EdgeRank" data-recalc-dims="1" />How do I get onto someone&#8217;s Top News feed?</h3>
<p>Every time you log into Facebook (according to statistics that would everyday) you land on your homepage and start reading your Top News feed, the default view. Then, switch over to your Most Recent feed to catch anything else you may have missed. But the real question for any internet marketer on Facebook is &#8216;How do I get onto someone&#8217;s Top News feed?&#8217;<span id="more-2695"></span></p>
<h3>I&#8217;ll share the secret with you</h3>
<p>20 million people visit Walmart on a daily basis, whereas 250 million people visit Facebook each day. There is no other online marketing channel that can deliver this kind of reach. So how to do you get in front of those 250 million people? I&#8217;ll share the secret with you. Ok, it&#8217;s not really a secret but it&#8217;s a question that many people ask but just don&#8217;t know the right answer.</p>
<h3>The EdgeRank formula</h3>
<p>That neat graphic you see in the upper right of this post is the <strong>EdgeRank formula</strong> that Facebook uses to determine what content shows up in a user&#8217;s top news feed. So what do those letters mean? Well, that is why you are reading this article and I am going to tell you.</p>
<p><span style="text-decoration: underline;"><em><strong>EdgeRank</strong></em></span> looks at the affinity score <em>(how often the user interacts with the FB Page)</em>, its weight <em>(how many comments and Likes a post has)</em>, and the time decay <em>(how recent that update was posted)</em>.</p>
<h3>How to nail the EdgeRank formula</h3>
<p>Be sure your posts on Facebook follow the above formula or else you may be wasting your time, as updates will not be seen by your fans. Before you post the content, ask yourself if you are being engaging? Are you asking a question to not only spark interest but entice your readers to interact with your post, leave comments, and click its Like link.  Launching a new product? Request your fans&#8217; opinion within a Facebook post.</p>
<h3>Final Thought</h3>
<p>The above information is extremely valuable and I strongly encourage every internet marketer to take advantage of it. A &#8216;call to action&#8217; is the nail in the coffin to successful email marketing, copy writing, and other forms of internet marketing. Understanding and utilizing the EdgeRank formula will drastically increase your exposure.</p>
<p>Do you have any experience using the EdgeRank formula or any of Facebook strategies to effectively increase your exposure?</p>
<p>The post <a href="http://cliftonhatfield.com/edgerank-facebook-pages-top-news/">Facebook Pages &#038; Top News</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/edgerank-facebook-pages-top-news/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Make Your Homepage Static in WordPress</title>
		<link>http://cliftonhatfield.com/make-your-homepage-static-in-wordpress/</link>
		<comments>http://cliftonhatfield.com/make-your-homepage-static-in-wordpress/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 15:06:33 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Empowered Theme Tutorials]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[static webpage]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2680</guid>
		<description><![CDATA[<p>Turn your front page into a static webpage This is another one of my most popular questions and it&#8217;s a rather quick and easy fix. I&#8217;m glad that the more popular questions are just a simple answer. :) Below is my step by step instruction on how to make your WordPress blog or website&#8217;s homepage [...]</p><p>The post <a href="http://cliftonhatfield.com/make-your-homepage-static-in-wordpress/">Make Your Homepage Static in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2692" title="Static Webpage" src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/static-webpage.jpg?resize=225%2C136" alt="Static Webpage" data-recalc-dims="1" />Turn your front page into a static webpage</h3>
<p>This is another one of my most popular questions and it&#8217;s a rather quick and easy fix. I&#8217;m glad that the more popular questions are just a simple answer. :) Below is my step by step instruction on how to make your WordPress blog or website&#8217;s homepage static and how to place the latest blog posts on a subpage.<span id="more-2680"></span></p>
<h3>Watch the quick video tutorial below.</h3>
<p>If you found this helpful, share it with your friends.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="590" height="467" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/UjEmmP0voeQ?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="590" height="467" src="http://www.youtube.com/v/UjEmmP0voeQ?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The post <a href="http://cliftonhatfield.com/make-your-homepage-static-in-wordpress/">Make Your Homepage Static in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/make-your-homepage-static-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Stop Installing So Many WordPress Plugins</title>
		<link>http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/</link>
		<comments>http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 07:17:43 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[facebook share]]></category>
		<category><![CDATA[my opinions]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sexy bookmarks]]></category>
		<category><![CDATA[site speed]]></category>
		<category><![CDATA[syndication]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2659</guid>
		<description><![CDATA[<p>The title says it all Stop installing so many WordPress plugins (just had to say it twice). So you have your new blog and you are ALL excited to start writing awesome blog posts and getting a bunch of traffic but your mentor and friends have all given you a huge list of must-have plugins [...]</p><p>The post <a href="http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/">Stop Installing So Many WordPress Plugins</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2664" title="Wordpress Plugins" src="http://i2.wp.com/cliftonhatfield.com/wp-content/uploads/wordpress_plugins.jpg?resize=225%2C172" alt="Wordpress Plugins" data-recalc-dims="1" />The title says it all</h3>
<p><strong>Stop installing so many WordPress plugins</strong> (just had to say it twice). So you have your new blog and you are ALL excited to start writing awesome blog posts and getting a bunch of traffic but your mentor and friends have all given you a huge list of must-have plugins to install and activate. You are still very new to this so it takes you a couple of weeks to find all of these plugins, install them, activate them, set them up, then learn to use them. <em>Most people leave out the last &#8211; most important &#8211; part.</em> Now, you start to notice weird things happening on your blog. Site loads slow, errors appearing in the dashboard or on your blog, multiple Facebook Share buttons and Tweet buttons. What is going on?! AHH!</p>
<h3>You have too many plugins installed!</h3>
<p>I can almost guarantee I am right about the above statement. It&#8217;s probably one of the most common errors I see in blogging. <span id="more-2659"></span>Installing plugins isn&#8217;t just a simple &#8220;I am going to install and activate the plugin and my blogosphere is going to be perfect&#8221; solution. You have to closely maintain your plugins and monitor their effectiveness. Is anyone actually using that Sexy Bookmarks plugin? I&#8217;ve never once used it. <em>Ever.</em> Have you click that icon on someone&#8217;s blog? In my opinion <em>(I am stressing that this is only my opinion)</em>, I also see the Sexy Bookmarks button as juvenile. If I am browsing through a Professional Internet Marketer&#8217;s blog and wanting to take the blog&#8217;s content serious, it would be a hard thing to do when there is a big Sexy Bookmarks button below every post. Just seems juvenile&#8230;and rather lame.</p>
<h3>Choose your plugins wisely</h3>
<p>Find out which plugins are going to meet your needs. Do some research on a plugin before installing it and find out what it does exactly. Read reviews on <a title="WordPress" rel="nofollow" href="http://wordpress.org" target="_blank">WordPress.org</a>. Talk to other blogger about the plugin. Don&#8217;t just ask them if that have it installed, ask them if they truly find value in it. Have they every clicked and used the Sexy Bookmarks button?</p>
<p>Do you already have a plugin that does the same thing? I can&#8217;t count how many times I have come across a blog to find an array of Facebook Share and Tweet buttons jumbled in the corner of every blog post. Looks like they have two different plugins activated that do the same thing, both are adding the Facebook Share and Tweet buttons.</p>
<h3>Read the manual</h3>
<p>Okay, so not all plugins, especially free ones, come with a users guide or much on support. But try using Google to find more information on how to use every single plugin you have installed. Look for video tutorials on YouTube or questions that have been asked on <a rel="nofollow" href="http://wordpress.org" target="_blank">WordPress.org</a>. What is the point of installing a plugin, activating it, then never setting up it or tweaking its options? Make sure you are utilizing it in the right way. Aren&#8217;t internet savvy? <strong>Do NOT be scared to learn how to use a plugin!</strong> Just because it&#8217;s on a computer doesn&#8217;t mean that it&#8217;s impossible to figure out. 99% of the time it will be so much easier than you expect after you do a little research or read the author&#8217;s help notes.</p>
<h3>Final Thought</h3>
<p>This article was written to encourage bloggers to take action within their cluster of plugins running on their blog. I threw in some personal opinions and may have been a little assertive at times but this is a growing issue I see among new and old bloggers. Do not fall victim to this horrible failure. Take an hour of your evening and go through your plugins and analyze which ones are honestly making your blog better for yourself and more importantly for your readers.</p>
<h3><a href="http://cliftonhatfield.com/i-need-help-with-my-blog/">Learn how to find answers about your blog.</a></h3>
<p>The post <a href="http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/">Stop Installing So Many WordPress Plugins</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/stop-installing-so-many-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Create a Page in WordPress</title>
		<link>http://cliftonhatfield.com/create-a-page-in-wordpress/</link>
		<comments>http://cliftonhatfield.com/create-a-page-in-wordpress/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 14:32:57 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Empowered Theme Tutorials]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[static page]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2652</guid>
		<description><![CDATA[<p>It&#8217;s not rocket science, just a video tutorial I&#8217;ve put together a detailed video on how to create a static page in your WordPress blog. Nothing complicated here but just some basic instructions and tips on what to do when creating a page and how to add it to the navigation bar. I suggest watching [...]</p><p>The post <a href="http://cliftonhatfield.com/create-a-page-in-wordpress/">Create a Page in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><img class="alignright size-medium wp-image-2653 no-border" title="Wooden WordPress Logo " src="http://i0.wp.com/cliftonhatfield.com/wp-content/uploads/wooden-wordpress.png?resize=158%2C158" alt="Wooden WordPress Logo " data-recalc-dims="1" />It&#8217;s not rocket science, just a video tutorial</h3>
<p>I&#8217;ve put together a detailed video on how to create a static page in your WordPress blog. Nothing complicated here but just some basic instructions and tips on what to do when creating a page and how to add it to the navigation bar. I suggest watching the entire video and if you have any questions after the video&#8217;s end, please <a title="Contact Clifton Hatfield" href="http://cliftonhatfield.com/contact-me/">contact me</a>. Thanks!<span id="more-2652"></span></p>
<p><object width="590" height="356"><param name="movie" value="http://www.youtube.com/v/Gka_pLzaVnc?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Gka_pLzaVnc?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="590" height="356"></embed></object></p>
<p>The post <a href="http://cliftonhatfield.com/create-a-page-in-wordpress/">Create a Page in WordPress</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/create-a-page-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print Facebook Photos At Target</title>
		<link>http://cliftonhatfield.com/print-facebook-photos-at-target/</link>
		<comments>http://cliftonhatfield.com/print-facebook-photos-at-target/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 07:12:26 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Social Media News]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[kiosk]]></category>
		<category><![CDATA[kodak]]></category>
		<category><![CDATA[photo albums]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[target]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2646</guid>
		<description><![CDATA[<p>After last month&#8217;s latest addition of high resolution photos to member photo albums, Facebook and Target have just announced in-store Facebook Photo Printing. Cool feature right? I think so but it may take a little longer for users to pick up on this or even use it. Feel like printing off your Facebook photos? The [...]</p><p>The post <a href="http://cliftonhatfield.com/print-facebook-photos-at-target/">Print Facebook Photos At Target</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-2649 no-border" title="Print Facebook Photos at Target" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/300px-Target_logo.svg_.png?resize=225%2C300" alt="Print Facebook Photos at Target" data-recalc-dims="1" />After last month&#8217;s latest addition of high resolution photos to member photo albums, Facebook and Target have just announced in-store Facebook Photo Printing. Cool feature right? I think so but it may take a little longer for users to pick up on this or even use it.</p>
<h3>Feel like printing off your Facebook photos?</h3>
<p>The difference between adding photos to your Facebook account and sending photos to the print shop is the bulk. My wife for example has her digital camera glued to her hip and snaps a photo any chance she gets. Then, since it&#8217;s so easy to upload them to Facebook, she can quickly get the photos she took that day online without a problem, all 200 of them. Simple. But if you want them printed, there is always at least a little more complexity to it. Drive to Target, login into Facebook (hope it&#8217;s secure), find the photos you want to print, wait for them to print, pay for them (and a pack of new white socks), drive home. Simple, just not AS simple.<span id="more-2646"></span></p>
<h3>Reasons why to print your Facebook Photos</h3>
<p><strong>Grandma</strong> is probably dying to see pictures of her grand kids or you with your siblings. Probably albums full of photos she&#8217;d love to see but she doesn&#8217;t have a Facebook account or possibly even a computer. Select your favorites (preferably sober) and bring them over to Granny&#8217;s. Might as well pick up a few frames while you are at Target.</p>
<p><strong>Collages</strong> are be fun to create and share with your friends and family. The photo Kodak Kiosk supports other cool options.</p>
<p><strong>Greeting Cards</strong>. Did you get a great photo of the family and plop it on Facebook to share with everyone else? Print it off as a greeting card and send it off in the mail.</p>
<p><strong>Photo Books</strong> are a great idea to document an entire event and all the photos just so happen to be on Facebook already. Print off an entire album and make it into a photo booth you can pull out when guest come over. lol</p>
<p>Picture Movie DVDs is a cool way to share your Facebook photos on a loop. Like if you wanted to play it at a family reunion, wedding, or graduation.</p>
<p>Next time to stop in Target for a pack of new white socks, look for the Kodak Kiosk and check out the new Social Network Connectivity software and let me know what you think!</p>
<h3>Share this with your Facebook friends and let them know they have this option!</h3>
<p>The post <a href="http://cliftonhatfield.com/print-facebook-photos-at-target/">Print Facebook Photos At Target</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/print-facebook-photos-at-target/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why You Need To Be On Digg.com, Ya Dig?</title>
		<link>http://cliftonhatfield.com/why-you-need-to-be-on-digg-com-ya-dig/</link>
		<comments>http://cliftonhatfield.com/why-you-need-to-be-on-digg-com-ya-dig/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 04:56:02 +0000</pubDate>
		<dc:creator>Clifton Hatfield</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Promote Yourself]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Social Networking Guide]]></category>
		<category><![CDATA[bookmarking]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[digg.com]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://cliftonhatfield.com/?p=2622</guid>
		<description><![CDATA[<p>Are you digging this? Why not?! I am absolutely shocked by the number of internet marketers that do not utilize the power of online bookmarking websites like Digg.com! There I said it and it had to be said! I love to read&#8230; I love to read great articles and blog posts online but there is [...]</p><p>The post <a href="http://cliftonhatfield.com/why-you-need-to-be-on-digg-com-ya-dig/">Why You Need To Be On Digg.com, Ya Dig?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3><a title="Digg.com" rel="me" href="http://digg.com/cliftonh" target="_blank"><img class="alignright size-medium wp-image-2626 no-border" title="Digg.com" src="http://i1.wp.com/cliftonhatfield.com/wp-content/uploads/1287546976_digg.png?resize=225%2C225" alt="Digg.com" data-recalc-dims="1" /></a>Are you digging this? Why not?!</h3>
<p>I am absolutely shocked by the number of internet marketers that do not utilize the power of online bookmarking websites like <a title="Clifton Hatfield is diggin'" href="http://digg.com/cliftonh" target="_blank"><span style="text-decoration: underline;">Digg.com</span></a>! <strong>There I said it and it had to be said!</strong></p>
<h3>I love to read&#8230;</h3>
<p>I love to read great articles and blog posts online but there is no possible way I could find every blog post worth reading even if I spent hours searching for them. <a href="http://www.google.com/profiles/clifton.s.hatfield" target="_blank">Google.com</a> does a pretty good job of helping me find something interesting but the information is often outdated. <span id="more-2622"></span>I can find links to recent articles on <a href="http://twitter.com/cliftonhatfield" target="_blank">Twitter.com</a> but I don&#8217;t much information about the article until after I click on the link. Who has time to click on useless links? Not this guy.</p>
<h3>What is the solution?</h3>
<p>Digg.com solves many of the problems we face when it comes to finding good reading material on topics you are looking for. People you are following on Digg.com will be digging blog posts and articles on topic you are interested in. And if the article is outdated then I doubt anyone will be digging it so you won&#8217;t have much to worry about when it comes to reading old stuff. Since Digg.com lets its members add titles and descriptive text, you will have a chance to read a excerpt of the linked webpage before actually using your precious time clicking on a lame link.</p>
<h3>Learn more about Digg.com in the video</h3>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="620" height="373" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/N3cjnC2Uyrc?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="620" height="373" src="http://www.youtube.com/v/N3cjnC2Uyrc?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The post <a href="http://cliftonhatfield.com/why-you-need-to-be-on-digg-com-ya-dig/">Why You Need To Be On Digg.com, Ya Dig?</a> appeared first on <a href="http://cliftonhatfield.com">CliftonHatfield.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cliftonhatfield.com/why-you-need-to-be-on-digg-com-ya-dig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 5.046 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-19 11:49:25 -->

<!-- Compression = gzip -->