<?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>Dandelion Web Design Toronto</title> <atom:link href="http://dandelionwebdesign.com/feed/" rel="self" type="application/rss+xml" /><link>http://dandelionwebdesign.com</link> <description>WordPress Web Design &#38; Development in Toronto</description> <lastBuildDate>Sun, 19 Feb 2012 22:24:44 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>How to add a Menu to WordPress Theme Footer</title><link>http://dandelionwebdesign.com/wordpress/footer-menu/</link> <comments>http://dandelionwebdesign.com/wordpress/footer-menu/#comments</comments> <pubDate>Sun, 19 Feb 2012 22:01:54 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4654</guid> <description><![CDATA[Use Multiple Menus in your WordPress theme When WordPress 3.0 was released the ability to edit site menus from the WordPress dashboard was introduced. The WordPress menu feature allows you to create multiple menus. You can easily set a customize &#8230; <a
href="http://dandelionwebdesign.com/wordpress/footer-menu/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h2>Use Multiple Menus in your WordPress theme</h2><p>When WordPress 3.0 was released the ability to edit site menus from the WordPress dashboard was introduced. The WordPress menu feature allows you to create <strong>multiple menus</strong>. You can easily set a customize menu as the primary navigation for your site or put a custom menu widget in your sidebar. Themes can be further modified to create additional menus areas.</p><h2>Adding a Menu to the Footer</h2><p>When I create a custom WordPress theme for my clients I like to create a footer menu as well. This is useful for adding links to contact, sitemap and back to top. Here are the steps to edit your own theme.</p><p>It is recommended that you <strong>create a child theme</strong> before you make edits to theme files.  In this tutorial you are going to edit the functions.php file, footer.php, style.css and header.php.  If you modify theme files directly your customizations will disappear when the theme updates. So create a child theme first.</p><h4>Create a secondary menu area</h4><p>Add the following code to the functions.php file for your twenty ten child theme</p><pre class="brush:php">// This theme uses wp_nav_menu() in two locations.
register_nav_menus( array(
  'primary' =&gt; __( 'Primary Navigation', 'twentyten' ),
  'secondary' =&gt; __('Secondary Navigation', 'twentyten')
) );</pre><h4>Tell WordPress where the secondary menu should be used</h4><p>Open your footer.php file and add the following code wherever you want the secondary menu to appear.</p><pre class="brush:php">	&lt;div class="bottomMenu"&gt;
              &lt;?php wp_nav_menu( array( 'theme_location' =&gt; 'secondary' ) ); ?&gt;  
    &lt;/div&gt;</pre><h4>Style the menu</h4><p>Open your css file and create a class bottomMenu and add your own styling. Here is an example.</p><pre class="brush:css">.bottomMenu { display: block; width:960px;}
