<?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>McBuzz Communications &#124; Mark McLaren &#187; howto</title>
	<atom:link href="http://www.mcbuzz.com/tag/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mcbuzz.com</link>
	<description>Search Engine Optimization, Social Media Marketing, WordPress Websites</description>
	<lastBuildDate>Mon, 23 Jan 2012 20:54:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Exclude Internal Visits/Visitors from Google Analytics Reports Using Asynchronous Code</title>
		<link>http://www.mcbuzz.com/2011/how-to-exclude-visitors-from-google-analytics/</link>
		<comments>http://www.mcbuzz.com/2011/how-to-exclude-visitors-from-google-analytics/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 23:56:04 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[McBuzz Blog]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[asynchronous script]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[exclude visitors]]></category>
		<category><![CDATA[exclude visits]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[internal traffic]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=1372</guid>
		<description><![CDATA[As a Goolge Analytics Consultant, McBuzz helps clients learn about traffic on their website so they can improve visitors&#8217; experience and generate more leads and sales. If you have a website, you should be using Google Analytics to track visitors on your site. But you don&#8217;t need to track your own visits to the site, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mcbuzz.com/wp-content/uploads/2011/08/exclude-visitors-google-analytics1.jpg"><img class="alignright size-medium wp-image-1414" title="Google Analytics custom filter to exclude internal traffic from reports" src="http://www.mcbuzz.com/wp-content/uploads/2011/08/exclude-visitors-google-analytics1-289x300.jpg" alt="" width="289" height="300" /></a>As a <a href="http://www.mcbuzz.com/about-mcbuzz-web-marketing-services/google-adwords-google-analytics/">Goolge Analytics Consultant</a>, McBuzz helps clients learn about traffic on their website so they can improve visitors&#8217; experience and generate more leads and sales. If you have a website, you should be using Google Analytics to track visitors on your site. But you don&#8217;t need to track <em>your own visits</em> to the site, nor do you want to track visits made by other people in your company, or by your clients if you are a webmaster or online marketing consultant.</p>
<h2 style="font-size: 12px; color: #0072bc; font-weight: bold; padding-bottom: 6px;">EXCLUDING INTERNAL TRAFFIC FROM GOOGLE ANALYTICS REPORTS</h2>
<p>All these visits are called &#8220;internal traffic&#8221;: visits made by you or by people who work for the company that owns the website. Data from these visits will skew the results that you really want to see. You want to track visits made by customers and potential customers.</p>
<p>There are a number of ways to <em>exclude internal traffic from Google Analytics reports</em>. <a href="http://www.mcbuzz.com/2011/how-to-exclude-visitors-from-google-analytics/">Continued&#8230;</a><span id="more-1372"></span>You can exclude visitors based on the IP address of their computer/internet connection. And you can exclude a range of IP addresses so that you can keep visits for a large office of many users out of Analytics reports. This is appropriate if there are many people in an office who all access the company website to do certain tasks.</p>
<p>There are situations where excluding internal traffic using an IP address may not be ideal. If you or people in your office work remotely, then they need to exclude IP addresses at home as well as at work. If you are like me and you work from many different locations, then trying to exclude IP addresses every time you sit down in a coffee shop somewhere can be tedious and time-consuming.</p>
<p>There&#8217;s an easier solution: excluding internal traffic using a cookie. When you exclude traffic with a cookie, you can filter out of Analytics reports all the visits you make to a given domain.</p>
<h2 style="font-size: 12px; color: #0072bc; font-weight: bold; padding-bottom: 6px;">HOW TO EXCLUDE INTERNAL TRAFFIC FROM GOOGLE ANALYTICS REPORTS USING A COOKIE</h2>
<p>You can create the cookie to exclude internal visits using a bookmarklet, but frankly this is about as tedious as using multiple IP addresses. So the way I like to do it is with a simple web page and a little bit of JavaScript.</p>
<ol>
<li>Create a simple web page</li>
<li>Use the following in the HTML file for the page:<br />
<code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script type="text/javascript"&gt;<br />
var _gaq = _gaq || [];<br />
_gaq.push(['_setAccount', 'UA-xxxxxxx-x']);<br />
_gaq.push(['_trackPageview']);<br />
(function() {<br />
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;<br />
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';<br />
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);<br />
})();<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body onLoad="javascript:_gaq.push(['_setVar', 'no_report']);"&gt;<br />
&lt;h1&gt;Google Analytics cookie has been created!&lt;/h1&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></li>
<li style="padding-top: 8px;">Replace UA-xxxxxxx-x with your Google Analytics account ID</li>
<li>Save the file with whatever name you want. I use the domain name plus &#8220;no-report&#8221;, for example: yourdomain-no-report.html</li>
<li>Upload the file to the &#8220;root&#8221; directory of the website, so you can get to the page by going to http://yourdomain.com/yourdomain-no-report.html</li>
<li>Note that this HTML page and the cookie it creates use the <em>asynchronous Google Analytics script</em>. If you are using the old version of the script or you are not sure what you are using, <a href="http://www.mcbuzz.com/contact-us/">contact me</a>.</li>
<li>Note that as of Oct. 10, 2011, this code does not seem to WORK! It creates a cookie with the &#8220;no_report&#8221; content, but I looked at two profiles last night and the filter does not seem to do its job. <a title="Google Analytics cookie javascript different from the one I use" href="http://www.google.com/support/analytics/bin/answer.py?hl=en&amp;answer=55481" target="_blank">Here is a Google Analytics Help post that uses a different onLoad script to create the cookie.</a> I will investigate later today. <a title="Google Analytics Asynchronous Code Usage Guide" href="http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html" target="_blank">Here is the Google Analytics Asynchronous Code Usage Guide.</a><br />
<h2 style="font-size: 12px; color: #0072bc; font-weight: bold; padding-bottom: 6px; padding-top: 20px;">HOW TO CREATE A FILTER IN GOOGLE ANALYTICS TO EXCLUDE INTERNAL VISITS</h2>
<p>Next, create a <em>custom &#8220;Exclude&#8221; filter</em> in Google Analytics using the Filter Manager.</p>
<ol>
<li>Login to Google Analytics</li>
<li> Click on the website name in the main dashboard</li>
<li> Now you will see the dashboard for that particular site</li>
<li> Click on the <a href="http://www.mcbuzz.com/wp-content/uploads/2011/08/exclude-visitors-filter-google-analytics.jpg">Google Analytics Filter Manager (shown here)</a></li>
<li style="margin-bottom: 10px;"><a href="http://www.mcbuzz.com/wp-content/uploads/2011/08/exclude-visitors-google-analytics1.jpg"> Add a new exclude filter with these settings (shown here)</a> &#8211; To see this image at full size, <a href="http://www.mcbuzz.com/wp-content/uploads/2011/08/exclude-visitors-google-analytics1.jpg" target="_blank">click here</a>. Then right-click on the image and select &#8220;View Image&#8221;.<strong>Filter Settings</strong><br />
Filter Type: Custom filter &gt; Exclude<br />
Filter Field: User-Defined<br />
Filter Pattern: no_report<br />
Case-sensitive: No</li>
<li>Be sure to select the name of the website under &#8220;Available Website Profiles&#8221; and click the Add button to add it to the &#8220;Selected Website Profiles&#8221;</li>
<li>Click <strong>Save Changes</strong></li>
</ol>
</li>
<h2 style="font-size: 12px; color: #0072bc; font-weight: bold; padding-bottom: 6px; padding-top: 20px;">&#8220;SET&#8221; THE COOKIE IN ANY BROWSER YOU USE TO VIEW THE WEBSITE</h2>
<p>Finally, after you have uploaded your HTML file, you need to go to the address where you can view that page with your web browser. For example: http://yourdomain.com/yourdomain-no-report.html</p>
<p>Once you see that page, you are done. Just close your browser window or go to any other web page.</p>
<p>You need to be sure to visit that page with every browser you use to view or work on your site. And everyone one at your company should do the same. So if you use one computer at home and another at work, you need to go to that cookie page with each machine. If you use more than one web browser, you need to go to that page with all of them. If you clear out (delete) your cookies, you&#8217;ll need to visit the page again after doing so.</ol>
<h2 style="font-size: 12px; color: #0072bc; font-weight: bold; padding-bottom: 6px; padding-top: 20px;">Tracking Visits to the Exclude Filter Page</h2>
<p>By including the Google Analytics tracking snippet on the cookie filter page (like this filter page does), you can see who visits the page. This is valuable info if you are a marketing consultant, because you can see if your client has visited the page like you asked them to! And if you have asked more than one person to do so, you know who has and who has not. Note in the real example below that, so far, only one person has visited the page (on two different browsers).</p>
<div id="attachment_1458" class="wp-caption alignnone" style="width: 310px"><a href="http://www.mcbuzz.com/wp-content/uploads/2011/08/google-analytics-exclude-filter-follow-up.jpeg"><img class="size-medium wp-image-1458" title="Google Analytics Exclude Filter - Tracking Visits" src="http://www.mcbuzz.com/wp-content/uploads/2011/08/google-analytics-exclude-filter-follow-up-300x250.jpg" alt="Google Analytics Exclude Filter - Tracking Visits" width="300" height="250" /></a><p class="wp-caption-text">You can check the Google Analytics Exclude Filter page visitor stats to see if people you asked to visit the filter page have actually done so.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2011/how-to-exclude-visitors-from-google-analytics/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Is Search Engine Optimization a Science? Yes. Here&#8217;s Proof that SEO is a Science, Not a Dark Art</title>
		<link>http://www.mcbuzz.com/2011/search-engine-optimization-periodic-table/</link>
		<comments>http://www.mcbuzz.com/2011/search-engine-optimization-periodic-table/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 23:43:36 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[McBuzz Blog]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[checklist]]></category>
		<category><![CDATA[Danny Sullivan]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[periodic table]]></category>
		<category><![CDATA[Search Engine Land]]></category>
		<category><![CDATA[the art of seo]]></category>
		<category><![CDATA[the science of seo]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=1296</guid>
		<description><![CDATA[Is Search Engine Optimization (SEO) an art or a science? Or is it neither? Although it&#8217;s as old as the Internet itself, SEO is still misunderstood by many folks, even those who know a lot about the Internet and Online Communications. [...]
One reason for the confusion is that people knowledgeable about SEO are often reluctant [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mcbuzz.com/wp-content/uploads/2011/06/SearchEngineLand-Periodic-Table-of-SEO-large.png"><img class="alignright size-thumbnail wp-image-1298" title="Periodic Table of SEO Ranking Factors" src="http://www.mcbuzz.com/wp-content/uploads/2011/06/SearchEngineLand-Periodic-Table-of-SEO-large-150x150.png" alt="Periodic Table of SEO Ranking Factors" width="150" height="150" /></a>Is Search Engine Optimization (SEO) an art or a science? Or is it neither? Although it&#8217;s as old as the Internet itself, SEO is still misunderstood by many folks, even those who know a lot about the Internet and Online Communications. [...]<span id="more-1296"></span></p>
<p>One reason for the confusion is that people knowledgeable about SEO are often reluctant to share their secrets. If SEOs, as search engine optimization experts are called, were more transparent with what they do, it would be much easier for non-SEO experts to decide whether optimization techniques are a set of standardized, rational practices or something that a few people are just naturally good at because they have a &#8220;feel&#8221; for it &#8211; or, much worse, just a bunch of smoke and mirrors.</p>
<p>Today Danny Sullivan at Search Engine Land took a great step towards transparency by publishing a <a href="http://searchengineland.com/seotable" target="_blank">Periodic Table of SEO Ranking Factors</a>. The table is an awesome piece of work. And there&#8217;s much more to it than the  infographic alone. There is a complete discussion of each SEO ranking factor.</p>
<p>If we can generalize about something like SEO and codify it in a meaningful and useful way, like Sullivan has done with the ranking factor table, then we have clear evidence for it being a science versus just an art or smoke and mirrors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2011/search-engine-optimization-periodic-table/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization 101 &#8211; How to Choose Keywords: A Lesson from the Bayer Aspirin Marketing Team</title>
		<link>http://www.mcbuzz.com/2011/seo-101-how-to-choose-keywords-a-lesson-from-bayer-aspirin/</link>
		<comments>http://www.mcbuzz.com/2011/seo-101-how-to-choose-keywords-a-lesson-from-bayer-aspirin/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 19:50:56 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[McBuzz Blog]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=1162</guid>
		<description><![CDATA[Successful online marketers understand the need to talk about their products in terms customers recognize and respond to.
Choosing good keywords is hard &#8211; no matter what size your business is. Sometimes it&#8217;s a challenge to get my clients to see the importance of using language in their marketing materials &#8211; including their website &#8211; that [...]]]></description>
			<content:encoded><![CDATA[<h3 style="font-size: 14px;">Successful online marketers understand the need to talk about their products in terms customers recognize and respond to.</h3>
<p><a href="http://www.mcbuzz.com/wp-content/uploads/2011/02/search-engine-optimization-101-lesson-from-bayer-aspirin.jpg"><img class="alignleft size-medium wp-image-1164" style="border: 0pt none;" title="Search Engine Optimization 101 - Choosing Good Keywords: A Lesson From Bayer Aspirin" src="http://www.mcbuzz.com/wp-content/uploads/2011/02/search-engine-optimization-101-lesson-from-bayer-aspirin-300x190.jpg" alt="Search Engine Optimization 101 - Choosing Good Keywords - Low Dose Aspirin Packaging" width="300" height="190" /></a><strong>Choosing good keywords is hard &#8211; no matter what size your business is.</strong> Sometimes it&#8217;s a challenge to get my clients to see the importance of using language in their marketing materials &#8211; including their website &#8211; that they themselves wouldn&#8217;t necessarily use to talk about their products or services.</p>
<p>Sometimes C-level executives don&#8217;t like using words they feel have<span id="more-1162"></span> the wrong connotation. Sometimes this boils down to the fact that they see their product or service as unique, so unique that it can&#8217;t be described in standard terms. Sometimes the Marketing Department is concerned about <em><strong>the brand</strong></em>, about setting their company apart from the competition in a good way. These things are fine. You want to show that you are different from your competitors in significant ways. But there are a couple of serious problems with insisting on being unique when it comes to choosing the language you use for marketing.</p>
<p>First, if you brand your product or service using language that none of your competitors uses, you stand a good chance of <strong><em>not being found in search results for the keywords that really matter</em></strong>, the keywords that will bring success. Second, you risk being so unique, so innovative, in the way you talk about what you do, that customers and potential customers won&#8217;t see you as being able to solve the problems that matter to them, the problems they know your competitors can solve &#8211; because you are not using language that they <strong><em>recognize and associate with the needs of their business</em></strong>.</p>
<p>Some companies understand this, and they do the right thing. Here&#8217;s a concrete example. Look at the box for Bayer Low Dose Aspirin above. (Click on the image to enlarge it.)</p>
<p>Why does this low dose aspirin have a bottle with an Easy Grip Cap? Because the product is for elderly people. If it&#8217;s for elderly people, why does it say &#8220;Baby&#8221; Aspirin on the box? This aspirin is most certainly <em>not</em> for babies. The fact that &#8220;Baby&#8221; is in quotes is a clue. It means that this product is <em>identical</em> to baby aspirin. It&#8217;s what&#8217;s <em>called</em> &#8220;Baby&#8221; Aspirin. It&#8217;s the <em>same dosage</em>. This is the aspirin we have all heard so much about in the news and in medical studies. One tablet a day prevents heart attacks. Not in babies. Babies don&#8217;t have heart attacks. Bayer wants you to know that this product is for <em>elderly people AND it is the &#8220;Baby&#8221; Aspirin dosage</em>, just in case there&#8217;s any doubt.</p>
<p><strong>This is exactly how we need to choose keywords</strong> &#8211; the language we use in web pages and in links to our web pages. Just as people will search for &#8220;Baby&#8221; Aspirin on a grocery store shelf, people will search for and recognize keywords they associate with what they need when they use Google or any other search engine. If your web pages don&#8217;t include those keywords, you&#8217;re missing a huge opportunity and you are not going to win at <a title="Search Engine Optimization Services" href="http://www.mcbuzz.com/services/search-engine-optimization/">SEO</a>.</p>
<p>If Bayer didn&#8217;t put &#8220;Baby&#8221; Aspirin on the box, shoppers might see the easy grip cap and think that&#8217;s not what they&#8217;re looking for. All the studies and all the news reports have said &#8220;Baby&#8221; Aspirin is the form of the drug that is most effective against heart attacks. Is it <strong>aspirin for babies</strong>? No. Should Bayer call it that? Absolutely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2011/seo-101-how-to-choose-keywords-a-lesson-from-bayer-aspirin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Q&amp;A: More Answers to WordPress Questions</title>
		<link>http://www.mcbuzz.com/2010/wordpress-qa-more-answers-to-wordpress-questions/</link>
		<comments>http://www.mcbuzz.com/2010/wordpress-qa-more-answers-to-wordpress-questions/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 20:52:14 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[McBuzz Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[answers]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[markmclaren]]></category>
		<category><![CDATA[mcbuzz]]></category>
		<category><![CDATA[Meetup]]></category>
		<category><![CDATA[Meetup.com]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress Websites]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=1113</guid>
		<description><![CDATA[Questions about WordPress websites or blogs? They may already have been answered. Check the earlier posts &#8220;Questions About WordPress? Ask Them Here!&#8221; and &#8220;More WordPress Questions?&#8221; There are over 160 comments, questions and replies there.
Otherwise, just post your WordPress question in the comments below, and we will respond. The cost? FREE!
P.S. If you&#8217;re into WordPress, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-620" style="border: 0pt none; margin-top: 0px;" title="WordPress Questions?" src="http://www.mcbuzz.com/wp-content/uploads/2010/03/wordpress-questions.gif" alt="WordPress Questions?" width="190" height="124" />Questions about <strong><em>WordPress websites or blogs</em></strong>? They may already have been answered. Check the earlier posts &#8220;<a href="http://www.mcbuzz.com/2010/questions-about-wordpress-ask-them-here/">Questions About WordPress? Ask Them Here!</a>&#8221; and &#8220;<a href="http://www.mcbuzz.com/2010/more-wordpress-questions-ask-them-here/">More WordPress Questions?</a>&#8221; There are over 160 comments, questions and replies there.</p>
<p>Otherwise, just post your <em>WordPress question</em> in the comments below, and we will respond. The cost? FREE!</p>
<p>P.S. If you&#8217;re into WordPress, <a title="Follow Mark McLaren and McBuzz Communications on Twitter" href="http://twitter.com/mcbuzz" target="_blank">follow Mark McLaren on Twitter</a> for free tips and howto&#8217;s. And if you are in Seattle, check out the <a href="http://www.meetup.com/SeattleWordPressMeetup/">Seattle WordPress Meetup</a> on Meetup.com.</p>
<p>Please note that McBuzz Communications, the McBuzz.com website and Mark McLaren are not affiliated with Automattic (parent company of WordPress) or WordPress.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/wordpress-qa-more-answers-to-wordpress-questions/feed/</wfw:commentRss>
		<slash:comments>181</slash:comments>
		</item>
		<item>
		<title>More Great Home Pages that Drive You to Take Action</title>
		<link>http://www.mcbuzz.com/2010/more-great-home-pages-that-drive-you-to-take-action/</link>
		<comments>http://www.mcbuzz.com/2010/more-great-home-pages-that-drive-you-to-take-action/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 19:31:11 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[Search Marketing]]></category>
		<category><![CDATA[birchbox]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=1071</guid>
		<description><![CDATA[Following up on Friday&#8217;s post, Search Marketing 101: Home Pages that Drive You to Take Action, here are more home pages that do a great job of telling you what the business does and how to take action.
Birchbox

Nice slogan: &#8220;Delivering Beauty Better&#8221;
Bullet points to tell you exactly what the slogan means
Prominent call to action button: [...]]]></description>
			<content:encoded><![CDATA[<p>Following up on Friday&#8217;s post, <a title="Search Marketing 101: Home Pages that Drive You to Take Action" href="http://www.mcbuzz.com/2010/search-marketing-101-home-pages-that-drive-you-to-take-action/" target="_self">Search Marketing 101: Home Pages that Drive You to Take Action</a>, here are more home pages that do a great job of telling you what the business does and how to take action.</p>
<p><a title="Birchbox search marketing - home page" href="http://www.mcbuzz.com/wp-content/uploads/2010/08/birchbox-home-page.jpg" target="_blank"><img class="alignright size-medium wp-image-1072" title="Birchbox Home Page - McBuzz Search Marketing 101" src="http://www.mcbuzz.com/wp-content/uploads/2010/08/birchbox-home-page-300x197.jpg" alt="Birchbox Home Page - McBuzz Search Marketing 101" width="300" height="197" />Birchbox</a></p>
<ul>
<li>Nice slogan: &#8220;Delivering Beauty Better&#8221;</li>
<li>Bullet points to tell you exactly what the slogan means</li>
<li>Prominent call to action button: Join Now</li>
</ul>
<p>Text follows below for those who want more info. And it looks like a new site is on the way, presumably with more about things like membership benefits. Right now these aren&#8217;t visible until you click the &#8220;Join Now&#8221; button. Not everyone will click the button, so this is a bit of a barrier to further exploration. Links to About Us and FAQs are hidden at the bottom of the page.</p>
<p>Note the active voice of the bullets &#8211; instead of &#8220;Hand-picked samples are delivered to your door&#8230;&#8221;, for example. Standard graphic design rules say use 3 or 5 bullet points instead of 2 or 4. How about:</p>
<ul>
<li>Get hand-picked samples delivered to your door monthly</li>
<li>Discover what you love</li>
<li>Buy with confidence</li>
</ul>
<p>I&#8217;m guessing Twitter and Facebook buttons are on the way, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/more-great-home-pages-that-drive-you-to-take-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Tips for Better Search Engine Optimization with WordPress</title>
		<link>http://www.mcbuzz.com/2010/5-tips-for-better-search-engine-optimization-with-wordpress/</link>
		<comments>http://www.mcbuzz.com/2010/5-tips-for-better-search-engine-optimization-with-wordpress/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 19:58:45 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[McBuzz Blog]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[inboundlinks]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[WordPress Websites]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=999</guid>
		<description><![CDATA[On June 12, I had the great pleasure of presenting at WordCamp Vancouver. Duane Storey and the rest of the organizers did an awesome job. The conference was a big hit. If you get the chance, definitely check it out next year.
My presentation was called &#8220;Get Found Easier and Grow Your Business: 5 Tips for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/search/?q=wordcamp%20vancouver&amp;w=all&amp;s=int" target="_blank"><img class="alignright size-medium wp-image-1011" title="wordcamp-vancouver" src="http://www.mcbuzz.com/wp-content/uploads/2010/06/wordcamp-vancouver-300x300.jpg" alt="" width="250" height="250" /></a>On June 12, I had the great pleasure of presenting at <a title="WordCamp Vancouver" href="http://www.wordcampvancouver.com/" target="_blank">WordCamp Vancouver</a>. Duane Storey and the rest of the organizers did an awesome job. The conference was a big hit. If you get the chance, definitely check it out next year.</p>
<p>My presentation was called &#8220;Get Found Easier and Grow Your Business: 5 Tips for Better Search Engine Optimization with WordPress&#8221;. Thirty minutes is just about enough time to get through the essentials of SEO for WordPress, although I&#8217;m sure it could be a two-hour presentation without too much trouble.</p>
<p>Half of the time does not involve using WordPress! I do a quick overview of what a keyword is, how to pick a good keyword, how to check your initial search ranking, and, after optimizing, how to see if your optimization efforts had any effect!</p>
<p>Understanding keywords is absolutely critical to search optimization, but it&#8217;s not often talked about in a way that most people can get. This is going to have to change as more businesses use WordPress and other CMS solutions for websites and then decide that they need to do their own SEO.</p>
<p>The <strong><em>5 Tips for Better SEO</em></strong> are spelled out in the presentation slide deck below. They are also available in PDF form here (right click and select &#8220;Save Target As&#8230;&#8221; or &#8220;Save Link As&#8230;&#8221; to download).</p>
<p><a href="http://www.mcbuzz.com/wp-content/uploads/2010/06/WordCamp-Vancouver-SEO-Tips-for-WordPress-Mark-McLaren.pdf">5 Tips for Better Search Engine Optimization with WordPress</a> (PDF)</p>
<p>At the end of the slides and the PDF, there are links to SEO Plugins, Tools and Resources. If you would like the .pptx file of  the presentation &#8211; including the Notes &#8211; <a href="http://www.mcbuzz.com/contact-us/">contact me</a>.</p>
<p>Here are the <em>5 Tips for Better Search Engine Optimization with WordPress</em> in case you want a quick overview:</p>
<p>Tip #1: Use keywords in your HTML page title</p>
<p>Tip #2: Write a page description that makes people want to read more (include keywords)</p>
<p>Tip #3: Customize permalinks</p>
<p>Tip #4: Use keywords in the visible page</p>
<p>Tip #4 continued: Make content “sticky”, useful, a resource</p>
<p>Tip #5: Links</p>
<div>•Inbound Links are the Number One Search Ranking Factor<br />
(and #2, #3, #5)  according to seomoz.org</div>
<div>•External Links</div>
<div>•Internal Links</div>
<div>•Use keywords in link text</div>
<div>•Use inbound link tools</div>
<p><img style="visibility: hidden; width: 0px; height: 0px;" src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyNzcxNDk4NzM5ODMmcHQ9MTI3NzE*OTg4NjcwNyZwPTEwMTkxJmQ9c3NfZW1iZWQmZz*yJm89MGIxODk4YjZmZTBk/NDQ1ZGIwYWZiZDlkYTI*NmQwMmUmb2Y9MA==.gif" border="0" alt="" width="0" height="0" /></p>
<div id="__ss_4476012" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="WordCamp Vancouver 2010 - Search Engine Optimization (SEO) Tips for WordPress" href="http://www.slideshare.net/mcbuzz/wordcamp-vancouver-2010-search-engine-optimization-seo-tips-for-wordpress">WordCamp Vancouver 2010 &#8211; Search Engine Optimization (SEO) Tips for WordPress</a></strong><object id="__sse4476012" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" 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://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordcamp-vancouver-seo-tips-for-wordpress-mark-mclaren-100611101804-phpapp02&amp;stripped_title=wordcamp-vancouver-2010-search-engine-optimization-seo-tips-for-wordpress" /><param name="name" value="__sse4476012" /><param name="allowfullscreen" value="true" /><embed id="__sse4476012" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordcamp-vancouver-seo-tips-for-wordpress-mark-mclaren-100611101804-phpapp02&amp;stripped_title=wordcamp-vancouver-2010-search-engine-optimization-seo-tips-for-wordpress" name="__sse4476012" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/mcbuzz">McBuzz Communications</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/5-tips-for-better-search-engine-optimization-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More WordPress Questions? Ask Them Here!</title>
		<link>http://www.mcbuzz.com/2010/more-wordpress-questions-ask-them-here/</link>
		<comments>http://www.mcbuzz.com/2010/more-wordpress-questions-ask-them-here/#comments</comments>
		<pubDate>Mon, 03 May 2010 03:59:21 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[markmclaren]]></category>
		<category><![CDATA[mcbuzz]]></category>
		<category><![CDATA[WordPress answers]]></category>
		<category><![CDATA[WordPress help]]></category>
		<category><![CDATA[WordPress questions]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=910</guid>
		<description><![CDATA[If you’ve got more questions about WordPress websites or blogs, Seattle’s McBuzz Communications has answers!
This page is so long that the comments no longer work. (Old theme. I&#8217;m working on it! &#8220;Cobbler&#8217;s son has no shoes.&#8221; You know, that kind of thing.)
Come on over to the latest WordPress questions page: WordPress Q&#38;A: More Answers to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-620" style="border: 0pt none; margin-top: 0px;" title="WordPress Questions?" src="http://www.mcbuzz.com/wp-content/uploads/2010/03/wordpress-questions.gif" alt="WordPress Questions?" width="190" height="124" />If you’ve got more questions about <strong><em>WordPress websites or blogs</em></strong>, <em>Seattle’s McBuzz Communications</em> has answers!</p>
<p>This page is so long that the comments no longer work. (Old theme. I&#8217;m working on it! &#8220;Cobbler&#8217;s son has no shoes.&#8221; You know, that kind of thing.)</p>
<p>Come on over to the latest WordPress questions page: <a href="http://www.mcbuzz.com/2010/wordpress-qa-more-answers-to-wordpress-questions/">WordPress Q&amp;A: More Answers to WordPress Questions</a> and post your question in the comments. I&#8217;ll answer ASAP. The cost? Free!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/more-wordpress-questions-ask-them-here/feed/</wfw:commentRss>
		<slash:comments>107</slash:comments>
		</item>
		<item>
		<title>WordPress Problem with Atahualpa Theme and Bullets</title>
		<link>http://www.mcbuzz.com/2010/wordpress-problem-with-atahualpa-theme-and-bullets/</link>
		<comments>http://www.mcbuzz.com/2010/wordpress-problem-with-atahualpa-theme-and-bullets/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 21:30:19 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[answers]]></category>
		<category><![CDATA[bullets]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[ol]]></category>
		<category><![CDATA[ordered list]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ul]]></category>
		<category><![CDATA[unordered list]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=893</guid>
		<description><![CDATA[A reader was having trouble adding bullets to text in the Atahualpa theme for WordPress. I did a test install of Atahualpa and the bullets are working for me. Be sure to note the order of the steps. You can click on the blue text below to see a screen shot of each step.

Enter your [...]]]></description>
			<content:encoded><![CDATA[<p>A reader was having trouble adding bullets to text in the Atahualpa theme for WordPress. I did a test install of Atahualpa and the bullets are working for me. Be sure to note the order of the steps. You can click on the blue text below to see a screen shot of each step.</p>
<ol>
<li><a href="http://www.mcbuzz.com/wp-content/uploads/2010/04/Ahatualpa-bullets-1.jpg" target="_blank">Enter your text.</a> (Put a hard return after each line you want to make into a bullet.)</li>
<li><a href="http://www.mcbuzz.com/wp-content/uploads/2010/04/Ahatualpa-bullets-2.jpg" target="_blank">Highlight the text you want to make into a list of bullets</a> &#8211; either numbered or unnumbered (ordered or unordered).</li>
<li><a href="http://www.mcbuzz.com/wp-content/uploads/2010/04/Ahatualpa-bullets-31.jpg" target="_blank">Click the bullet/list button</a> &#8211; either numbered or unnumbered. (Be sure click Publish or Update.)</li>
<li><a href="http://www.mcbuzz.com/wp-content/uploads/2010/04/Ahatualpa-bullets-4.jpg" target="_blank">Done</a>.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/wordpress-problem-with-atahualpa-theme-and-bullets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tutorial &#8211; How to Upload and Insert an Image Using WordPress</title>
		<link>http://www.mcbuzz.com/2010/wordpress-tutorial-how-to-upload-and-insert-an-image-using-wordpress/</link>
		<comments>http://www.mcbuzz.com/2010/wordpress-tutorial-how-to-upload-and-insert-an-image-using-wordpress/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 01:39:43 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[markmclaren]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=570</guid>
		<description><![CDATA[WordPress Websites Tutorial by Mark McLaren &#8211; How to Upload and Insert an Image

This video tutorial replaces my earlier &#8220;How to Insert an Image&#8221; tutorial for WordPress that was done using screen captures, text descriptions and WordPress version 2.1 or so, which is a bit outdated today.
Some people prefer text tutorials with screen captures. My [...]]]></description>
			<content:encoded><![CDATA[<p><em>WordPress Websites Tutorial by Mark McLaren &#8211; How to Upload and Insert an Image</em></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" 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/CaBwbwuZ-rQ&amp;hl=en_US&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/CaBwbwuZ-rQ&amp;hl=en_US&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>This video tutorial replaces my earlier &#8220;How to Insert an Image&#8221; tutorial for WordPress that was done using screen captures, text descriptions and <em>WordPress version 2.1</em> or so, which is a bit outdated today.</p>
<p>Some people prefer text tutorials with screen captures. My <a href="http://www.mcbuzz.com/wordpress/how-to-make-text-link-using-wordpress/">&#8220;How to Make a Text Link&#8221; WordPress Tutorial</a> is still a straight-forward explanation of the process, which hasn&#8217;t changed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/wordpress-tutorial-how-to-upload-and-insert-an-image-using-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Questions About WordPress? Ask Them Here!</title>
		<link>http://www.mcbuzz.com/2010/questions-about-wordpress-ask-them-here/</link>
		<comments>http://www.mcbuzz.com/2010/questions-about-wordpress-ask-them-here/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 00:31:29 +0000</pubDate>
		<dc:creator>Mark McLaren</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[answers]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress Websites]]></category>

		<guid isPermaLink="false">http://www.mcbuzz.com/?p=552</guid>
		<description><![CDATA[If you&#8217;ve got questions about WordPress websites or blogs, Seattle&#8217;s McBuzz Communications has answers! 
This page is now so long that the comments no longer work. (Old theme. I&#8217;m working on it! &#8220;Cobbler&#8217;s son has no shoes.&#8221; You know, that kind of thing.) Come on over to the latest WordPress questions page: WordPress Q&#038;A: More [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-620" style="border: 0pt none; margin-top: 0px;" title="WordPress Questions?" src="http://www.mcbuzz.com/wp-content/uploads/2010/03/wordpress-questions.gif" alt="WordPress Questions?" width="190" height="124" />If you&#8217;ve got questions about <strong><em>WordPress websites or blogs</em></strong>, <em>Seattle&#8217;s McBuzz Communications</em> has answers! </p>
<p>This page is now so long that the comments no longer work. (Old theme. I&#8217;m working on it! &#8220;Cobbler&#8217;s son has no shoes.&#8221; You know, that kind of thing.) Come on over to the latest WordPress questions page: <a href="http://www.mcbuzz.com/2010/wordpress-qa-more-answers-to-wordpress-questions/">WordPress Q&#038;A: More Answers to WordPress Questions</a> and post your question in the comments there. I&#8217;ll answer ASAP. The cost? Free!</p>
<p>P.S. If you&#8217;re into WordPress, <a title="Follow Mark McLaren and McBuzz Communications on Twitter" href="http://twitter.com/mcbuzz" target="_blank">follow Mark McLaren on Twitter</a> for free tips and howto&#8217;s.<br />
And if you are in Seattle, check out the <a href="http://www.meetup.com/SeattleWordPressMeetup/">Seattle WordPress Meetup</a> on Meetup.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcbuzz.com/2010/questions-about-wordpress-ask-them-here/feed/</wfw:commentRss>
		<slash:comments>176</slash:comments>
		</item>
	</channel>
</rss>

