<?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>WordPress &#124; Website Design &#124; SEO Analytics &#124; Online Trainer - Coach</title>
	<atom:link href="http://oneononecoach.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://oneononecoach.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 19:06:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Adding Span Tags To WordPress Menu Navigation Bar</title>
		<link>http://oneononecoach.com/2012/05/adding-span-tags-to-wordpress-menu-navigation-bar/</link>
		<comments>http://oneononecoach.com/2012/05/adding-span-tags-to-wordpress-menu-navigation-bar/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:23:03 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=3918</guid>
		<description><![CDATA[<p><a href="http://oneononecoach.com/wp-content/uploads/2012/05/WordPress-Web-Design.jpg"></a></p> Span Tags are code snippets for styling WordPress menu <p>I recently completed a custom WordPress design in which the client required a very distinct feature within his <a title="Web Design" href="http://oneononecoach.com/web-design/">WordPress Menu</a>.  Essentially he wanted a second line of text &#8220;underneath&#8221; the main navigation bar page link/text.  Sounds easy enough right?  Yes and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://oneononecoach.com/wp-content/uploads/2012/05/WordPress-Web-Design.jpg"><img class=" wp-image-3935 alignleft" style="border: 1px solid grey; box-shadow: 3px 3px 3px 0px gray;" title="Custom WordPress Menu | Website Design" src="http://oneononecoach.com/wp-content/uploads/2012/05/WordPress-Web-Design.jpg" alt="WordPress Web Design Adding Span Tags To WordPress Menu Navigation Bar" width="176" height="136" /></a></p>
<h2>Span Tags are code snippets for styling WordPress menu</h2>
<p>I recently completed a custom WordPress design in which the client required a very distinct feature within his <a title="Web Design" href="http://oneononecoach.com/web-design/"><strong>WordPress Menu</strong></a>.  Essentially he wanted a second line of text &#8220;underneath&#8221; the main navigation bar page link/text.  Sounds easy enough right?  Yes and No.</p>
<p>I had a pretty good idea to accomplish this I would have to be adding <strong>span tags to the WordPress menu</strong>, however I was curious to see if maybe there were any newer techniques out there, and so I did a little research and I found a little over a million articles on the subject.  I got through the first two pages in a Google search and threw my hands up.  I read one article that had over two thousand words and by the time I finished reading the article I was totally confused.  This sort of stuff is not complicated but after reading these articles even I was confused.  There&#8217;s always a way to explain a complicated technique in a more simpler way so that the average person can understand.</p>
<p>Here&#8217;s my very simple guide with instructions that you&#8217;ll be able to follow very easily along with supporting images on how to accomplish <strong>adding span tags</strong> in order for you to be able to further customize your <strong>WordPress menu</strong> navigation bar.  To make things even simpler we&#8217;re using the Twenty Ten theme but you can use pretty much any WordPress theme.</p>
<h2><strong>Step 1 &#8211; Header.php<br /></strong></h2>
<p>We need to add a code snippet to the header.php file of your theme within the <strong>wp_nav_menu</strong> php code.  This will establish a span tag after the <strong>wp_nav_menu</strong> code.  In the image below you&#8217;ll see where we&#8217;ve added the code snippet (this is the &#8220;After&#8221; image).  Clicking the image you&#8217;ll get a pop up image of the header.php file &#8220;Before&#8221; the code snippet modification.</p>
<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/05/Twenty-Ten-Header.php-Nav-code-Before.png"><img class="aligncenter  wp-image-3933" style="border: 1px solid grey; box-shadow: 3px 3px 3px 0px gray;" title="Twenty Ten Header.php - Nav Code - After" src="http://oneononecoach.com/wp-content/uploads/2012/05/Twenty-Ten-Header.php-Nav-Code-After.png" alt="Twenty Ten Header.php Nav Code After Adding Span Tags To WordPress Menu Navigation Bar" width="629" height="240" /></a></p>
<p style="text-align: left;">Look half way down this header.php file and you&#8217;ll see the php code that calls the features for the <strong>wp_nav_menu</strong>, and if you track it to the second line after the word &#8216;primary&#8217;, you&#8217;ll see beginning after the comma the code snippet we added (<strong>&#8216;link_after&#8217; =&gt; &#8221;, &#8216;link_after&#8217; =&gt; &#8221;</strong> ).  Notice in the &#8220;clicked&#8221; pop up image the &#8220;before&#8221; image shows the same <strong>wp_nav_menu</strong> code &#8220;before&#8221; any span tag code snippet modification.  Why do we use the <strong>link_after</strong> call?  Because we want the text to display after the main page link in the navigation menu bar&#8230;not before.</p>
<h2 style="text-align: left;">Step 2 &#8211; Style Sheet</h2>
<p style="text-align: left;">Now that we&#8217;ve established a span tag after the <strong>wp_nav_menu</strong> code.  We now need to add some style sheet custom code to tell the theme how you want the menu styled and displayed for the second line in relation to the first line or main page link.  In the image below you&#8217;ll see where we&#8217;ve added the custom style sheet code (this is the &#8220;After&#8221; image).  Clicking the image you&#8217;ll get a pop up image of the original Style Sheet file &#8220;Before&#8221; the custom code modification.</p>
<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/05/Twenty-Ten-Css-Before.png"><img class="aligncenter  wp-image-3932" style="border: 1px solid grey; box-shadow: 3px 3px 3px 0px gray;" title="Twenty Ten Custom Css - After" src="http://oneononecoach.com/wp-content/uploads/2012/05/Twenty-Ten-Custom-Css-After.png" alt="Twenty Ten Custom Css After Adding Span Tags To WordPress Menu Navigation Bar" width="629" height="347" /></a></p>
<p>Look in image where it says <strong>/* Adding a second span line */</strong> and you&#8217;ll see the custom css I used to style the second line.  When you click the pop up image (this is the &#8220;Before&#8221; images) you&#8217;ll see the basic Twenty Ten style.css file without any span.  The Twenty Ten theme does not come with any span anywhere.  If I wasn&#8217;t using a custom.css then I would add this same style sheet code on the last line underneath the heading Menu within the style.css you saw in the pop up image.   (Note:  As a matter of practice I always use a Custom.css for all  Custom WordPress Designs so that none of the customizations disappear when a client upgrades their website template to a newer version).</p>
<h2>Step 3 &#8211; Menu Dashboard</h2>
<p>Now we&#8217;ve established a span tag after the <strong>wp_nav_menu</strong> code.  We&#8217;ve added the custom code to style sheet.   Take a look at the image below which will show the Modified Menu area (this is the &#8220;After&#8221; image).  Clicking the image (this is the &#8220;Before&#8221; image), you&#8217;ll get a pop up image of the original Menu area without the span text.</p>
<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/05/WP-Menus-Main-Menu-Before.png"><img class="aligncenter  wp-image-3936" style="border: 1px solid grey; box-shadow: 3px 3px 3px 0px gray;" title="WP Menu's - Main Menu - After" src="http://oneononecoach.com/wp-content/uploads/2012/05/WP-Menus-Main-Menu-After.png" alt="WP Menus Main Menu After Adding Span Tags To WordPress Menu Navigation Bar" width="629" height="557" /></a></p>
<p>As you can see we simply added <strong></strong> then the text that we want after the main page link then we closed it with <strong></strong>.  Access your actual WordPress Menu&#8217;s area within your dashboard.  Appearance &gt;&gt; Menu&gt;&gt;&gt;.  You&#8217;ll see the  main page headings like Home, Blog etc. </p>
<h2>Completed WordPress Menu</h2>
<p>Now take a look at the final <strong>WordPress Menu with Added Span Tags</strong> and text on the second line in the image below (&#8220;After&#8221; image).   Click the image to see the  &#8220;before&#8221; image.</p>
<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/05/Twenty-Ten-Navigation-Bar-Before.png"><img class="aligncenter  wp-image-3929" style="border: 1px solid grey; box-shadow: 3px 3px 3px 0px gray;" title="Twenty Ten -  Navigation Bar - After" src="http://oneononecoach.com/wp-content/uploads/2012/05/Twenty-Ten-Navigation-Bar-After.png" alt="Twenty Ten Navigation Bar After Adding Span Tags To WordPress Menu Navigation Bar" width="628" height="197" /></a></p>
<p>Click here to visit the website we recently completed and it will showcase the two line <a title="Added Span Tags to a WordPress Menu" href="http://california-ebike.com/" target="_blank">WordPress Menu navigation bar</a>.  The only difference is we used a repeating image in that site whereas in our example above we used the typical black background color that comes with the Twenty Ten navigation bar.<br /><a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu" rel="nofollow" target="_blank"><span style="color: #ffffff;">Adding Span Tags To WordPress Menu Navigation Bar</span></a><br />Leave a comment, we “really” would like to know what you think!</p>
<p><a href="http://oneononecoach.com/2012/05/adding-span-tags-to-wordpress-menu-navigation-bar/" rel="bookmark">Adding Span Tags To WordPress Menu Navigation Bar</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on May 16, 2012.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2012/05/adding-span-tags-to-wordpress-menu-navigation-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Makes An Effective Blog Post?</title>
		<link>http://oneononecoach.com/2012/02/what-makes-an-effective-blog-post/</link>
		<comments>http://oneononecoach.com/2012/02/what-makes-an-effective-blog-post/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 20:19:52 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[SEO/SEM/SMO]]></category>
		<category><![CDATA[Alt attribute]]></category>
		<category><![CDATA[Article (grammar)]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[Index term]]></category>
		<category><![CDATA[Meta element]]></category>
		<category><![CDATA[Phrase]]></category>
		<category><![CDATA[Search engine optimization]]></category>
		<category><![CDATA[Uniform Resource Locator]]></category>
		<category><![CDATA[Web search engine]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=3660</guid>
		<description><![CDATA[<p><a href="http://oneononecoach.com/wp-content/uploads/2012/02/seoforwordpress.jpeg"></a>The answer to that question may surprise you.  If a blog post has been created based on a keyword or a key phrase then essentially you have an effective blog post. </p> <p>Wait a minute, what was that?</p> <p>Let me explain, a blog post or article that has been written based on a keyword or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://oneononecoach.com/wp-content/uploads/2012/02/seoforwordpress.jpeg"><img class="alignleft size-full wp-image-6589" title="SEO for WordPress | Google | Yahoo | Bing" src="http://rickcano.com/wp-content/uploads/2012/02/seoforwordpress.jpeg" alt=" What Makes An Effective Blog Post?" width="200" height="135" /></a>The answer to that question may surprise you.  If a blog post has been created based on a keyword or a key phrase then essentially you have an <strong>effective blog </strong>post. </p>
<p>Wait a minute, what was that?</p>
<p>Let me explain, a blog post or article that has been written based on a keyword or a key phrase is an <strong>effective blog </strong>post because everything within the post would have been designed and created based on the most important attribute of a blog:  <strong><a title="Create an Effective Blog Post with The Right Keywords" href="http://oneononecoach.com/2010/01/how-to-make-money-blogging-with-the-right-keywords/">a focus or primary keyword! </a></strong></p>
<p>Everything that has to do with writing and creating an article or post has to do with SEO and what is SEO?  Content rich with &#8220;keywords&#8221; or &#8220;key phrases.&#8221; </p>
<p>That would mean that the Article Heading, Page Title, Page URL, Page Content and Image were created with a focus keyword or key phrase.  Hence, the blog post was written using the Keyword in the 6 key components of an <strong>effective blog </strong>post.  Keep in mind that your title tag and your meta tag description would naturally take the attributes of these 6 primary components as well.</p>
<p>&#8220;Hmmm&#8230;.okay?&#8221;</p>
<p>I know it sounds way too simple but if I show you an <strong>effective blog</strong> example and breakdown each component, I think you&#8217;ll agree. </p>
<p>But first, lets review what those key components are for an<strong> effective blog </strong>post.</p>
<p>A Focus or Primary Keyword or Key phrase <span style="text-decoration: underline;">MUST</span> appear in these areas:</p>
<ol>
<li><span style="font-size: medium;">Page URL</span></li>
<li><span style="font-size: medium;">Page Title</span></li>
<li><span style="font-size: medium;">First Paragraph</span></li>
<li><span style="font-size: medium;">Content</span></li>
<li><span style="font-size: medium;">SEO Title</span></li>
<li><span style="font-size: medium;">Meta Description</span></li>
</ol>
<p><strong>Take a look at this first screen shot:</strong></p>
<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/02/what-makes-an-effective-blog-post1.png"><img class="wp-image-6443 aligncenter" title="what makes an effective blog post1" src="http://oneononecoach.com/wp-content/uploads/2012/02/what-makes-an-effective-blog-post1.png" alt="what makes an effective blog post1 What Makes An Effective Blog Post?" width="500" height="146" /></a></p>
<p> <br /><strong>Components 1 and 2:</strong> </p>
<p style="padding-left: 30px;">1.  Does the Page URL have a keyword or key phrase?  Yes!  You can&#8217;t see the URL however here is a snippet of what the URL actually is &#8211; com/academy/<strong>ecommerce-mistakes</strong>.</p>
<p style="padding-left: 30px;">2.  Does the Page Title have a keyword or key phrase? Yes!  Notice the Page Title in bold print &#8211; <strong>9 ecommerce mistakes and how to avoid them</strong>.  </p>
<p style="padding-left: 30px;">Note:  If you didn&#8217;t notice it&#8230;..look at the title and url again and you&#8217;ll see that the entire title and url do not match.  This was done intentionally as the author first didn&#8217;t want a huge URL(permalink) for there article so they shortened it.  A Very effective SEO and Blog technique!!</p>
<p><strong>Here&#8217;s our second screenshot :</strong></p>
<p style="text-align: left;"><a href="http://oneononecoach.com/wp-content/uploads/2012/02/what-makes-an-effective-blog-post2.png"><img class="wp-image-6440 aligncenter" title="what makes an effective blog post2" src="http://oneononecoach.com/wp-content/uploads/2012/02/what-makes-an-effective-blog-post2.png" alt="what makes an effective blog post2 What Makes An Effective Blog Post?" width="500" height="205" /></a></p>
<p style="text-align: left;"> <br /><strong>Components 3 and 4: </strong></p>
<p style="text-align: left; padding-left: 30px;">3.  Does the First Paragraph have a keyword or key phrase?  Yes!  Take a look at the second to last sentence in the first paragraph.  </p>
<p style="text-align: left; padding-left: 30px;">4.  Does the Content have a keyword or key phrase?  Yes!  You&#8217;ll see that the primary keyword and key phrase is repeated multiple times within the body content of the post.  In addition&#8230;..what you don&#8217;t see is that the shopping cart image with mouse has an alt tag consistent with the keyword and key phrase as well.</p>
<p style="text-align: left;"><strong>Here&#8217;s our third and final screenshot:</strong></p>
<p style="text-align: left;"><a href="http://oneononecoach.com/wp-content/uploads/2012/02/what-makes-an-effective-blog-post3.png"><img class="wp-image-6441 aligncenter" title="what makes an effective blog post3" src="http://oneononecoach.com/wp-content/uploads/2012/02/what-makes-an-effective-blog-post3.png" alt="what makes an effective blog post3 What Makes An Effective Blog Post?" width="500" height="268" /></a></p>
<p style="text-align: left;"><strong>Components 5 and 6: </strong></p>
<p style="text-align: left; padding-left: 30px;">5.  Does the SEO Title have the primary keyword or key phrase?  Yes!  You can&#8217;t see it but if you use the link below you&#8217;ll be able to view the Live post at Wordtracker&#8217;s website.</p>
<p style="text-align: left; padding-left: 30px;">6.  Does the Meta Description have the primary keyword or key phrase?  Yes!  Again&#8230;you can&#8217;t see it but if you do a &#8220;view page source&#8221; in the live article you&#8217;ll see the meta description and you&#8217;ll notice that it has both the keyword and phrase.</p>
<p style="text-align: left;">So What Makes an <strong>Effective Blog</strong> Post?  Hopefully by reading this article you&#8217;ll be closer to understanding what makes a blog effective.  But in case you missed something&#8230;.just make sure you integrate at a minimum these 6 components and I think you&#8217;ll start seeing more traffic and visitors to your website.  In the end getting more traffic is the ultimate goal, so use these techniques to create your own <strong>effective blog</strong>!</p>
<p style="text-align: left;">To see the full article&#8230; <a title="An Effective Blog Post" href="http://www.wordtracker.com/academy/ecommerce-mistakes?utm_source=Subscribers&amp;utm_campaign=ec5bb42e9e-Newsletter_136&amp;utm_medium=email" rel="nofollow" target="_blank">Click Here</a>.  </p>
<p style="text-align: left;">Leave a comment, we &#8220;really&#8221; would like to know what you think!</p>
<p><a href="http://oneononecoach.com/2012/02/what-makes-an-effective-blog-post/" rel="bookmark">What Makes An Effective Blog Post?</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on February 16, 2012.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2012/02/what-makes-an-effective-blog-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Medical Billing &#8211; WordPress</title>
		<link>http://oneononecoach.com/2012/01/medical-billing-wordpress/</link>
		<comments>http://oneononecoach.com/2012/01/medical-billing-wordpress/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 20:04:52 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Color scheme]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Markup language]]></category>
		<category><![CDATA[Meta element]]></category>
		<category><![CDATA[Search engine optimization]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Web Design and Development]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=3540</guid>
		<description><![CDATA[<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/01/Medical-Billing-Services-WordPress1.png"></a>(Click image for full view)</p> <p style="text-align: left;">Custom WordPress Design</p> <p>Features:</p> <p>1.  JQuery image slider with an excerpt box and a mouse hover miniature box.<br />2.  Pop-up flash box for mouse over hover.<br />3 . Minimum three service box with excerpt, feature image as well as Facebook thread and contact form. <br [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2012/01/Medical-Billing-Services-WordPress1.png"><img class="wp-image-3551 aligncenter" style="border: 1px solid lightgray; padding: 3px;" title="Medical Billing Services - WordPress" src="http://oneononecoach.com/wp-content/uploads/2012/01/Medical-Billing-Services-WordPress.png" alt="Medical Billing Services WordPress Medical Billing   WordPress" width="551" height="648" /></a>(<em>Click image for full view</em>)</p>
<p style="text-align: left;"><span style="font-size: large;"><strong>Custom WordPress Design</strong></span></p>
<p><strong>Features:</strong></p>
<p>1.  JQuery image slider with an excerpt box and a mouse hover miniature box.<br />2.  Pop-up flash box for mouse over hover.<br />3 . Minimum three service box with excerpt, feature image as well as Facebook thread and contact form. <br />4.  Admin dashboard for CMS control as well as color picker,image up loader and theme options.</p>
<p><span style="color: #ff0000;"><strong>Click &#8220;<em>pages</em>&#8221; area below to continue to page 2 . . .</strong></span></p>
<p>
<p><a href="http://oneononecoach.com/2012/01/medical-billing-wordpress/" rel="bookmark">Medical Billing &#8211; WordPress</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on January 21, 2012.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2012/01/medical-billing-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 &#8211; &quot;Sonny&quot;</title>
		<link>http://oneononecoach.com/2011/12/wordpress-3-3-sonny/</link>
		<comments>http://oneononecoach.com/2011/12/wordpress-3-3-sonny/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 16:21:47 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>
		<category><![CDATA[Application programming interface]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[Sonny]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress 3.3]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2932</guid>
		<description><![CDATA[<p> &#8220;Sonny&#8221;  WordPress 3.3, As smooth as a Cat!  &#8211; <a title="Smooth as a Cat" href="http://wordpress.org/download/" target="_blank">Download</a></p> <p><a href="http://oneononecoach.com/wp-content/uploads/2011/12/sonny-Stitt2.jpg"></a></p> <p>In honor of the late great saxophonist, the WordPress team named the new release of WordPress 3.3, simply &#8220;Sonny.&#8221;  As you know for the past 5 years I&#8217;ve been testing and reviewing each new feature and function [...]]]></description>
			<content:encoded><![CDATA[<p> <span style="color: #ff0000;">&#8220;Sonny&#8221;  WordPress 3.3, As smooth as a Cat!</span>  &#8211; <a title="Smooth as a Cat" href="http://wordpress.org/download/" target="_blank">Download</a></p>
<p><a href="http://oneononecoach.com/wp-content/uploads/2011/12/sonny-Stitt2.jpg"><img class="alignleft size-full wp-image-2938" title="sonny Stitt2" src="http://oneononecoach.com/wp-content/uploads/2011/12/sonny-Stitt2.jpg" alt="sonny Stitt2 WordPress 3.3   &quot;Sonny&quot;" width="136" height="136" /></a></p>
<p>In honor of the late great saxophonist, the WordPress team named the new release of WordPress 3.3, simply &#8220;Sonny.&#8221;  As you know for the past 5 years I&#8217;ve been testing and reviewing each new feature and function of every WordPress release.  After spending the better part of yesterday testing and playing and working with the new release all I can say is it performs &#8220;&#8216;As smooth as a Cat!&#8221;  The Teams goal was  for a significant polish around the new user experience, navigation, uploading, and imports for the almost 65 million users who downloaded this website platform.</p>
<p>Here&#8217;s a quick run down of all the new upgrades.</p>
<p><strong>For Users:</strong></p>
<p>1.   Drag-and-drop uploader.<br />2.  Hover menus for the navigation.<br />3.  New Toolbar.<br />4.  Improved co-editing support.<br />5.  Tumblr importer.<br />6. Version 3.3 has significant improvements to help new user&#8217;s experience a more smooth and performance oriented platform like the addition of <strong>pointer tips</strong> for new features included in each update, a friendly welcome message for first-time users, and revamped help tabs throughout the interface.<br />7.  Finally they improved the dashboard experience on the iPad and other tablets with better touch support.</p>
<p><strong>For Developers:</strong></p>
<p>Lots and lots of candy for developers here as well.</p>
<p>1.  Start your exploration with the new <a title="editor api" href="http://codex.wordpress.org/Function_Reference/wp_editor" target="_blank">Editor API</a>, new jQuery version.<br />3.  Better ways to hook into the help screens.<br />4.  More performant post-slug-only permalinks.<br />5.  And of course the entire list of improvements <a href="http://codex.wordpress.org/Version_3.3">on the Codex</a> and <a href="http://core.trac.wordpress.org/milestone/3.3">in Trac</a>.</p>
<p>Check out this short video that summarizes  these new features and you&#8217;ll see why I think it performs &#8220;As smooth as a Cat!&#8221;</p>
<p><span style="color: #ff0000;">&#8220;Sonny&#8221;  WordPress 3.3, As smooth as a Cat! </span> &#8211; <a title="Smooth as a Cat" href="http://wordpress.org/download/" target="_blank">Download</a></p>
<p><object width="600" height="324" 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="src" value="http://s0.videopress.com/player.swf?v=1.03" /><param name="wmode" value="direct" /><param name="seamlesstabbing" value="true" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="overstretch" value="true" /><param name="flashvars" value="guid=I7NAw9Zk&amp;isDynamicSeeking=true" /><embed width="600" height="324" type="application/x-shockwave-flash" src="http://s0.videopress.com/player.swf?v=1.03" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=I7NAw9Zk&amp;isDynamicSeeking=true" /></object></p>
<p><a href="http://oneononecoach.com/2011/12/wordpress-3-3-sonny/" rel="bookmark">WordPress 3.3 &#8211; &quot;Sonny&quot;</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on December 13, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/12/wordpress-3-3-sonny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Paradux Media Group Completes 10 Week SEO Course</title>
		<link>http://oneononecoach.com/2011/09/paradux-media-group-completes-10-week-seo-course/</link>
		<comments>http://oneononecoach.com/2011/09/paradux-media-group-completes-10-week-seo-course/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 15:39:37 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Coaching/Teacher/Mentor]]></category>
		<category><![CDATA[SEO/SEM/SMO]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Search engine optimization]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[SEO training]]></category>
		<category><![CDATA[Web Design and Development]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2599</guid>
		<description><![CDATA[<p>Mike Frey, Chief Visionary Officer at Paradux Media Group from Eagle Point Oregon just completed an intense 10 week SEO course I offer as part of my Training and Coaching package and here&#8217;s what he had to say after a few weeks from completion. . .</p> <p>Rick,</p> <p>I wanted to take the time to let [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-2088" title="Rick Cano - Presentation" src="http://oneononecoach.com/wp-content/uploads/2011/04/presentation.jpg" alt="presentation Paradux Media Group Completes 10 Week SEO Course" width="220" height="191" />Mike Frey, Chief Visionary Officer at Paradux Media Group from Eagle Point Oregon just completed an intense 10 week SEO course I offer as part of my Training and Coaching package and here&#8217;s what he had to say after a few weeks from completion. . .</p>
<p><em>Rick,</em></p>
<p><em>I wanted to take the time to let you know how much I appreciated your 10-week SEO class.  Knowing absolutely nothing about SEO I was a little bit intimidated going in, coming out I am very comfortable with every aspect of SEO.  I know look at every website differently, every Google search I do, and how I treat my own website and blog.</em></p>
<p><em>I am amazed at all the little things that I was so unaware of and how they all add up to a big thing, creating landing pages for popular blogs, adding SEO to our images and the cool analytic tricks.  Our website has seen a dramatic change in just a short period and has already paid off in new clients and conversations with new potential clients due only to our improved SEO.</em></p>
<p><em>The timing could not have been better, as in the middle of our training a popular television show announced they were coming to our area, (ABC&#8217;s Extreme Makeover: Home Edition Show).   I decided to blog about the event and using what I had learned from you about SEO my blog was at the top of all local Google searches regarding the event.  I have since written a follow up blog and now both blogs are at the top ahead of all the news media and other bloggers.  Just good SEO.  The increase percentage in how many hits my blog has gotten has a lot of zeros and commas.  I can only thank my SEO training for that.</em></p>
<p><em>I would highly recommend your SEO classes to any business owner.  If your SEO techniques are applied, a ROI will be achieved.  Even with this thank you note, I think I did ok with achieving the proper keyword density for SEO.  Thanks Rick.</em></p>
<p><em>Mike Frey</em><br /><em>Chief Visionary Officer Paradux Media Group</em><br /><em>Eagle Point, Oregon</em><br /><em>(email and phone provided upon request)</em></p>
<p>Want to read more <strong><a title="Testimonials" href="http://oneononecoach.com/testimonialsa/">Testimonials</a></strong></p>
<p><a href="http://oneononecoach.com/2011/09/paradux-media-group-completes-10-week-seo-course/" rel="bookmark">Paradux Media Group Completes 10 Week SEO Course</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on September 1, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/09/paradux-media-group-completes-10-week-seo-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fashion Model &#8211; WordPress</title>
		<link>http://oneononecoach.com/2011/08/fashion-model/</link>
		<comments>http://oneononecoach.com/2011/08/fashion-model/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 21:48:13 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Color scheme]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Markup language]]></category>
		<category><![CDATA[Search engine optimization]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2545</guid>
		<description><![CDATA[<p style="text-align: left;">Custom WordPress Theme Design</p> <p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2011/08/Fashion_Model_Sandra_Falga.png"></a></p> <p> Features included:</p> <p style="padding-left: 30px;">1.  Featured Flash photo gallery, photo flipper and polaroid gallery.<br />2.  Easy upload of photo media library and connect through JS script for homepage, portfolio and gallery pages.<br />3.  Easy Cufon integration of over 60 stylistic fonts.<br />4.  Easy short code [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><span style="font-size: medium;"><strong><span style="text-decoration: underline;">Custom WordPress Theme Design</span></strong></span></p>
<p style="text-align: center;"><a href="http://oneononecoach.com/wp-content/uploads/2011/08/Fashion_Model_Sandra_Falga.png"><img class="size-full wp-image-2549 aligncenter" title="Fashion_Model_Sandra_Falga" src="http://oneononecoach.com/wp-content/uploads/2011/08/Fashion_Model_Sandra_Falga.png" alt="Fashion Model Sandra Falga Fashion Model   WordPress" width="576" height="338" /></a></p>
<p> Features included:</p>
<p style="padding-left: 30px;">1.  Featured Flash photo gallery, photo flipper and polaroid gallery.<br />2.  Easy upload of photo media library and connect through JS script for homepage, portfolio and gallery pages.<br />3.  Easy Cufon integration of over 60 stylistic fonts.<br />4.  Easy short code platform to integrate portfolio&#8217;s or galleries on any page or post.<br />5.  Templates for 2 types of custom pages; Home and Contact.</p>
<p style="font-size: medium;"><strong>Custom Features:</strong></p>
<p style="font-size: medium; padding-left: 30px;"><span style="font-size: small;">1. JQuery slideshow Pop out customized to include navigation buttons as well as a drop down carousel</span>.<br /><span style="font-size: small;">2.  Custom </span><span style="font-size: small;"> templates for 2 additional custom pages; Portfolio and Gallery.<br style="font-size: small;" />3.  Keyword research, title tag, meta tag description and all SEO customizations.<br />4.  Cool Iris Gallery on the fly on the Portfolio Page.<br />5.  Custom Flash integrated within a WordPress website WITHOUT interfering with SEO.</span></p>
<p><a href="http://oneononecoach.com/2011/08/fashion-model/" rel="bookmark">Fashion Model &#8211; WordPress</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on August 19, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/08/fashion-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tribute To Fallen Soldiers &#8211; Media Release</title>
		<link>http://oneononecoach.com/2011/08/tribute-to-fallen-soldiers-media-release/</link>
		<comments>http://oneononecoach.com/2011/08/tribute-to-fallen-soldiers-media-release/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 23:21:36 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2531</guid>
		<description><![CDATA[<p style="text-align: center;">** MEDIA RELEASE **</p> <p style="text-align: center;"> TRIBUTE TO FALLEN SOLDIERS ( OREGON )<br />CONFIRMS ITS EIGHT HONORED FAMILY&#8217;S<br />FOR ITS 2ND ANNUAL MOTORCYCLE RIDE</p> <p style="text-align: center;"> Nashville Recording Artist Rockie Lynne<br />Will Once Again Participate as Ride Host</p> <p> ( Wednesday August 2, 2011 &#8211; Brownsville, OR. )</p> <p>Oregon&#8217;s Tribute to Fallen Soldiers organization [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong>** MEDIA RELEASE **</strong></p>
<p style="text-align: center;"> TRIBUTE TO FALLEN SOLDIERS ( OREGON )<br />CONFIRMS ITS EIGHT HONORED FAMILY&#8217;S<br />FOR ITS 2ND ANNUAL MOTORCYCLE RIDE</p>
<p style="text-align: center;"> Nashville Recording Artist <strong>Rockie Lynne</strong><br />Will Once Again Participate as Ride Host</p>
<p> <em>( Wednesday August 2, 2011 &#8211; Brownsville, OR. )</em></p>
<p>Oregon&#8217;s Tribute to Fallen Soldiers organization has confirmed its eight family&#8217;s to honor during this years 2nd Annual Tribute to Fallen Soldiers Motorcycle Ride scheduled for Saturday &amp; Sunday August 20-21, 2011.</p>
<p>This years ride procession will visit seven different Oregon communities to honor the commitment and sacrifice of eight soldiers who were killed or died during the service to their country. Over its two day ride, the procession of more than 400 motorcycles, law enforcement vehicles and military vehicles will visit Roseburg, Yoncalla, Cottage Grove, Coburg, Sweet Home, Albany and Keizer. The family&#8217;s of these fallen soldiers will receive a special plaque of distinguished service in memory of their fallen family member. The ride procession is escorted by law enforcement and military vehicles and is primarily made up of veterans, gold star family members, dignitaries and everyday citizens who simply want to thank the family&#8217;s for their sacrifice.</p>
<p>In 2010, the first year of the Tribute to Fallen Soldiers Motorcycle ride, the ride procession included more than 350 motorcycles and over 400 participants. This year, the ride is expecting more than 400 motorcycles and nearly 500 participants. Executive Director of the tribute ride Warren Williamson explained how important this ride is to the State of Oregon and to the individual communities. &#8220;When our ride procession arrives in these communities to honor these fallen soldiers, you can see on the faces of the family&#8217;s how honored and amazed they are to see so many people show up to pay tribute to their loved one,&#8230;.but in reality, we&#8217;re the ones who are honored to have the ability to show them we care about their grief and the sacrifice they&#8217;ve given,&#8230;.in some small way we as riders hope we can begin the healing by showing these family&#8217;s there are thousands of people who care and will never forget their loss,&#8230;.and that&#8217;s the mission of our organization,&#8230;we&#8217;ll never forget these brave soldiers who gave their lives for all of us&#8221;.</p>
<p>The 2011 Tribute to Fallen Soldiers Motorcycle Ride begins in Roseburg on Friday August 19th with its &#8220;Welcome Reception&#8221; for its riders, volunteers, sponsors and veterans. On Saturday August 20th, the ride procession will gather at Roseburg&#8217;s National Veterans Cemetery for its rider check-in and its opening ceremony. Day 1 of the ride will include family visits in Roseburg, Yoncalla, Cottage Grove and Coburg. Day 2 ( Sunday ) of the ride will convene in Albany at the Comfort Inn Suites and will include family visits in Sweet Home, Albany and Keizer. Each family visit is approximately 75 minutes in length with each rider having the opportunity to greet each of the family members of the fallen soldier.</p>
<p><strong>Celebration Of Honor</strong><br />Saturday August 20<br />Brownsville, OR.</p>
<p>To coincide with the 2nd Annual Tribute to Fallen Soldiers Motorcycle Ride, a &#8220;Celebration of Honor&#8221; event has been added to the festivities. The &#8220;Celebration of Honor&#8221; is being held in downtown Brownsville on Saturday evening August 20th at Randy&#8217;s Main Street Coffee. After the final family visit of the day on Saturday, the ride procession will ride from Coburg to Brownsville for this special event. The event will include a military bell ringing ceremony, a 21 gun salute, the playing of taps and an outside BBQ hosted by Randy Ginn and Mike Neddeau of Main Street Coffee,</p>
<p>Also on the schedule is a special concert appearance by Nashville recording artist and Tribute to Fallen Soldiers Motorcycle Ride host Rockie Lynne.</p>
<p>Tribute to Fallen Soldiers Oregon stems from the national organization Tribute to the Troops. The State of Oregon joins Minnesota and Illinois as the only 3 States who currently have a tribute ride to honor the sacrifice of fallen soldiers.</p>
<p>For anyone interested in riding in Oregon&#8217;s Tribute to Fallen Soldiers Motorcycle Ride, they can sign up by going to the web site at www.TributetoFallenSoldiers.com. The fee for single riders is $30. The fee for a rider plus passenger is $35. Monies raised from this annual ride go into the tribute ride General Support Fund for military families who could use additional help or support.</p>
<p>Tribute to Fallen Soldiers Oregon is sponsored by; Salem Harley Davidson, Xtreme Grafics, Randy&#8217;s Main Street Coffee, Oregon Duck Football News.com, Holiday Inn Express, Comfort Inn Suites, Oregon Army National Guard and Cano Consulting.</p>
<p><strong>TENTATIVE SCHEDULE</strong></p>
<p>Enclosed is a rundown of our 2011 Tribute to Fallen Soldiers Motorcycle Ride schedule:</p>
<p><strong>Friday August 19</strong></p>
<p>* 3PM &#8211; Riders can begin their check-in ( Holiday Inn Express Hotel &#8211; Roseburg )</p>
<p>* 6PM &#8211; Tribute Ride Welcome Reception at the Holiday Inn Express hotel in Roseburg</p>
<p><strong>Saturday August 20</strong></p>
<p>* 7AM &#8211; Riders can begin check-in at National Veterans Cemetery in Roseburg</p>
<p>* 8:45AM &#8211; Rider Safety Briefing</p>
<p>* 9AM &#8211; Opening Ceremony at National Veterans Cemetery ( Presentation of Colors &amp; Taps )</p>
<p>* 9:15AM &#8211; Ride Procession departs National Veterans Cemetery for 1st family visit</p>
<p>* 9:30AM &#8211; 1st Family Visit in Roseburg</p>
<p>* 5:30PM &#8211; Expected arrival of Ride Procession into Brownsville</p>
<p>* 6:00PM &#8211; &#8220;Celebration of Honor&#8221; begins in downtown Brownsville, OR</p>
<p><strong>Sunday August 21</strong></p>
<p>* 7AM &#8211; Riders can begin check-in at Comfort Inn Suites hotel in Albany, OR.</p>
<p>* 8:45AM &#8211; Rider Safety Briefing</p>
<p>* 9:00AM &#8211; Ride Procession departs Comfort Inn Suites hotel for 1st family visit in Sweet Home, OR.</p>
<p>* 9:45AM &#8211; 1st Family Visit in Sweet Home, OR.</p>
<p>* 4:30PM &#8211; Expected ending time of Day 2 in Keizer, OR.</p>
<p>For additional information, please call ( 541 ) 466-3533</p>
<p>&nbsp;</p>
<p>Tribute to Fallen Soldiers Oregon<br />Warren Williamson<br />Executive Director<br /><a title="Tribute To Fallen Soldiers Official Website" href="http://www.TributetoFallenSoldiers.com" target="_blank">www.TributetoFallenSoldiers.com</a> (Official Website Custom Theme design by Rick Cano @ CanoConsulting.com</p>
<p><a href="http://oneononecoach.com/2011/08/tribute-to-fallen-soldiers-media-release/" rel="bookmark">Tribute To Fallen Soldiers &#8211; Media Release</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on August 10, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/08/tribute-to-fallen-soldiers-media-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commercial Real Estate &#8211; WordPress</title>
		<link>http://oneononecoach.com/2011/08/commercial-real-estate-website/</link>
		<comments>http://oneononecoach.com/2011/08/commercial-real-estate-website/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 18:29:48 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[LoopNet]]></category>
		<category><![CDATA[Meta element]]></category>
		<category><![CDATA[Real estate]]></category>
		<category><![CDATA[Search engine optimization]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2438</guid>
		<description><![CDATA[<p style="text-align: left;">Custom WordPress Website Design</p> <p><a href="http://oneononecoach.com/wp-content/uploads/2011/08/Columbia-Commercial-Real-Estate.png"></a></p> <p>Features includes:</p> <p style="padding-left: 30px;">1.  Featured properties in a Jquery slideshow.<br />2.  Easy upload of photo into post and you&#8217;re done.  No need to specify a url for the uploaded photo.<br />3.  Advanced Google Maps:</p> <p style="padding-left: 60px;">a.  Just specify a street address, Google will find the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><span style="font-size: medium;"><strong><span style="text-decoration: underline;">Custom WordPress Website Design</span></strong></span></p>
<p><a href="http://oneononecoach.com/wp-content/uploads/2011/08/Columbia-Commercial-Real-Estate.png"><img class="alignleft size-full wp-image-2995" title="Columbia Commercial Real Estate" src="http://oneononecoach.com/wp-content/uploads/2011/08/Columbia-Commercial-Real-Estate.png" alt="Columbia Commercial Real Estate Commercial Real Estate   WordPress" width="599" height="584" /></a></p>
<p><span style="font-size: medium;"><strong>Features includes:</strong></span></p>
<p style="padding-left: 30px;">1.  Featured properties in a Jquery slideshow.<br />2.  Easy upload of photo into post and you&#8217;re done.  No need to specify a url for the uploaded photo.<br />3.  Advanced Google Maps:</p>
<p style="padding-left: 60px;">a.  Just specify a street address, Google will find the map.<br />b.  Disable maps in the admin globally or per post.<br />c.  Parameters to display addresses that is not located on a street.</p>
<p style="padding-left: 30px;">4.  Customize the site for your currency in the admin section.<br />5.  Supports multiple agents.  Each agent can upload his own properties, and will receive his own responses.<br />6.  Features section makes use of tags.  Type in only once, and click to activate next time.  You do not have to retype features.</p>
<p style="font-size: medium;"><strong>Custom Features:</strong></p>
<p style="font-size: medium; padding-left: 30px;"><span style="font-size: small;">1.  JQuery slideshow customized to include navigation buttons as well as a drop down carousel</span>.<br /><span style="font-size: small;">2.  Custom Tables for property display and easy uploading directly within the table admin section.</span><br /><span style="font-size: small;">3.  iFrame embed and integration from LoopNet, Inc.<br />4.  Keyword research, title tag, meta tag description and all SEO customizations.</span></p>
<p><a href="http://oneononecoach.com/2011/08/commercial-real-estate-website/" rel="bookmark">Commercial Real Estate &#8211; WordPress</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on August 2, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/08/commercial-real-estate-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One WordPress Website or Ten Million with One Installation?</title>
		<link>http://oneononecoach.com/2011/05/one-wordpress-website-or-ten-million-with-one-installation/</link>
		<comments>http://oneononecoach.com/2011/05/one-wordpress-website-or-ten-million-with-one-installation/#comments</comments>
		<pubDate>Sat, 28 May 2011 01:19:57 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Plug-in (computing)]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Publishers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugin Directory]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2181</guid>
		<description><![CDATA[<p>One Blog or Static Website or a Hundred with One Installation?<br /></p> <p>As you recall I wrote an article not soon after the release of WordPress 3.0 &#8220;Thelonious&#8221; back in June 2010,  and I posted a review of that particular version. I knew at the time that the &#8220;Network&#8221; capability was going to revolutionize networking [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000; font-size: large;"><img class="alignleft size-full wp-image-1887" title="Computer1" src="http://oneononecoach.com/wp-content/uploads/2010/08/Computer1.png" alt="Computer1 One WordPress Website or Ten Million with One Installation?" width="128" height="128" />One Blog or Static Website or a Hundred with One Installation?</span><br /></strong></p>
<p>As you recall I wrote an article not soon after the release of WordPress 3.0 &#8220;Thelonious&#8221; back in June 2010,  and I posted a review of that particular version. I knew at the time that the &#8220;Network&#8221; capability was going to revolutionize networking platform setups, but I wanted to wait and review the tech forums as well as test it myself.   More importantly it would also give a small business owner an ability to set up a &#8220;new&#8221; money making multisite set up without having the need for any special themes, plugins,  complicated MU multisite membership, AND set it up just like you would as a single WordPress installation, with the exception of a few minor modifications.</p>
<p><span style="font-size: large;"><strong><span style="text-decoration: underline; color: #008000;">My Test: </span></strong></span></p>
<p>My six month test of the new network capability consisted of one Parent website and 10 individual websites with ten different WordPress themes, separate membership platforms and three separate shopping carts.  You&#8217;ll be happy to learn that I ran into virtually no issues and I didn&#8217;t have to spend a single dime in the process.  I used a sub-directory URL set up versus the sub-domain URL set up, mainly because I wanted to see if I can set it up with NO Extra cost out of pocket.  I didn&#8217;t even have to purchase a special WPMU membership plugin,themes etc&#8230;..which by the way a membership for a WPMU membership costs $67 per month.  Another reason to test this sort of set up is that large sites like Etsy.com and BigCartel.com are gaining so much popularity but for the average small business owner, it would cost a fortune to set up a comparable type of network site.  Not anymore!!</p>
<p><span style="text-decoration: underline; color: #008000; font-size: large;"><strong>My Results:</strong></span></p>
<ol>
<li>No special WordPress Theme.  Yes, that means you don&#8217;t have to purchase a BuddyPress license and &#8220;only&#8221; use that type of theme.  Any WordPress theme will work.</li>
<li>No special plugins.  In fact, I used the same plugins I&#8217;ve been using for years in a single WordPress set up and I had no issues with any of my plugins.</li>
<li>One &#8220;Network Admin&#8221; that controls virtually all of the network users, profiles, plugins and themes.  In other words, you load the plugins and themes in the network platform and then activate, deactivate or delete from the network platform.</li>
<li>Despite having one Network Admin Dashboard, each individual website within the network has its own Admin Dashboard where you can control plugins, themes, post, pages, users and your own settings for the individual website.</li>
<li>No need to purchase separate domain names for each individual website.  You can virtually run your very own Etsy type website and charge individuals to set up there own website, with there own themes and plugins.  But you continue to have Network control from your Parent website.</li>
</ol>
<p>The easiest way to understand how this works is how we use Child Themes.  A child theme cannot function unless you have A Parent Theme.  In the same way, individual websites (child theme scenario) cannot function unless it has a Parent Website, and just as the Parent Site controls most of the themes functions the Parent Website controls most of the network functions.</p>
<p>Of course I&#8217;m not covering all the intricate details and coding modifications to the config.php file etc.  I just wanted to show you how I conducted my test and how it required no additional money out of pocket.</p>
<p>From start to finish it took me roughly 30 minutes to set up the Network Admin and 10 individual websites within one network.  Take a look at my demo, but I warn you that its merely a demo for testing so you won&#8217;t see a lot of content.  I was more interested in setting up the network and testing all the functions.</p>
<p>Click here to access 10 <a title="Rick Cano | Cano Consulting | Network Demo Sites" href="http://mywordpressdesign.info/" target="_blank">CanoConsulting-Network Demo Sites</a> (If you need professional &#8220;affordable&#8221; help&#8230;you know how to contact me&#8230;and believe me when I say, my Network Set Up package is extremely affordable).  Rick.Cano@CanoConsulting.com</p>
<p><strong>Check out this tutorial &#8220;How To Enable Multisite in WordPress&#8221;</strong></p>
<p><iframe src="http://www.youtube.com/embed/LppTsokFCpM" frameborder="0" width="425" height="349"></iframe></p>
<p><a href="http://oneononecoach.com/2011/05/one-wordpress-website-or-ten-million-with-one-installation/" rel="bookmark">One WordPress Website or Ten Million with One Installation?</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on May 27, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/05/one-wordpress-website-or-ten-million-with-one-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing An Effective Website</title>
		<link>http://oneononecoach.com/2011/04/designing-an-effective-website/</link>
		<comments>http://oneononecoach.com/2011/04/designing-an-effective-website/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 19:01:18 +0000</pubDate>
		<dc:creator>Rick Cano</dc:creator>
				<category><![CDATA[Web Design - WordPress]]></category>

		<guid isPermaLink="false">http://oneononecoach.com/?p=2008</guid>
		<description><![CDATA[<p></p> <p>5 Steps to Effective Website Development:</p> <p>1. SEO (Search Engine Optimization):  In order to have a fully optimized website you must have a Title, Description and Niche keywords embedded in your website.</p> The title of your website must have at least one or two niche keywords, often called your primary keyword for your website. It [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><span style="font-size: medium; color: #339966;"><strong><img class="alignleft size-full wp-image-1946" title="Workstation_by_Artdesigner.lv100px" src="http://oneononecoach.com/wp-content/uploads/2011/03/Workstation_by_Artdesigner.lv100px.png" alt="Workstation by Artdesigner.lv100px Designing An Effective Website" width="100" height="100" /></strong></span></p>
<p><span style="font-size: medium; color: #339966;"><strong>5 Steps to Effective Website Development:</strong></span></p>
<p>1. <span style="color: #0000ff;"><strong>SEO</strong> </span>(Search Engine Optimization):  In order to have a fully optimized website you must have a Title, Description and Niche keywords embedded in your website.</p>
<ul>
<li>The title of your website must have at least one or two niche keywords, often called your primary keyword for your website. It should have at least 60 characters.  Be specific.</li>
<li>The description should have a sentence of up to 160 characters describing your website and should have at least 3 niche keywords.  It should be as detailed as you can within the 160 characters. Be specific!</li>
<li>The Niche keywords you should have embedded in your website SEO section should be at least 10 to 20.</li>
</ul>
<p>2. <span style="color: #0000ff;"><strong>Content</strong>:</span> Compared to the SEO section I eluded to above,  content is the actual body within your pages and your postings.  The key here is to make sure you integrate your Title, Description and Niche keywords in the content areas of your website.  One of the biggest questions I get from my clients is &#8220;what is the difference between the SEO section and the Content section of a website.&#8221;  The simplest way I can explain this is that every website ever created has two sections to it..the Content; which is the area that the public or your potential clients See..and the SEO section is in your Control Panel or Dashboard of your website.  However, the thing to remember is that regardless of the location of these two areas&#8230;they should mirror each other.</p>
<p>3.<span style="color: #0000ff;"> <strong>Plug Ins</strong>:</span> Some people like to call these gadgets or tools or bells and whistles.  What ever you want to call them, they&#8217;re simply Addon&#8217;s to increase the functionality of your website.  Most closely related to a Word Press website.  They are also sometimes confused with a widget.  To keep this simple just remember that a plug in and a widget add tools to increase the functionality of your website.  They are all created mainly so that your potential clients can navigate and view your website easier.</p>
<p>4. <span style="color: #0000ff;"><strong>Add links</strong>: </span> When we refer to links, we&#8217;re really talking about two types of links.  Either Html coded links or Hyper links&#8230;and come from either your Affiliate&#8217;s resource site or from a back link of a potential linking partner.  Very critical that you add links to your website and always make sure you test the links to insure that you  have copied and paste them correctly.</p>
<p>5. <span style="color: #0000ff;"><strong>Marketing/Promoting Website</strong>:</span> When we talk about Marketing and promoting your website, we&#8217;re really talking about Monetizing and Networking.  Why the difference&#8230;well&#8230;In order to monetize your website you have to sign up with several vendors as an affiliate and when you sign up to be an affiliate an add their links to your website(see add links section above)&#8230;your adding a means for your potential clients to click thru and buy something from one of your linking partners.  When we refer to networking..we&#8217;re referring to promoting your website to multiple areas.  Thees areas can be Directories, Facebook, MySpace, LinkedIn, Twitter etc.</p>
<p>In closing&#8230;you have to insure that you integrate each of the 5 areas we spoke off because each area will enable your website to gain Traffic&#8230;.as you increase your traffic you will increase your ranking and as you increase your ranking you gain more traffic&#8230;the ultimate goal is to make money!!</p>
</div>
<p><a href="http://oneononecoach.com/2011/04/designing-an-effective-website/" rel="bookmark">Designing An Effective Website</a> originally appeared on <a href="http://oneononecoach.com">WordPress | Website Design | SEO Analytics | Online Trainer - Coach</a> on April 1, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://oneononecoach.com/2011/04/designing-an-effective-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  oneononecoach.com/feed/ ) in 1.91640 seconds, on May 17th, 2012 at 8:03 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 24th, 2012 at 8:03 pm UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  oneononecoach.com/feed/ ) in 0.00043 seconds, on May 18th, 2012 at 10:39 pm UTC. -->