.bottomMenu ul { display:inline; float:right;}
.bottomMenu li { list-style-type: none; display: inline; font-size: 12px; }
.bottomMenu li a {
	color:#000;
	line-height:15px;
	text-decoration:none;
	font-weight:normal;
	border-right: thin solid #000;
	padding: 0 7px 0 3px;
}
.bottomMenu li a:hover { color:#ccc; text-decoration:underline;}
.bottomMenu li:last-child &gt; a {border-right: none;} /* remove pipe from last item */</pre><h4>Create the Menu</h4><ul><li>Go to Appearance -&gt; Menus and click the + to create a new menu</li><li>Name the menu e.g. &#8220;footer&#8221;</li><li>Add published pages such as contact, sitemap, privacy policy to the menu</li><li>Drag and drop menu items to order them</li><li>Save the menu</li><li>Set the Secondary Menu (you created this with the edit to the functions.php file) on the left side to use this newly created menu</li></ul><p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/02/footer-menu.gif" alt="How to create a footer menu area" title="How to create a footer menu area" width="775" height="310" class="aligncenter size-full wp-image-4832" /></p><p>That&#8217;s it your custom menu will now work in the footer of your theme.</p><h4>Add a Back to Top Link</h4><ul><li>To add a jump back to the top of your site open the menu (make sure you&#8217;re editing the right menu)</li><li>Under Custom Links -> create a url link -> &#8220;#top&#8221;</li><li>Paste into the Navigation Label &#8220;^ Top&#8221; or &#8220;&uarr; Back to Top&#8221;</li><li>Save Menu</li><li>Open your header.php file and add the following code to the first div within the body<pre class="brush:php">&lt;a name="top"  title="top"  id="top"&gt;&lt;/a&gt;</pre></li></ul><p>Please add your comments to let me know how this works for you.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/wordpress/footer-menu/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Choosing a Domain Name</title><link>http://dandelionwebdesign.com/search-engine-optimization/choosing-a-domain-name/</link> <comments>http://dandelionwebdesign.com/search-engine-optimization/choosing-a-domain-name/#comments</comments> <pubDate>Sun, 12 Feb 2012 02:01:58 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[SEO]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4604</guid> <description><![CDATA[Choosing a good domain name is becoming harder and harder. So many times you think of the perfect name only to find it is already taken. What makes a good domain name? The best names are brandable and contain keywords. &#8230; <a
href="http://dandelionwebdesign.com/search-engine-optimization/choosing-a-domain-name/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/02/seo-web-internet-domain-http-www.jpg" alt="seo domain name" title="seo-web-internet-domain-http-www" width="299" height="241" class="alignright size-full wp-image-4808" />Choosing a good domain name is becoming harder and harder. So many times you think of the perfect name only to find it is already taken.</p><p><strong>What makes a good domain name?</strong> The best names are brandable and contain keywords.</p><h2>A Brandable Domain:</h2><p>When choosing a domain name also consider how you&#8217;re going to brand your business. A short easy-to-remember domain is highly valued.  If you can`t get the .com version of your domain, you may want to reconsider your decision; people often assume the extension is .com and may end up at a different site. Check out Twitter and other social media sites and make sure your preferred user name is available so you can keep your brand consistent.  Brand building may trump the use of keywords in a domain.</p><h2><acronym
title="Search Engine Optimization">SEO</acronym> Value of Keyword in Domain:</h2><p>My experience is that there is a lot of value to have keywords in a domain. Owning wordpresstoronto.ca and pointing it to my dandelionwebdesign.com domain has helped me rank #1 in search results for the search phrase &#8220;<a
href="http://dandelionwebdesign.com">WordPress Toronto</a>&#8220;.  Even if Google dials down the value in the algorithm there is still SEO value in continuing the practice, and that value comes from anchor text linking.</p><h2>Anchor Text Linking Value of Keyword in Domain:</h2><p>One important reason to use keywords in your domain name is because of anchor text linking. Anchor text is the visible, clickable text in a hyperlink. &#8220;Click Here&#8221; is a poor way to create a link&#8230; it doesn&#8217;t tell the search engines what the link is about. We know that search engines give weight to the keywords used in a link. Usually when other sites and blogs link to your site they will use your business name or your domain name as anchor text of a link.  This means that there is value to having keywords in your domain.</p><p>In this video Google&#8217;s Matt Cutts argues for the importance of going with a brandable url.  He also announces that Google is going to give slightly less weight to keywords in a domain.</p><div
class="desktop-only"><iframe
width="560" height="315" src="http://www.youtube.com/embed/rAWFv43qubI?rel=0" frameborder="0" allowfullscreen></iframe></div><div
class="mobile-only"><iframe
width="100%" height="250" src="http://www.youtube.com/embed/rAWFv43qubI?rel=0" frameborder="0" allowfullscreen></iframe></div> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/search-engine-optimization/choosing-a-domain-name/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Mobile Workshop &#8211; Ladies Learning Code</title><link>http://dandelionwebdesign.com/mobile/workshop-ladies-learning-code/</link> <comments>http://dandelionwebdesign.com/mobile/workshop-ladies-learning-code/#comments</comments> <pubDate>Sun, 05 Feb 2012 17:06:29 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[Mobile]]></category> <category><![CDATA[mobile]]></category> <category><![CDATA[Toronto]]></category> <category><![CDATA[workshops]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4664</guid> <description><![CDATA[I attended the first Ladies Learning Code Mobile Workshop on January 28th. Ladies Learning Code is a women-run not-for-profit group working to empower women in Toronto to feel comfortable learning beginner-friendly technical skills in a social, collaborative way. Courses currently &#8230; <a
href="http://dandelionwebdesign.com/mobile/workshop-ladies-learning-code/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div
id="attachment_4678" class="wp-caption alignright" style="width: 310px"><a
href="https://www.facebook.com/media/set/?set=a.10100303249208087.2535162.13608516&amp;type=1"><img
class="size-medium wp-image-4678" title="ladieslearningcode-mobile-workshop" src="http://dandelionwebdesign.com/wp-content/uploads/2012/02/ladieslearningcode-mobile-300x264.jpg" alt="ladieslearningcode-mobile-workshop" width="300" height="264" /></a><p
class="wp-caption-text">Photo of Me taken by Peter Newhook</p></div><p>I attended the first <a
href="http://ladieslearningcode.com/" target="_blank">Ladies Learning Code</a> Mobile Workshop on January 28th. Ladies Learning Code is a women-run not-for-profit group working to empower women in Toronto to feel comfortable learning beginner-friendly technical skills in a social, collaborative way.</p><p>Courses currently include HTML &amp; CSS, WordPress, Ruby, Javascript, the new Mobile Workshop and coming later this month Photoshop &#038; Illustrator. The Ladies Learning Code workshops are highly popular, selling out moments after tickets are made available. This March Break will see the first <a
href="http://girlslearningcode.com/" target="_blank">Girls Learning Code Camp</a> for ages 11-14.</p><p>We worked in pairs to create separate stylesheets for desktop and mobile versions of the site. Our goals were to:</p><ul><li>change the wide desktop design to make it <strong>linear</strong> for mobile</li><li><strong>simplify</strong> the content and the navigation. Less is more!</li><li>use mobile versions of <strong>images</strong>, resized to fit the smaller screen.</li><li>to style <strong>larger buttons</strong> for link navigation. Desktop links can be small as a mouse pointer is accurate to 1 pixel BUT our fat fingers need about 44px x 44px to be accurate.</li></ul><p>If you are using <strong>WordPress</strong> for your website you can start with the <strong>WPTouch plugin</strong>. You can simply activate the free version of the WPTouch WordPress plugin and <strong>whala</strong> you&#8217;ll have a mobile site. Create a custom icon and play with the settings.</p><p>I wasn&#8217;t able to achieve all I wanted to with the free plugin so I upgraded to the WPTouch Pro version (developer license). I also signed up as an affiliate so if you want to buy WPTouch Pro for your own site please use this link and I&#8217;ll make a little something.</p><p><a
href="http://www.bravenewcode.com/store/plugins/wptouch-pro/?bnc_affiliate_id=27031&amp;utm_source=affiliate-27031&amp;utm_medium=affiliates&amp;utm_campaign=image600x120_july11" target="_blank"><img
src="http://bnc-affiliates.s3.amazonaws.com/wptouch-pro/600x120_july11.jpg" alt="advertisment" /></a></p><p>As I worked through the WPTouch Pro documentation, I was very glad that I had attended the Ladies Learning Code Mobile workshop. The workshop prepared me to build my own child theme with the WPTouch Pro plugin.</p><p><strong>The WPtouch Pro Plugin</strong></p><ul><li>Create a Mobile Theme: You can use one of the mobile themes that comes with the WPTouch Pro plugin.  It is recommended that you create a child theme (with the click of a button) so that your modifications will not be overwritten when the theme updates</li><li>Styling: Open the WPtouch Pro Style / Appearance editor to set a custom header image, fonts and colours</li><li>Use stylesheet to hide things from mobile or desktop view with css. I opened my desktop theme&#8217;s css file and created the class .mobile-only {display:none;} and to the WP Touch child theme css file I added .desktop-only {display:none;}</li></ul><p>Here is one example&#8230;<br
/> My recent post &#8220;<a
href="/mobile/gomo-shift/">The Mobile Shift is Changing Web Design</a>&#8221; contains a YouTube embedded video. The size of this video was too large for the mobile site. The iframe width needs to be 100% for mobile but that is too large for the desktop version. Here&#8217;s how I fixed this.</p><pre class="brush:php">&lt;div class="desktop-only"&gt;
&lt;iframe width="560" height="315" src="http://www.youtube.com/embed/9GalBu_cEkM?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;div class="mobile-only"&gt;
&lt;iframe width="100%" height="250" src="http://www.youtube.com/embed/9GalBu_cEkM?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;</pre><p>I don&#8217;t have the mobile theme looking the way I want it to yet but it is coming along and thanks to the WPTouch Pro plugin I really like the way that my blog posts are displaying.</p><p>Did you attend the Ladies Learning Code Workshop?  If you&#8217;ve created your own theme please add a comment with your link I would love to see what you&#8217;ve accomplished.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/mobile/workshop-ladies-learning-code/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Changing your WordPress Permalinks</title><link>http://dandelionwebdesign.com/featured/changing-permalinks/</link> <comments>http://dandelionwebdesign.com/featured/changing-permalinks/#comments</comments> <pubDate>Sun, 29 Jan 2012 14:49:37 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[permalinks]]></category> <category><![CDATA[SEO]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4602</guid> <description><![CDATA[In this post we’ll walk through changing permalink settings on a new WordPress Installation and how to do 301 redirects when changing permalink settings on an established site. <a
href="http://dandelionwebdesign.com/featured/changing-permalinks/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>In this post we&#8217;ll walk through changing permalink settings on a new WordPress Installation and how to do 301 redirects when changing permalink settings on an established site.</p><p><H2>Changing Permalink Settings on a New WordPress Installation</h2><p>One of the first things to do when you login to your newly installed WordPress dashboard is to adjust the permalink settings to set the url structure for the site. You can do this by going to the Settings → Permalinks panel.</p><p>The default permalink setting for WordPress create ugly urls p=123 using the postid number.  Changing to one of the date structures isn&#8217;t much better. The best option from an <acronym
title="Search Engine Optimization">SEO</acronym> perspective is to choose postname to put the title of your post in the url or, what I like to do, select <strong>Custom Structure</strong> and put <strong>/%category%/%postname%/</strong> to add the category as well as the post title in the url. I then make sure I use keywords for category names.</p><h3>Customize each Page/Post Permalink</h3><p>Once you&#8217;ve saved the permalink settings you can see this in action as you customize the permalinks for each page and customize the permalink for every post you publish. Go to Posts → Add New&#8230; now type a title for your post.  Right below the post title you&#8217;ll see the Post Permalink. The full title of the post will now be in the url. This probably means that some of your posts will have long titles.</p><p>Here&#8217;s the url for this post <em>dandelionwebdesign.com/wordpress/</em> that&#8217;s the category and then WordPress adds the post title <em>/changing-your-…ess-permalinks/</em>.  As the title was too long for the permalink &#8220;&#8230;&#8221; was inserted. I&#8217;ve edited the permalink to <em>dandelionwebdesign.com/wordpress/changing-permalinks</em>. I already have WordPress in my url from the category name so I don&#8217;t need to repeat it.</p><p>When you edit page &#038; post permalinks keep them short, use keywords, stick to lowercase and use dashes to separate the keywords not spaces.  Search engines recognize separators.</p><h2>Should I Change Permalinks on an established site?</h2><p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/01/perrmalinkredirect_thumb.gif" alt="permalink-redirect" title="permalink-redirect" width="221" height="221" class="alignright size-full wp-image-4641" />I&#8217;m often asked about changing permalinks on an existing site.  The worry is that changing the permalinks will create broken links impacting the traffic that you already have sending visitors to a 404 error page. The answer is <strong>YES</strong> I would recommend changing your permalink structure even if you have an established site <strong>BUT</strong> make sure you read on&#8230;</p><p>If you are running WordPress with the default ?p=123 structure you don&#8217;t have to worry.  Go ahead and change your permalinks. WordPress will automatically forward to the new structure.</p><h3>301 Redirect to Your New Permalinks</h3><p>If you&#8217;re using one of the date or the numeric permalink structure options you&#8217;ll need to redirect your old permalinks to your new ones. There are a number or WordPress Permalink Migration plugins available but I&#8217;ve yet to find one that isn&#8217;t broken.  Instead of relying on a plugin add redirects to your .htaccess file.</p><p>If your structure is</p><ul><li><strong>Day and Name</strong> /%year%/%monthnum%/%day%/%postname%/  your redirect should be <em>RedirectMatch 301 ^/([0-9]{4})/([0-9]{2})/([0-9]{2})/(.*)$ http://yourdomain.com/$4</em></li><li><strong>Month and Name</strong> /%year%/%monthnum%/%postname%/ your redirect should be <em>RedirectMatch 301 ^/([0-9]{4})/([0-9]{2})/(.*)$ http://yourdomain.com/$3</em></li><li><strong>Numeric</strong> /archives/%post_id% your redirect should be <br
/><em>RedirectMatch 301 ^/archives/(\d+)$ http://yourdomain.com/?p=$1</em></li><li><strong>Postname</strong> and you want to switch to a custom structure of /%category%/%postname%/ there is no way to redirect with .htaccess</li></ul><p>You can also use the<a
href="http://yoast.com/wp-content/permalink-helper.php" target="_blank"> WordPress Permalink Generator by Yoast</a> to generate the redirect code needed.</p><p>Copy the redirect code provided and paste it into the top of your .htaccess file.</p><p>It should work like a charm.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/featured/changing-permalinks/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>The Mobile Shift is Changing Web Design</title><link>http://dandelionwebdesign.com/mobile/gomo-shift/</link> <comments>http://dandelionwebdesign.com/mobile/gomo-shift/#comments</comments> <pubDate>Sun, 22 Jan 2012 16:12:19 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[Mobile]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[mobile]]></category> <category><![CDATA[Web Design]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4414</guid> <description><![CDATA[Just because you can see your desktop site on a mobile phone doesn't mean it's mobile-friendly. A truly mobile-friendly site is tailored to the needs of mobile users and the capabilities of mobile devices. A mobile-friendly site can help your business connect with customers and drive conversions. <a
href="http://dandelionwebdesign.com/mobile/gomo-shift/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>According to Google mobile search has grown 400% in the past year and 79% of large online advertisers do not have a mobile-optimized site. Researchers predict that by 2015 more Americans will surf the web from mobile phones than PC&#8217;s.  Like it or not a mobile-optimized website is essential in 2012.</p><div
class="desktop-only"> <iframe
width="560" height="315" src="http://www.youtube.com/embed/9GalBu_cEkM?rel=0" frameborder="0" allowfullscreen></iframe></div><div
class="mobile-only"> <iframe
width="100%" height="250" src="http://www.youtube.com/embed/9GalBu_cEkM?rel=0" frameborder="0" allowfullscreen></iframe></div><p><strong>&#8220;Mobile isn&#8217;t a trend. It&#8217;s a new era. And it&#8217;s not too late to be early&#8221;.</strong></p><p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/01/mobile.gif" alt="mobile friendly website" title="mobile friendly website" width="260" height="260" class="alignright size-full wp-image-4435" />Goolge&#8217;s <a
href="http://www.howtogomo.com" target="_blank">HowtoGoMo.com</a> is an initiative designed to educate businesses about the mobile opportunity and empower them to build mobile-friendly sites.</p><p>Just because you can see your desktop site on a mobile phone doesn&#8217;t mean it&#8217;s mobile-friendly. A truly mobile-friendly site is tailored to the needs of mobile users and the capabilities of mobile devices. A mobile-friendly site can help your business connect with customers and drive conversions.</p><p>This week I picked up a new Smartphone.  In just a few days I&#8217;ve realized that mobile users browsing a website have different immediate goals then desktop visitors. I want to quickly access a Google map to see where you are and plan my route in relation to other stops, I want to find your store hours without having to call. A click-to-call phone number is so useful if I need to make a reservation or check stock.</p><h2>Below is a summary of 10 Mobile Site Best Practices from GoMo:</h2><ul><li>KEEP IT QUICK &mdash; design your site to load fast and make copy easy to scan.</li><li>SIMPLIFY NAVIGATION &mdash; Use seven links or fewer per page of navigation. Have a search box prominently available on complex sites</li><li>BE THUMB FRIENDLY &mdash; People use their fingers to operate mobile devices—especially their thumbs. Design your site so even large hands can easily interact with it</li><li>DESIGN FOR VISIBILITY &mdash; Make sure content fits onscreen and can be read without pinching and zooming.</li><li>MAKE IT ACCESSIBLE &mdash; Find alternatives to Flash and ensure your mobile site will adapt for both vertical and horizontal orientations</li><li>MAKE IT EASY TO CONVERT &mdash; Reduce the number of steps needed to complete a transaction and use click-to-call functionality for all phone numbers</li><li>MAKE IT LOCAL &mdash; if you have a storefront include functionality such as GPS maps that help people find and get to you</li><li>MAKE IT SEAMLESS &mdash; People now use multiple screens throughout the day. Convert as much of the functionality of your desktop site to mobile as you can to create a seamless experience.</li><li>USE MOBILE SITE REDIRECTS &mdash; to automatically send visitors using a mobile device to the mobile-friendly version of your site</li><li>LEARN, LISTEN &#038; ITERATE &mdash; Use Google Analytics to understand how people use your site and make appropriate changes</li></ul><h2>The mobile shift is impacting web design of desktop sites as well as mobile sites. In 2012 and beyond websites will:</h2><ul><li>use HTML5 for interactivity and animation not flash</li><li>be built on the principles of Responsive (variable vs. fixed-width) design to accommodate different resolutions and devices</li><li>be cleaner, less cluttered, with more white space</li></ul><p>I&#8217;m excited about the changes the mobile shift is bringing to the web design profession. Web designers and developers need to be constantly learning and adapting to the changing playing field.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/mobile/gomo-shift/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Search, Plus Your World &#8211; Personalized Search</title><link>http://dandelionwebdesign.com/search-engine-optimization/personalized-search/</link> <comments>http://dandelionwebdesign.com/search-engine-optimization/personalized-search/#comments</comments> <pubDate>Sun, 15 Jan 2012 17:58:51 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[G+]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[search results]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4563</guid> <description><![CDATA[This week Google launched a new service called &#8220;Search, Plus Your World&#8221;. Users who log into their Google accounts will be provided personalized search results based on items shared within their Google+ circles. Each personalized search result displays Google+ information &#8230; <a
href="http://dandelionwebdesign.com/search-engine-optimization/personalized-search/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/01/Search+YourWorld.gif" alt="Search+YourWorld" title="Search+YourWorld" width="200" height="200" class="alignright size-full wp-image-4577" />This week Google launched a new service called &#8220;Search, Plus Your World&#8221;.  Users who log into their Google accounts will be provided personalized search results based on items shared within their Google+ circles. Each personalized search result displays Google+ information such as: the avatar image and linked profile name of who shared it, and how it was shared. You can opt-out by toggling between <em>Show Personalize Results</em> and <em>Hide Personalized Results</em>.  A blue person icon to the left of the result indicates that the result is a personalized one.</p><p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/01/Google-personalized-results1.jpg" alt="Google-personalized-results" title="Google-personalized-results" width="606" height="606" class="aligncenter size-full wp-image-4573" /></p><blockquote><p> From the <a
href="http://googleblog.blogspot.com/2012/01/search-plus-your-world.html" target="_blank">official Google Blog</a>, Search, Plus Your World brings:</p><ul><li>Personal Results, which enable you to find information just for you, such as Google+ photos and posts—both your own and those shared specifically with you, that only you will be able to see on your results page;</li><li>Profiles in Search, both in autocomplete and results, which enable you to immediately find people you’re close to or might be interested in following; and,</li><li>People and Pages, which help you find people profiles and Google+ pages related to a specific topic or area of interest, and enable you to follow them with just a few clicks. Because behind most every query is a community.</li></ul></blockquote><h2>What does this mean for Search Engine Optimization and your blog?</h2><p>Like it or not, the union of social and search is here to stay. Google has been widely criticized this week because Facebook and Twitter results are not part of <em>Search, Plus Your World</em>, it is exclusively Google+.  This move gives more weight to Google+. If you&#8217;re a blogger you need to be on Google+. You&#8217;ll want to interact widening your Google+ circles, share every post you publish on Google+ and make sure you have Google+ buttons on your posts.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/search-engine-optimization/personalized-search/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Google&#8217;s Freshness Algorithm Update</title><link>http://dandelionwebdesign.com/search-engine-optimization/freshness/</link> <comments>http://dandelionwebdesign.com/search-engine-optimization/freshness/#comments</comments> <pubDate>Sun, 08 Jan 2012 21:10:30 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[G+]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[RSS]]></category> <category><![CDATA[search results]]></category> <category><![CDATA[twitter]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4386</guid> <description><![CDATA[Google has added freshness criteria to search engine results.  Different searches have different freshness needs. From an SEO perspective, Google's freshness update has added more to the value of blogs and RSS feeds. <a
href="http://dandelionwebdesign.com/search-engine-optimization/freshness/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/01/GoogleFresh.gif" alt="GoogleFresh" title="GoogleFresh" width="600" height="217" class="alignleft size-full wp-image-4493" /></p><h2>The Fresh trend:</h2><p>Google regularly pushes out new updates to its algorithm in an ongoing drive to return the most relevant results for users. In fact, Google changes its search algorithm up to 500 times a year, that&#8217;s once or twice a day!  On November 3rd, 2011 Google added freshness criteria to search engine results. Result will <u>not</u> appear in chronological order but their age will be checked as part of Google&#8217;s process for determining relevance.</p><p>Google&#8217;s <em>Caffeine web indexing system</em> now crawls the web for fresh content quickly on an enormous scale updating Google’s index of Web sites continuously. Google crawls the content from real-time social networks such as Twitter, Facebook, and Google+ to determine what content people are interested in NOW. Google also uses the <a
href="/tools/rss-feeds-explained/">RSS feed</a> to know which content from a website is the freshest.</p><h2>Different searches have different freshness needs</h2><h3>When freshness matters</h3><p>When &#8220;Googling&#8221; a topic such as the Oscar predictions, freshness criteria matters.  You want predictions for the upcoming 2012 Oscars not predictions for past Academy Awards.</p><p>Until now a search for an annual conference could display content from previous conferences before the recent event information. With Google&#8217;s fresh results you can now expect to find this year&#8217;s current information at the top of the results.</p><h3>When it doesn&#8217;t</h3><p>Often when searching it won&#8217;t matter when the content was published. If you&#8217;re wanting a great banana muffin recipe (unless you specify a date) you can expect an archived result.</p><p>This algorithmic improvement is designed to better understand the level of freshness required. When it matters you can expect Google to deliver the most up-to-the-minute answers without specifying &#8220;2012&#8243; in the search terms.</p><h2>WordPress websites will benefit:</h2><p>From an SEO (Search Engine Optimization) perspective, Google&#8217;s freshness update has added more to the value of blogs and RSS feeds. Google has somewhat leveled the playing field for the new kid on the block. Well established sites can&#8217;t sit back and rely on static previously indexed content. Bloggers who continue to create new, engaging content on a regular basis should benefit.</p><p>WordPress began as a blogging platform so websites built with WordPress come RSS feed enabled. If you don&#8217;t already know what an RSS feed is then you may be interested in reading <a
href="/tools/rss-feeds-explained/">RSS Feeds explained</a>. If your website hasn&#8217;t been built with WordPress you now have another reason to make the change over to WordPress.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/search-engine-optimization/freshness/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Update the Copyright Date of your WordPress Theme</title><link>http://dandelionwebdesign.com/wordpress/copyright-date/</link> <comments>http://dandelionwebdesign.com/wordpress/copyright-date/#comments</comments> <pubDate>Sun, 01 Jan 2012 21:36:24 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[websites]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4392</guid> <description><![CDATA[Happy New Year! New Year&#8217;s is often a time for &#8220;stock taking&#8221;, looking at what is working well for your business and what changes or improvements you can make for the year ahead. When the calendar changes to a New &#8230; <a
href="http://dandelionwebdesign.com/wordpress/copyright-date/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img
src="http://dandelionwebdesign.com/wp-content/uploads/2012/01/Copyright-date-250.jpg" alt="Copyright-date-2012" title="Copyright-date-2012" width="250" height="250" class="alignright size-full wp-image-4399" />Happy New Year!</p><p>New Year&#8217;s is often a time for &#8220;stock taking&#8221;, looking at what is working well for your business and what changes or improvements you can make for the year ahead. When the calendar changes to a New Year it is good to read up on new trends in SEO (Search Engine Optimization) and look over your website with a critical eye.</p><p>One thing that you shouldn&#8217;t overlook is the copyright date. You may need to update the copyright date in your site&#8217;s footer file. Open the footer.php file in your WordPress theme to edit the date. You can do this every year or you can enter the following code to automate this task and ensure that your site will always appear up-to-date.</p><p>This code will display as © 2012 Your site name as a link to the home page.</p><pre class="brush:php">© &lt;?php echo date('Y'); ?&gt; &lt;a href="&lt;?php echo home_url( '/' ) ?&gt;" title="&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;" rel="home"&gt;
					&lt;?php bloginfo( 'name' ); ?&gt;&lt;/a&gt;</pre><p>You can also add the first year of your site with a dash after the copyright symbol. Such as © 2011-2012</p><pre class="brush:php">© 2011-&lt;?php echo date('Y'); ?&gt; &lt;a href="&lt;?php echo home_url( '/' ) ?&gt;" title="&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;" rel="home"&gt;
					&lt;?php bloginfo( 'name' ); ?&gt;&lt;/a&gt;</pre><p>A keyboard shortcut to create the copyright symbol is to hold down the Alt key and using the number pad type 0, 1, 6, 9 &#8211; release the alt key.</p><p>I hope you find this tip helpful as you prepare your web site for 2012.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/wordpress/copyright-date/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Yoast SEO Plugin &#8211; Theme fix</title><link>http://dandelionwebdesign.com/search-engine-optimization/yoast-wordpress-plugin/</link> <comments>http://dandelionwebdesign.com/search-engine-optimization/yoast-wordpress-plugin/#comments</comments> <pubDate>Wed, 07 Dec 2011 15:50:50 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4207</guid> <description><![CDATA[If you're using the WordPress SEO plugin you'll probably need to manually edit your theme's header file to correctly display title tags. It's easy to do. <a
href="http://dandelionwebdesign.com/search-engine-optimization/yoast-wordpress-plugin/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-4216" title="YOAST-SEO-titles" src="http://dandelionwebdesign.com/wp-content/uploads/2011/12/YOAST-SEO-titles.gif" alt="SEO title tags WordPress Theme" width="200" height="200" />The title tag is an important SEO page element. The title tag:</p><ul><li>defines a title in the browser toolbar</li><li>provides a title for the page when it is added to favorites</li><li>displays a title for the page in search-engine results</li></ul><p>If you&#8217;re using the WordPress SEO by Yoast Plugin you&#8217;ll probably need to manually edit your theme&#8217;s header file to correctly display title tags. It&#8217;s easy to do.</p><p>So that this plugin can change your page titles, the title section of your header.php file <strong>should look like this</strong>:</p><pre class="brush:php">&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</pre><p>Many themes, including the Twenty-Ten and Twenty-Eleven themes that come with WordPress, add extra code that you&#8217;ll need to remove in order for this plugin to work properly.</p><ol><li>Open your header.php file (Appearance -&gt; Editor -&gt; navigate on right side to header.php)</li><li>Locate the opening &lt;title&gt; tag near the top of the file</li><li>Highlight all code from this opening tag to the closing &lt;/title&gt; tag and replace it with &lt;?php wp_title(&#8221;); ?&gt; keeping the opening and closing title tags in place.</li><li>Click update file</li></ol><p>For the <strong>Twenty-ten</strong> theme you are <strong>replacing</strong> these lines of code</p><pre class="brush:php">&lt;title&gt;&lt;?php
	/*
	 * Print the &lt;title&gt; tag based on what is being viewed.
	 */
	global $page, $paged;

	wp_title( '|', true, 'right' );

	// Add the blog name.
	bloginfo( 'name' );

	// Add the blog description for the home/front page.
	$site_description = get_bloginfo( 'description', 'display' );
	if ( $site_description &amp;&amp; ( is_home() || is_front_page() ) )
		echo " | $site_description";

	// Add a page number if necessary:
	if ( $paged &gt;= 2 || $page &gt;= 2 )
		echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ),
                 &nbsp;max( $paged, $page ) );

	?&gt;&lt;/title&gt;</pre><p>with this line<pre class="brush:php">&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</pre><p>and for the <strong>Twenty-Eleven</strong> theme you are <strong>replacing</strong> these lines of code</p><pre class="brush:php">&lt;title&gt;&lt;?php
	/*
	 * Print the &lt;title&gt; tag based on what is being viewed.
	 */
	global $page, $paged;

	wp_title( '|', true, 'right' );

	// Add the blog name.
	bloginfo( 'name' );

	// Add the blog description for the home/front page.
	$site_description = get_bloginfo( 'description', 'display' );
	if ( $site_description &amp;&amp; ( is_home() || is_front_page() ) )
		echo " | $site_description";

	// Add a page number if necessary:
	if ( $paged &gt;= 2 || $page &gt;= 2 )
		echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );

	?&gt;&lt;/title&gt;</pre><p>with this line<pre class="brush:php">&lt;title&gt;&lt;?php wp_title(''); ?&gt;&lt;/title&gt;</pre><p>Once you&#8217;ve made this change, the WordPress SEO by Yoast Plugin will be able to fully customize the page title tags of your WordPress website.</p><p>If the idea of editing your header file is too much for you, the WordPress SEO plugin does have a little tick box that you can use. SEO -&gt; Titles -&gt; Force rewrite titles. Be aware that changing your template will be faster.</p><p>I hope that I&#8217;ve explained this simply enough so that you are able to do this yourself. If you need any help or have anything else to say about this post please add a comment below.</p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/search-engine-optimization/yoast-wordpress-plugin/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>SEO for WordPress &#8211; WordCamp Toronto 2011</title><link>http://dandelionwebdesign.com/wordpress/seo-wordcamp-toronto-2011/</link> <comments>http://dandelionwebdesign.com/wordpress/seo-wordcamp-toronto-2011/#comments</comments> <pubDate>Sun, 06 Nov 2011 04:26:36 +0000</pubDate> <dc:creator>Ruth Maude</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[Toronto]]></category><guid
