<?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>Planet WordPress Canada &#187; WordPress</title>
	<atom:link href="http://www.planetwp.ca/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.planetwp.ca</link>
	<description>The pulse of the Canadian WordPress community</description>
	<lastBuildDate>Tue, 08 May 2012 17:01:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>[Peter&#039;s Useful Crap]Redirecting users on first login in WordPress</title>
		<link>http://www.theblog.ca/wordpress-redirect-first-login</link>
		<comments>http://www.theblog.ca/wordpress-redirect-first-login#comments</comments>
		<pubDate>Sat, 24 Dec 2011 19:26:24 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.theblog.ca/?p=621</guid>
		<description><![CDATA[On membership-based WordPress sites and other sites where you want to display a special welcome message or instructions to new users, you can implement some custom login redirect functionality. This functionality would kick in only once (or for the first few logins) per user. The important elements on the code-side for such functionality is to [...]]]></description>
			<content:encoded><![CDATA[<p>On membership-based WordPress sites and other sites where you want to display a special welcome message or instructions to new users, you can implement some custom login redirect functionality. This functionality would kick in only once (or for the first few logins) per user.</p>
<p>The important elements on the code-side for such functionality is to use the built-in WordPress &#8220;login_redirect&#8221; filter, and to store information on whether or not the user has gotten the &#8220;first login&#8221; treatment. There are a couple of possible approaches to store the information, either in a cookie or in the user&#8217;s meta information (stored in the WordPress database in the &#8220;wp_usermeta&#8221; table).</p>
<p>Here is some sample code you can use in your theme&#8217;s functions.php file or in a plugin:</p>
<h4>Cookie-based solution</h4>
<pre>
// Send new users to a special page
function redirectOnFirstLogin( $redirect_to, $requested_redirect_to, $user )
{
    // URL to redirect to
    $redirect_url = 'http://yoursite.com/firstloginpage';
    // How many times to redirect the user
    $num_redirects = 1;
    // Cookie-based solution: captures users who registered within the last n hours
    // The reason to set it as "last n hours" is so that if a user clears their cookies or logs in with a different browser,
    // they don't get this same redirect treatment long after they're already a registered user
    // 172800 seconds = 48 hours
    $message_period = 172800;

    // If they're on the login page, don't do anything
    if( !isset( $user-&gt;user_login ) )
    {
        return $redirect_to;
    }

    $key_name = 'redirect_on_first_login_' . $user-&gt;ID;

    if( strtotime( $user-&gt;user_registered ) &gt; ( time() - $message_period )
        &#038;&#038; ( !isset( $_COOKIE[$key_name] ) || intval( $_COOKIE[$key_name] ) &lt; $num_redirects )
      )
    {
        if( isset( $_COOKIE[$key_name] ) )
        {
            $num_redirects = intval( $_COOKIE[$key_name] ) + 1;
        }
        setcookie( $key_name, $num_redirects, time() + $message_period, COOKIEPATH, COOKIE_DOMAIN );
        return $redirect_url;
    }
    else
    {
        return $redirect_to;
    }
}

add_filter( 'login_redirect', 'redirectOnFirstLogin', 10, 3 );
</pre>
<p><a rel="nofollow"  href="http://www.theblog.ca/wp-content/uploads/2011/12/peters_redirect_first_login_cookie.zip">Download the cookie-based redirect on first login plugin</a></p>
<h4>User meta table based solution</h4>
<pre>

// Send new users to a special page
function redirectOnFirstLogin( $redirect_to, $requested_redirect_to, $user )
{
    // URL to redirect to
    $redirect_url = 'http://yoursite.com/firstloginpage';
    // How many times to redirect the user
    $num_redirects = 1;
    // If implementing this on an existing site, this is here so that existing users don't suddenly get the "first login" treatment
    // On a new site, you might remove this setting and the associated check
    // Alternative approach: run a script to assign the "already redirected" property to all existing users
    // Alternative approach: use a date-based check so that all registered users before a certain date are ignored
    // 172800 seconds = 48 hours
    $message_period = 172800;

    // If they're on the login page, don't do anything
    if( !isset( $user-&gt;user_login ) )
    {
        return $redirect_to;
    }

    $key_name = 'redirect_on_first_login';
    // Third parameter ensures that the result is a string
    $current_redirect_value = get_user_meta( $user-&gt;ID, $key_name, true );
    if( strtotime( $user-&gt;user_registered ) &gt; ( time() - $message_period )
        &#038;&#038; ( '' == $current_redirect_value || intval( $current_redirect_value ) &lt; $num_redirects )
      )
    {
        if( '' != $current_redirect_value )
        {
            $num_redirects = intval( $current_redirect_value ) + 1;
        }
        update_user_meta( $user-&gt;ID, $key_name, $num_redirects );
        return $redirect_url;
    }
    else
    {
        return $redirect_to;
    }
}

add_filter( 'login_redirect', 'redirectOnFirstLogin', 10, 3 );
</pre>
<p><a rel="nofollow"  href="http://www.theblog.ca/wp-content/uploads/2011/12/peters_redirect_first_login_meta.zip">Download the user-meta based redirect on first login plugin</a></p>
<p>Some extra notes:</p>
<ul>
<li>The code can be modified so that you don't actually redirect the user anywhere different than normal users, but set the user meta information or cookie and read that data to show a special pop-up or box to the user.</li>
<li>WordPress has some default limitations disallowing redirects to URLs outside of your site's domain. If you need to redirect users elsewhere, you'll have to add the URLs to the "allowed redirect" list with <a rel="nofollow"  href="http://www.theblog.ca/wp-content/uploads/2008/11/add_allowed_redirect_hosts.txt">code similar to this</a>.</li>
<li>If you have more sophisticated login redirect needs, you can adapt the code as an extension to <a rel="nofollow"  href="http://www.theblog.ca/wplogin-redirect" title="Peter's Login Redirect">this fully-featured redirect plugin</a>.</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.theblog.ca/wordpress-redirect-first-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Peter&#039;s Useful Crap]How to use custom canonical URLs in WordPress</title>
		<link>http://www.theblog.ca/custom-canonical-urls-wordpress</link>
		<comments>http://www.theblog.ca/custom-canonical-urls-wordpress#comments</comments>
		<pubDate>Tue, 20 Dec 2011 05:36:49 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.theblog.ca/?p=619</guid>
		<description><![CDATA[A quick guide to overriding the rel_canonical function that is automatically activated in the wp_head action.]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow"  href="http://wordpress.org" title="Blogging tool of choice">WordPress</a> has been automatically adding <a rel="nofollow"  href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html" title="Description from Google themselves">canonical URL</a> tags to individual posts and pages since version 2.3. For many reasons, such as <a rel="nofollow"  href="http://googlewebmastercentral.blogspot.com/2009/12/handling-legitimate-cross-domain.html" title="You should handle this properly!">duplicating content across domains</a>, especially when syndicating content, you might want to specify a custom canonical URL for certain posts.  For example, you would point the canonical URL to the authoritative original source of a syndicated post.</p>
<p>Here&#8217;s a quick and simple, do-it-yourself guide to overriding a canonical URL whenever you make use of a specifically named <a rel="nofollow"  href="http://codex.wordpress.org/Custom_Fields" title="Define your own">custom field</a>. As of WordPress 3.3, the default function that handles the canonical URL feature is <em>rel_canonical</em> in <em>wp-includes/link-template.php</em>:</p>
<pre>
function rel_canonical() {
    if ( !is_singular() )
        return;

    global $wp_the_query;
    if ( !$id = $wp_the_query-&gt;get_queried_object_id() )
        return;

    $link = get_permalink( $id );
    echo "&lt;link rel='canonical' href='$link' /&gt;&#92;n";
}
</pre>
<p>To override this function, you have to build your own copy of it in your theme&#8217;s <em>functions.php</em> file (or in a plugin):</p>
<pre>
// A copy of rel_canonical but to allow an override on a custom tag
function rel_canonical_with_custom_tag_override()
{
    if( !is_singular() )
        return;

    global $wp_the_query;
    if( !$id = $wp_the_query-&gt;get_queried_object_id() )
        return;

    // check whether the current post has content in the "canonical_url" custom field
    $canonical_url = get_post_meta( $id, 'canonical_url', true );
    if( '' != $canonical_url )
    {
        // trailing slash functions copied from http://core.trac.wordpress.org/attachment/ticket/18660/canonical.6.patch
        $link = user_trailingslashit( trailingslashit( $canonical_url ) );
    }
    else
    {
        $link = get_permalink( $id );
    }
    echo "&lt;link rel='canonical' href='" . esc_url( $link ) . "' /&gt;&#92;n";
}

// remove the default WordPress canonical URL function
if( function_exists( 'rel_canonical' ) )
{
    remove_action( 'wp_head', 'rel_canonical' );
}
// replace the default WordPress canonical URL function with your own
add_action( 'wp_head', 'rel_canonical_with_custom_tag_override' );
</pre>
<p>Then, on any post or page on which you want to override the canonical URL, add a custom field with the name &#8220;canonical_url&#8221; and the full URL value that you want to use:</p>
<p><img src="http://images.theblog.ca/2011/12/canonical_url_custom_field_wordpress.png" alt="Custom field for a canonical URL in WordPress"/></p>
<p>In the future, there could be a more efficient, &#8220;pluggable&#8221; way to accomplish this. The current way that WordPress handles this, you could end up with multiple plugins overriding the canonical URL feature, resulting in duplicate or clashing custom functions (as an example, the <a rel="nofollow"  href="http://simple-press.com" title="Great plugin, by the way">Simple:Press forum plugin</a> has its own override function). There&#8217;s an <a rel="nofollow"  href="http://core.trac.wordpress.org/ticket/18660">open ticket</a> on the topic of adding a filter in the <em>rel_canonical</em> function to make this process cleaner. Some of the example code above was taken from a patch in that ticket.</p>]]></content:encoded>
			<wfw:commentRss>http://www.theblog.ca/custom-canonical-urls-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Slick Contact Forms</title>
		<link>http://blog.bluefur.com/2011/09/28/wordpress-wednesday-slick-contact-forms/</link>
		<comments>http://blog.bluefur.com/2011/09/28/wordpress-wednesday-slick-contact-forms/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 19:53:48 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8605</guid>
		<description><![CDATA[Whether you run a blog as part of a bigger business or your blog stands on its own, it&#8217;s important that you have an ability to reach out to your audience and they have an ability to reach right back to you. The comment section is one way to do that, but not all communication [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Whether you run a blog as part of a bigger business or your blog stands on its own, it&#8217;s important that you have an ability to reach out to your audience and they have an ability to reach right back to you. The comment section is one way to do that, but not all communication is intended to be public. That&#8217;s why contact forms are so useful.</p>
<p>There are many different contact form plugins available for WordPress, but most require you to create a separate page for the contact form. That&#8217;s not the case with the <a rel="nofollow"  href="http://www.designchemical.com/blog/index.php/wordpress-plugin-slick-contact-forms/">Slick Contact Forms</a> plugin. Instead, it uses jQuery and AJAX so the contact form can be rendered on any page. There is no page refresh needed.</p>
<p>The contact form can simply float or drop down as a tab. If you prefer, it can aslo be a sticky, slide-out tab. In any case, the contact form can be placed as a widget at all kinds of places around the web and includes three text input fields, as well as a text intro. To fight spam, it uses a &#8220;honeypot&#8221; mechanism with a blank input field hidden to users but visible to spambots. This is more streamlined that a Captcha-style system.</p>
<p>Learn more about the Slick Contact Forms WordPress plugin on <a rel="nofollow"  href="http://www.designchemical.com/blog/index.php/wordpress-plugin-slick-contact-forms/">Design Chemical</a>, which is the site of the people responsible for the plugin. Screenshots, installation instructions, a live demo, shortcode information, and the free download link can all be accessed from that page.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/09/28/wordpress-wednesday-slick-contact-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Auto Read More Generator</title>
		<link>http://blog.bluefur.com/2011/09/21/wordpress-wednesday-auto-read-more-generator/</link>
		<comments>http://blog.bluefur.com/2011/09/21/wordpress-wednesday-auto-read-more-generator/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 19:30:07 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8568</guid>
		<description><![CDATA[There are many different ways that you can go about displaying your blog. Some people like to have the full text visible right from the main page and main archive, much like what you see here on the BlueFur blog. However, for blogs with longer posts, this may not be as appropriate. Depending on the [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>There are many different ways that you can go about displaying your blog. Some people like to have the full text visible right from the main page and main archive, much like what you see here on the BlueFur blog. However, for blogs with longer posts, this may not be as appropriate.</p>
<p>Depending on the theme that you are using, there may already be an automatic function to create excerpts, but this may not be the case. That&#8217;s why something like the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/auto-read-more-generator/">Auto Read More Generator</a> plugin can be so simple and so useful. </p>
<p>It serves a single function. For every post that you publish, it will automatically insert a &#8220;read more&#8230;&#8221; link after the first image and first paragraph. If there is no image, then the &#8220;read more&#8230;&#8221; link will be placed after the first paragraph. This creates the excerpt and streamlines the main page.</p>
<p>You can find the Auto Read More Generator through the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/auto-read-more-generator/">WordPress Plugin Directory</a> as normal. And also as normal, this plugin is available as a free download too.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/09/21/wordpress-wednesday-auto-read-more-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Lazy Widget Loader</title>
		<link>http://blog.bluefur.com/2011/09/14/wordpress-wednesday-lazy-widget-loader/</link>
		<comments>http://blog.bluefur.com/2011/09/14/wordpress-wednesday-lazy-widget-loader/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 19:58:09 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8534</guid>
		<description><![CDATA[In an effort to provide the best possible user experience on your blog, you may have added a series of widgets for more functionality and easier access. However, this may have had a significantly negative impact on the load times for your pages. This is especially true when it comes to widgets that rely on [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>In an effort to provide the best possible user experience on your blog, you may have added a series of widgets for more functionality and easier access. However, this may have had a significantly negative impact on the load times for your pages.</p>
<p>This is especially true when it comes to widgets that rely on external data sources, like an Amazon shopping widget or a Facebook page widget. To help improve the reader experience, you may want to consider adding the <a rel="nofollow"  href="http://www.itthinx.com/plugins/lazy-widget-loader/">Lazy Widget Loader</a> plugin for WordPress.</p>
<p>In short, this widget will &#8220;postpone loading the content of those widgets you choose, so that the their content is loaded after the main content of the page that is displayed.&#8221; By doing this, the main content is there and accessible, rather than being delayed behind the slower-loading widgets.</p>
<p>The mechanism allows the loading of any content only when needed, including the ability to &#8220;lazy-load&#8221; content anywhere on the page. Head on over to <a rel="nofollow"  href="http://www.itthinx.com/plugins/lazy-widget-loader/">Itthinx.com</a> for more information about the Lazy Widget Loader. It&#8217;s also there that you&#8217;ll find the FAQ, screenshots, demo, and download link.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/09/14/wordpress-wednesday-lazy-widget-loader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Drafts Dropdown</title>
		<link>http://blog.bluefur.com/2011/09/07/wordpress-wednesday-drafts-dropdown/</link>
		<comments>http://blog.bluefur.com/2011/09/07/wordpress-wednesday-drafts-dropdown/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 19:57:14 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8498</guid>
		<description><![CDATA[When you run any kind of blog, it&#8217;s important that you update it on a regular basis. This also means that it helps when you have an ongoing list of post topics, ensuring that you always have something to write about. Saving these topic ideas as &#8220;draft&#8221; posts, sometimes with some quick bullet points to [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>When you run any kind of blog, it&#8217;s important that you update it on a regular basis. This also means that it helps when you have an ongoing list of post topics, ensuring that you always have <em>something</em> to write about.</p>
<p>Saving these topic ideas as &#8220;draft&#8221; posts, sometimes with some quick bullet points to jog your memory, can be very helpful, but it&#8217;s not always convenient to access all your drafts. That&#8217;s where the simple yet effective <a rel="nofollow"  href="http://wordpress.org/extend/plugins/drafts-dropdown/">Drafts Dropdown</a> plugin comes into the picture.</p>
<p>Created by Crowd Favorite and Alex King, well known names in the world of WordPress development, Drafts Dropdown grants you faster access to your draft posts and pages. Assuming that you are logged in, you can see the drafts pulldown menu from every page on your blog via that gray toolbar that stays persistent across your site. It&#8217;s that simple.</p>
<p>Head on over to the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/drafts-dropdown/">WordPress Plugin Directory</a> to get the FAQ, installation instructions, and screenshots for this plugin. It is also there that you can access the free download link. The current version is compatible with WordPress 3.2+.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/09/07/wordpress-wednesday-drafts-dropdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: GASP Anti-Spam Plugin</title>
		<link>http://blog.bluefur.com/2011/08/31/wordpress-wednesday-gasp-anti-spam-plugin/</link>
		<comments>http://blog.bluefur.com/2011/08/31/wordpress-wednesday-gasp-anti-spam-plugin/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 19:45:31 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8456</guid>
		<description><![CDATA[Growing a popular blog is very much a double-edged sword. It&#8217;s great when you have lots of new readers leaving lots of new comments, but that also means that your site is more likely to attract all the comment spammers and spambots out there. Akismet has been the go-to tool for this problem for quite [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Growing a popular blog is very much a double-edged sword. It&#8217;s great when you have lots of new readers leaving lots of new comments, but that also means that your site is more likely to attract all the comment spammers and spambots out there.</p>
<p>Akismet has been the go-to tool for this problem for quite some time, but it is not without its flaws. It &#8220;detects&#8221; many false positives: comments that are legitimate can oftentimes be flagged as spam and never seen by the blog owner. An alternative to Akismet is <a rel="nofollow"  href="http://basicblogtips.com/gasp-wordpress-plugin.html">GASP</a> and it claims to be more accurate in this regard.</p>
<p>Developed by Andy Bailey, the same guy who made the popular CommentLuv plugin, GASP stands for GrowMap Anti-Spambot Plugin. It works to combat spam from spambots by implementing a very simple feature. There is a checkbox that needs to be ticked before a comment can be posted. The text next to this reads, &#8220;Check box to confirm you are NOT a spammer.&#8221; Real comments get through and spambots do not.</p>
<p>Check out <a rel="nofollow"  href="http://basicblogtips.com/gasp-wordpress-plugin.html">Basic Blog Tips</a> for more information about GASP. The plugin can then be found as a free download through the usual <a rel="nofollow"  href="http://wordpress.org/extend/plugins/growmap-anti-spambot-plugin/">WordPress.org Plugin Directory</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/08/31/wordpress-wednesday-gasp-anti-spam-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Top 10 Widget Plugin</title>
		<link>http://blog.bluefur.com/2011/08/24/wordpress-wednesday-top-10-widget-plugin/</link>
		<comments>http://blog.bluefur.com/2011/08/24/wordpress-wednesday-top-10-widget-plugin/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 19:54:13 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8412</guid>
		<description><![CDATA[Blogs are a great way to showcase your latest work as the default configuration uses a reverse chronological order for your content. At the same time, this means older content can easily be lost and forgotten. How can you fix that? A great WordPress plugin called Top 10 helps draw attention to some of your [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Blogs are a great way to showcase your latest work as the default configuration uses a reverse chronological order for your content. At the same time, this means older content can easily be lost and forgotten. How can you fix that?</p>
<p>A great WordPress plugin called <a rel="nofollow"  href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10</a> helps draw attention to some of your most popular posts. It keeps track of the page views on your blog, both on a daily basis and with all-time page views. The page view count can be shown on the individual posts themselves, but that&#8217;s not where the real value lies.</p>
<p>Instead, it&#8217;s much better to output this top 10 list as a widget to be shown in your sidebar or footer. This way, if someone arrives on your site reading one post, he or she will quickly and easily see what other posts are popular on your site. There are many features and options in this plugin too, allowing you to tweak it to suit your needs.</p>
<p>Head over to the <a rel="nofollow"  href="http://ajaydsouza.com/wordpress/plugins/top-10/#downloads">developer&#8217;s site</a> to get more information about how this plugin works. You can access the free download link on that page or via the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/top-10/">WordPress.org Plugin Directory</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/08/24/wordpress-wednesday-top-10-widget-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Front End Editor</title>
		<link>http://blog.bluefur.com/2011/08/17/wordpress-wednesday-frontend-editor/</link>
		<comments>http://blog.bluefur.com/2011/08/17/wordpress-wednesday-frontend-editor/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 19:55:51 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8370</guid>
		<description><![CDATA[Have you ever wanted to make a minor alteration to one of your blog posts? Surely you have, but going back into the administration area of WordPress can prove to be such an extra hassle when all you want to do is make a minor edit. That&#8217;s why the Front End Editor plugin for WordPress [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Have you ever wanted to make a minor alteration to one of your blog posts? Surely you have, but going back into the administration area of WordPress can prove to be such an extra hassle when all you want to do is make a minor edit.</p>
<p>That&#8217;s why the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/front-end-editor/">Front End Editor</a> plugin for WordPress is so useful. Instead of diving back into the WP Dashboard to fix a typo, you can edit your content directly from the site&#8217;s front end. A simple &#8220;edit&#8221; button appears for those with permissions to edit the posts and pages.</p>
<p>In fact, Front-end Editor can also be used to edit comments, widgets, and many more elements that are common to WordPress-based sites. The editor is not just for fixing basic text either, in case the changes are a little more substantial. This plugin utilizes a WYSIWYG editor, giving you the ability to change the font, add links, add italics, adjust images, and so on. </p>
<p>Find more information, as well as screenshots, at the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/front-end-editor/">WordPress Plugin Directory</a>. This is a free download, so you can find the link on that same page.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/08/17/wordpress-wednesday-frontend-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Contact Call</title>
		<link>http://blog.bluefur.com/2011/08/10/wordpress-wednesday-contact-call/</link>
		<comments>http://blog.bluefur.com/2011/08/10/wordpress-wednesday-contact-call/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 20:00:35 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8335</guid>
		<description><![CDATA[One of the most common items that a website visitor wants to find is a means to contact you. You may already have some great information on your site about your products and services, but they may want to know more before placing an order. A contact page is a great start, especially if you [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>One of the most common items that a website visitor wants to find is a means to contact you. You may already have some great information on your site about your products and services, but they may want to know more before placing an order. </p>
<p>A contact page is a great start, especially if you have a contact form set up for e-mail communication. You might also list your phone number, but what if your customer is calling from another locale and doesn&#8217;t want to pay long distance? That&#8217;s where the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/contact-call-plugin/">Contact Call Plugin</a> can come in very handy.</p>
<p>The biggest advantage here is that the plugin can embed a &#8220;call us&#8221; button right on your website. When a visitor clicks on that, they call you from within the web browser. It&#8217;s that simple. Your call can then be received via Skype, mobile, GTalk, or landline. It works through the Push2Call protocol.</p>
<p>Go to the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/contact-call-plugin/">WordPress Plugin Directory</a> for more information on Contact Call, including an introductory video on the Push2Call service. Naturally, that page is also where you will find the free download link as well.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/08/10/wordpress-wednesday-contact-call/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: AMY Lite Plugin</title>
		<link>http://blog.bluefur.com/2011/08/03/wordpress-wednesday-amy-lite-plugin/</link>
		<comments>http://blog.bluefur.com/2011/08/03/wordpress-wednesday-amy-lite-plugin/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 19:44:02 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8299</guid>
		<description><![CDATA[Many people are making sizable incomes through their blogs. For some, it&#8217;s a part-time endeavor with part-time money. For others, it&#8217;s a full-time job. Whatever the case, selling advertising on a blog need not be too difficult. In place of or in addition to the various advertising networks, you may also be interested in selling [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Many people are making sizable incomes through their blogs. For some, it&#8217;s a part-time endeavor with part-time money. For others, it&#8217;s a full-time job. Whatever the case, selling advertising on a blog need not be too difficult.</p>
<p>In place of or in addition to the various advertising networks, you may also be interested in selling private advertising. If so, you&#8217;ll want to have some good ad management software. The <a rel="nofollow"  href="http://calendarscripts.info/amy-lite.html">A.M.Y. Lite WordPress Plugin</a> is one option that you might want to consider.</p>
<p>This ad management extension is a more basic version of its paid equivalent, but it still gives you the functionality that you need to run private advertising. It automatically tracks expiration dates, so you don&#8217;t need to pull expired ads on your own. The plugin allows for ad rotation too.</p>
<p>Go to <a rel="nofollow"  href="http://calendarscripts.info/amy-lite.html">CalendarScripts.info</a> for screenshots and more information about the A.M.Y. Lite plugin. That is also where you can access the free download link.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/08/03/wordpress-wednesday-amy-lite-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting]WordPress Wednesday: Check and Repair 404 Errors</title>
		<link>http://blog.bluefur.com/2011/07/27/wordpress-wednesday-check-and-repair-404-errors/</link>
		<comments>http://blog.bluefur.com/2011/07/27/wordpress-wednesday-check-and-repair-404-errors/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 19:47:23 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8277</guid>
		<description><![CDATA[There&#8217;s nothing more frustrating that going to a website via a link, only to find that the page does not exist. You don&#8217;t want that to become a common thing on your site and that&#8217;s why you need the Check and Repair 404 Errors WordPress plugin. This plugin works a little differently than some others [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>There&#8217;s nothing more frustrating that going to a website via a link, only to find that the page does not exist. You don&#8217;t want that to become a common thing on your site and that&#8217;s why you need the <a rel="nofollow"  href="http://tentblogger.com/404-plugin/">Check and Repair 404 Errors</a> WordPress plugin.</p>
<p>This plugin works a little differently than some others that seem to offer similar functionality. Rather than actively seeking broken links, it monitors when a visitor to your site receives a 404 error. It then records the URL that the visitor was trying to reach.</p>
<p>From there, you can log into the admin dashboard on your WordPress site and go to the report area for this plugin. There, you can look at the failed requests (from users, bots, search engines, and so on) and fix the issue manually. This is true of pages, broken outbound links, broken image links, and more. Anything that would generate a 404 error.</p>
<p>The Check and Repair 404 Errors WordPress plugin is developed by <a rel="nofollow"  href="http://tentblogger.com/404-plugin/">Tent Blogger</a>. You can find more information on that site and then head over to the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/tentblogger-404-repair/">WordPress Plugin Directory</a> to access the free download link.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/07/27/wordpress-wednesday-check-and-repair-404-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: UI Labs</title>
		<link>http://blog.bluefur.com/2011/07/20/wordpress-wednesday-ui-labs/</link>
		<comments>http://blog.bluefur.com/2011/07/20/wordpress-wednesday-ui-labs/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 19:41:21 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8227</guid>
		<description><![CDATA[There are all sorts of different plugins that can customize WordPress to suit your particular needs and preferences. Some change the reader side of things, while others change the admin side. This plugin falls into the latter category. Called UI Labs, this free WordPress plugin &#8220;offers experimental admin UI features&#8221; that are supposed to enhance [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>There are all sorts of different plugins that can customize WordPress to suit your particular needs and preferences. Some change the reader side of things, while others change the admin side. This plugin falls into the latter category.</p>
<p>Called <a rel="nofollow"  href="http://wordpress.org/extend/plugins/ui-labs/">UI Labs</a>, this free WordPress plugin &#8220;offers experimental admin UI features&#8221; that are supposed to enhance the default experience. I imagine that new features will be added to UI Labs as new versions are released.</p>
<p>There are two features as of version 1.1.1. The first is the addition of color-coded post statuses. Basically, this will color codes the tags in your post listing that tell you whether a post is a draft, a sticky, pending, private, and so on. This makes it easier to see the difference at a glance. The second feature is a slightly altered WordPress 3.2 admin header.</p>
<p>Head on over to the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/ui-labs/">WordPress Plugin Directory</a> to read the brief writeup on these &#8220;unofficial core UI experiments.&#8221; It&#8217;s also there that you&#8217;ll get a couple of screenshots and the download link.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/07/20/wordpress-wednesday-ui-labs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: Moo Gravatar Box</title>
		<link>http://blog.bluefur.com/2011/07/13/wordpress-wednesday-moo-gravatar-box/</link>
		<comments>http://blog.bluefur.com/2011/07/13/wordpress-wednesday-moo-gravatar-box/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 19:43:09 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8185</guid>
		<description><![CDATA[By now, it&#8217;s fairly common practice for blog owners to integrate their comment system with gravatar. This way, when people leave a comment on the site, their avatar shows up. However, this usually only happens after the comment is submitted. The Moo Gravatar Box plugin for WordPress takes the Gravatar integration one step further. Rather [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>By now, it&#8217;s fairly common practice for blog owners to integrate their comment system with gravatar. This way, when people leave a comment on the site, their avatar shows up. However, this usually only happens <em>after</em> the comment is submitted.</p>
<p>The <a rel="nofollow"  href="http://wordpress.org/extend/plugins/moo-gravatar-box/">Moo Gravatar Box</a> plugin for WordPress takes the Gravatar integration one step further. Rather than waiting until a comment has already been submitted, it will automatically fetch the avatar image immediately after an email address is entered in the comment form.</p>
<p>The other major advantage is that the person leaving the comment can see whether or not their gravatar image is being pulled correctly or not. If this person does not have a Gravatar account, the plugin will <a rel="nofollow"  href="http://wordpress.org/extend/plugins/moo-gravatar-box/screenshots/">automatically ask them to get one</a>. That&#8217;s pretty useful.</p>
<p>Find some more information, including a FAQ on customizing the style, through the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/moo-gravatar-box/screenshots/">official WordPress.org plugin directory</a>. The plugin is a free download and requires WordPress 2.8 or higher.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/07/13/wordpress-wednesday-moo-gravatar-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: Before and After</title>
		<link>http://blog.bluefur.com/2011/07/06/wordpress-wednesday-before-and-after/</link>
		<comments>http://blog.bluefur.com/2011/07/06/wordpress-wednesday-before-and-after/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 20:01:17 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8140</guid>
		<description><![CDATA[Do you have time-sensitive content on your blog that needs to be removed or added on certain dates? You don&#8217;t need to do this manually! Just as you can automate so many other processes in WordPress, you can automate post updates too. You need the Before and After WordPress plugin. This is a very simple [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Do you have time-sensitive content on your blog that needs to be removed or added on certain dates? You don&#8217;t need to do this manually! Just as you can automate so many other processes in WordPress, you can automate post updates too.</p>
<p>You need the <a rel="nofollow"  href="http://www.jacobfresco.nl/programmeren/wordpress/before-and-after/">Before and After</a> WordPress plugin. This is a very simple solution. All you have are two main types of tags. One will show text (and other content) up until a certain date, after which it will be automatically removed from the live post. The other tag will hide text (and other content) up until a certain date, after which it will automatically be displayed on the live post.</p>
<p>The syntax does not appear to allow for specific times, but you can designate specific dates. For instance, if you to show a product announcement on September 15, 2012 but not before that, you would use this syntax:</p>
<p>&lt;AFTER 2012-09-15&gt;We are proud to announce the availability of Product XYZ.&lt;/AFTER&gt;</p>
<p>The Before and After WordPress plugin works in both posts and pages. Get more information on the <a rel="nofollow"  href="http://www.jacobfresco.nl/programmeren/wordpress/before-and-after/">developer&#8217;s site</a>, though it is in Dutch. The download button can be accessed on that page too (it&#8217;s the &#8220;down&#8221; arrow at the end of the post).</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/07/06/wordpress-wednesday-before-and-after/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[WordPress Canada] Are You Ready?</title>
		<link>http://feedproxy.google.com/~r/WordpressCanada/~3/oaGD558hxys/</link>
		<comments>http://feedproxy.google.com/~r/WordpressCanada/~3/oaGD558hxys/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 03:36:16 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpcanada.ca/?p=2714</guid>
		<description><![CDATA[With WordPress 3.2 just around the corner have you checked to make sure your hosting environment will support it? Remember, the minimum requirements are changing as duly noted on the WordPress News blog last July. The latest and greatest version of WordPress will require at least: PHP 5.2.4 MySQL 5.0 We've all had nearly a [...]]]></description>
			<content:encoded><![CDATA[<p>With WordPress 3.2 just around the corner have you checked to make sure your hosting environment will support it?</p>
<p>Remember, the minimum requirements are changing <a rel="nofollow"  href="http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/" title="WordPress News">as duly noted</a> on the WordPress News blog last July. The latest and greatest version of WordPress will require at least:</p>
<ul>
<li>PHP 5.2.4</li>
<li>MySQL 5.0</li>
</ul>
<p>We've all had nearly a year to prepare for this change. If you haven't yet taken any steps to ensure compatibility now would be a good time as the clock is ticking. At the time of this writing there is only <a rel="nofollow"  href="http://core.trac.wordpress.org/milestone/3.2" title="WordPress Trac">1 active ticket</a> on Trac.</p>
<p>You should be able to see what version of PHP and MySQL your host is running by logging in to your site's control panel. If you are unable to find the information don't fret, contact your host's support department or download and install the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/health-check/" title="WordPress Plugin Directory: Health Check">Health Check</a> plugin from the WordPress Plugin Directory. Of course you can also install the plugin directly from your dashboard - just search for "health check".</p>
<p>Once the plugin is installed simply activate it after which you will see a notice at the top of the page similar to the image below.</p>
<p><img src="http://wpcanada.ca/wp-content/uploads/2011/07/healthcheck.png" alt="Health Check Result" title="Health Check Result" width="600" height="107" class="aligncenter size-full wp-image-2715"/></p>
<p>If you get a warning message you'll need to take action. Most hosting companies already meet the minimum requirements of WordPress 3.2. If your site is not currently running the needed versions of PHP and MySQL you should be able to change that from within your control panel. If you cannot or don't know how then contact your host's support department.</p>
<p>If your host doesn't meet the minimum requirements and refuses to upgrade you might want to find a new home for your blog.</p>
<div class="feedflare">
<a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=yIl2AUoC8zA" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?i=oaGD558hxys:jCRVZ0Oftz0:-BTjWOF_DHI" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?i=oaGD558hxys:jCRVZ0Oftz0:F7zBnMyn0Lo" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?i=oaGD558hxys:jCRVZ0Oftz0:V_sGLiPBpWU" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=qj6IDK7rITs" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=l6gmwiTKsz0" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?i=oaGD558hxys:jCRVZ0Oftz0:gIN9vFwOqvQ" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=TzevzKxY174" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=dnMXMwOfBR0" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=I9og5sOYxJI" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:Jwdi1b3fU3Q"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=Jwdi1b3fU3Q" border="0"></a> <a rel="nofollow"  href="http://feeds.feedburner.com/~ff/WordpressCanada?a=oaGD558hxys:jCRVZ0Oftz0:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/WordpressCanada?d=cGdyc7Q-1BI" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressCanada/~4/oaGD558hxys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/WordpressCanada/~3/oaGD558hxys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: Crawlable Facebook Comments</title>
		<link>http://blog.bluefur.com/2011/06/29/wordpress-wednesday-crawlable-facebook-comments/</link>
		<comments>http://blog.bluefur.com/2011/06/29/wordpress-wednesday-crawlable-facebook-comments/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 20:00:46 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8101</guid>
		<description><![CDATA[There&#8217;s something to be said about integration across platforms. That&#8217;s why while it is important to have a presence on Twitter, Facebook, and through your blog, it&#8217;s by connecting these profiles together that you can gain the greatest possible value. You may have already seen a few blogs where the conventional comment system has been [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>There&#8217;s something to be said about integration across platforms. That&#8217;s why while it is important to have a presence on Twitter, Facebook, and through your blog, it&#8217;s by connecting these profiles together that you can gain the greatest possible value.</p>
<p>You may have already seen a few blogs where the conventional comment system has been replaced with Facebook comments. This allows visitors to the site to post comments using their Facebook profiles and this content can be easily integrated between the two. However, this content may not be visible to Google.</p>
<p>The way around this is to use a WordPress plugin like <a rel="nofollow"  href="http://wordpress.org/extend/plugins/crawlable-facebook-comments/">Crawlable Facebook Comments</a>. This will let Google crawl and index your Facebook comments, giving you another leg up when people are looking for certain topics and information through the popular search engine.</p>
<p>This plugin will retrieve the comments, including information about authors and dates, and make them visible in your source code. Otherwise, these Facebook comments would be &#8220;hidden&#8221; in an iframe that Google may not see. Crawlable Facebook Comments overcomes that shortcoming. Find it as a free download through the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/crawlable-facebook-comments/">WordPress Plugin Directory</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/06/29/wordpress-wednesday-crawlable-facebook-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: Feed Stats Reworked</title>
		<link>http://blog.bluefur.com/2011/06/22/wordpress-wednesday-feed-stats-reworked/</link>
		<comments>http://blog.bluefur.com/2011/06/22/wordpress-wednesday-feed-stats-reworked/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 01:19:44 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8065</guid>
		<description><![CDATA[Last week, I wrote about a WordPress plugin called Social Metrics that allowed you to track the statistics related to social media when it came to the performance of your website or blog. This week, we extend the stat tracking with Feed Stats for WordPress, which has been reworked since the prior version stopped receiving [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Last week, I wrote about a WordPress plugin called <a rel="nofollow"  href="http://blog.bluefur.com/2011/06/15/wordpress-wednesday-social-metrics/">Social Metrics</a> that allowed you to track the statistics related to social media when it came to the performance of your website or blog. This week, we extend the stat tracking with <a rel="nofollow"  href="http://wordpress.org/extend/plugins/feed-stats-plugin-for-wordpress-reworked/">Feed Stats for WordPress</a>, which has been reworked since the prior version stopped receiving support.</p>
<p>The idea behind this WordPress plugin is that it is able to provide you with all of the information regarding your RSS feed without you having to make a separate visit to your Feedburner account. You&#8217;re more likely to check your stats when you don&#8217;t have to go somewhere else to do it, which is the same reason why there are plugins for other services like Google Analytics.</p>
<p>With Feed Stats for WordPress, you can gain access to such statistics as the number of subscribers, number of hits, your reach, item clickthroughs and item views. All of this information can be found through the main WordPress dashboard section of your blog&#8217;s administration panel.</p>
<p>As usual, you can find Feed Stats for WordPress through the official <a rel="nofollow"  href="http://wordpress.org/extend/plugins/feed-stats-plugin-for-wordpress-reworked/">Plugin Directory</a> on WordPress.org. Screenshots and a handy FAQ are there as well.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/06/22/wordpress-wednesday-feed-stats-reworked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: Social Metrics</title>
		<link>http://blog.bluefur.com/2011/06/15/wordpress-wednesday-social-metrics/</link>
		<comments>http://blog.bluefur.com/2011/06/15/wordpress-wednesday-social-metrics/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 19:51:30 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=8027</guid>
		<description><![CDATA[Any site owner will tell you about the importance of tracking your site&#8217;s performance. By and large, people have come to rely on Google Analytics for this purpose, as well as other services for tracking affiliate marketing, advertising campaigns and so forth. Another option you may want to add to the mix is Social Metrics. [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>Any site owner will tell you about the importance of tracking your site&#8217;s performance. By and large, people have come to rely on Google Analytics for this purpose, as well as other services for tracking affiliate marketing, advertising campaigns and so forth. Another option you may want to add to the mix is <a rel="nofollow"  href="http://www.riyaz.net/social-metrics/">Social Metrics</a>.</p>
<p>This WordPress plugin effectively works as a &#8220;social media analytics tool&#8221; for your blog. Using it, you can keep track of how your site (and its various pages) are performing on popular social networking websites and services. Currently, the plugin supports such networks as Twitter, Facebook, Google Buzz, StumbleUpon, Digg, LinkedIn, and the recently launched Google +1. </p>
<p>While in the administrative panel for Social Metrics, you can see exactly how many times each individual post or page has been &#8220;shared&#8221; across these networks. This is quite different from the public display option offered by other WordPress plugins. This is particularly useful for newer or growing sites, as you may not want to show these metrics publicly to your readers. You can also filter the results based on categories and month.</p>
<p>Find out more information about Social Metrics on <a rel="nofollow"  href="http://www.riyaz.net/social-metrics/">Riyaz.net</a>, including a useful FAQ and installation guide. You can then go to the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/social-metrics/">WordPress Plugin Directory</a> to find the free download link.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/06/15/wordpress-wednesday-social-metrics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[BlueFur.com Web Hosting] WordPress Wednesday: Google +1 Button</title>
		<link>http://blog.bluefur.com/2011/06/08/wordpress-wednesday-google-1-button/</link>
		<comments>http://blog.bluefur.com/2011/06/08/wordpress-wednesday-google-1-button/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 20:07:58 +0000</pubDate>
		<dc:creator>Planet WordPress Canada</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.bluefur.com/?p=7986</guid>
		<description><![CDATA[As you may have noticed, Google recently rolled out a new product called Google +1 (or Google Plus One, if you prefer). In essence, it works the same way as a Facebook like button on a website or even like a &#8220;tweet&#8221; button. When you click on the +1, that webpage gets a bump in [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.bluefur.com/images/wordpresswed.png'></p>
<p>As you may have noticed, Google recently rolled out a new product called Google +1 (or Google Plus One, if you prefer). In essence, it works the same way as a Facebook like button on a website or even like a &#8220;tweet&#8221; button. When you click on the +1, that webpage gets a bump in search rankings as viewed by your friends.</p>
<p>In some ways, this sounds like Google Buzz too, though Buzz hasn&#8217;t exactly had the kind of impact that Google was trying to get. Even so, Google +1 could prove to be a useful tool for all the webmasters and bloggers in the audience. Whatever way you can get more traffic and get higher in search rankings, the better.</p>
<p>You could simply install the code that is provided to you by Google, but an easier way to integrate Google +1 on your site is to use the <a rel="nofollow"  href="http://wordpress.org/extend/plugins/google-plus-one-button/">google Plus One Button</a> WordPress plugin. It gives you many options for sizes and styles, as well as where to put the button on your pages and posts.</p>
<p>As with most other plugins, this one can also be found in the official <a rel="nofollow"  href="http://wordpress.org/extend/plugins/google-plus-one-button/">WordPress Plugin Directory</a>. Some useful information about Google+1 itself (and a screenshot of this plugin) can be found at <a rel="nofollow"  href="http://www.dragonblogger.com/google-1/">DragonBlogger.com</a>, though he has no direct association with either the new Google product or the new plugin.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.bluefur.com/2011/06/08/wordpress-wednesday-google-1-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

