Featured Articles

Milan Petrovic Interview

This interview is the third in a series of interviews with outstanding WordPress Developers. This ti[...]

Video Introduction to Newsletter Booster for WordPress

Introduction video to Newsletter Booster - WordPress plugin.

Documentation

How to install and use SEO Booster Lite

Installation

Install like any WordPress Plugin. If you need help with this here is a good tutorial: How to install a WordPress plugin.

Usage

After installation, the plugin can be activated two ways:

  1. The Widget. By far the easiest and simplest method. Here is how you install it, step b…….
  2. The PHP-function. Since version 1.2 the plugin can also be implemented by editing your theme-files directly.

If you do not know how to do it, you should probably use the Widget instead.

If you do know how to do that, here is how you can implement the function:

Find the place in your WordPress theme you want to implement the function, usually you would add it to single.php or perhaps the sidebar.php, if your theme does not support widgets.

<?php
if(function_exists('seobooster_show_referrers')){ seobooster_show_referrers('10',TRUE); }
?>

In above example, I use the function_exists function to check if the function exists, before making a php call. The reason for this is if you deactivate the plugin, your theme would no longer work properly.

The function accepts two parameters, first ’10′, is the number of links to show, the second, TRUE or FALSE, is whether or not to include a backlink to cleverwp.com. (I really appreciate those who do, but if you choose to turn it off, its quite alright).

After the installation

Wait. It takes a while to start displaying anything, the plugin only displays anything when something very specific happens:

  • A user searches for something on a search engine.
  • The user browses or skips through the first 10 results, and goes on to page two
  • The user sees a page from your blog, and clicks it.

Not until the above very specific situation happens, will the plugin display anything. Even if the user finds your blog on page three of the search results, the plugin will not display it.

Popular Searches
seobooster_show_referrers,

Comments on this entry are closed.