isPermaLink="false">http://dandelionwebdesign.com/?p=4067</guid> <description><![CDATA[Today I spoke at WordCamp Toronto, a WordPress conference.  Here are my slides from my presentation "SEO for WordPress: How to do better in Google". <a
href="http://dandelionwebdesign.com/wordpress/seo-wordcamp-toronto-2011/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Today I spoke about search engine optimization at WordCamp Toronto, a WordPress conference.  Here are my slides from my presentation &#8220;SEO for WordPress: How to do better in Google&#8221;.</p><p>I realize that in my talk I inadvertently skipped over Google Plus.  Here is what I intended to discuss &#8211; <a
href="http://dandelionwebdesign.com/search-engine-optimization/plus-1-seo/">+1 and it&#8217;s effect on SEO </a>.</p><p>So sorry about the powerpoint problems. The file wouldn&#8217;t even open again afterwards. I&#8217;ve edited my backup of a previous version so there are probably some changes.  I added a few more plugins to the last slide that came out of the Q&#038;A time.  Someone mentioned a permalink migration plugin, unfortunately I can&#8217;t find one that is working with the current version of WordPress.  I&#8217;ll update this post if I&#8217;m able to find one.</p><p>Thanks for coming to the presentation and for your feedback.</p><h3>Some tweets from this SEO for WordPress session:</h3><blockquote><ul><li>@kickthegrind tweeted:  &#8220;@dandelionweb Great prez today! learned a lot! #wcto&#8221;</li><li>@backpackerbrock tweeted: &#8220;Agreed! Explained a complicated topic well! Thanks Ruth! RT @KickTheGrind @dandelionweb Great prez today! learned a lot! #wcto&#8221;</li><li>@janelangille tweeted: &#8220;@dandelionweb Tx for great tips in SEO for WordPress session #WCTO&#8221;</li><li>@boomergirl50 tweeted: &#8220;@dandelionweb importance of keywords with hyperlinks 4 better SEO greatest tip among many&#8221;</li><li>@BreatheDreamGo tweeted: &#8220;@dandelionweb thanks for a great SEO session &#8211; you covered a LOT of ground at #WCTO!&#8221;</li><li>@atastefortravel tweeted: &#8220;@dandelionweb Thanks for a fab session! Will sign up for more!&#8221;</li></ul></blockquote><div
id="__ss_10044028" style="width: 425px;"><strong
style="display: block; margin: 12px 0 4px;"><a
title="SEO for WordPress WordCamp Toronto 2011" href="http://www.slideshare.net/dandelionweb/seo-for-wordpress-wordcamp-toronto-2011" target="_blank">SEO for WordPress WordCamp Toronto 2011</a></strong> <iframe
src="http://www.slideshare.net/slideshow/embed_code/10044028" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="425" height="355"></iframe></p><div
style="padding: 5px 0 12px;">View more <a
href="http://www.slideshare.net/" target="_blank">presentations</a> from <a
href="http://www.slideshare.net/dandelionweb" target="_blank">dandelionweb</a></div></div><p>UPDATE:  Video of my complete presentation is now available on WordPress.tv &#8211; <a
target="_blank" href="http://wordpress.tv/2012/01/26/ruth-maude-seo-for-wordpress/">WordCamp Presentation Ruth Maude: SEO for WordPress</a></p> ]]></content:encoded> <wfw:commentRss>http://dandelionwebdesign.com/wordpress/seo-wordcamp-toronto-2011/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1978/2085 objects using disk: basic

Served from: dandelionwebdesign.com @ 2012-02-22 11:12:26 -->
