LJ Longtail SEO is a tool that detects search engine visits and uses this information to display a list of links based on second page search results
LJ Longtail SEO is a tool that detects search engine visits and uses this information to display a list of links based on second page search results.
The results in the database are aged off based on customizable settings so that once your longtail keywords have been boosted they will fall off the list and give way for other searches.
Admin interface has an optional keyword report that can be turned on via an option (On a large blog it is possible that there could be a performance hit on the admin page when using this option. Please note this will not slow down the blog side, just the admin page.). The keyword report will show the Top 100 keywords ordered by popularity and also showing the number of times the keyword has occurred.
As of Version 1.5 the plugin you can now add keywords to an Ignore list. This means if you don’t want a certain keyword registering as a referred search term you can simply put the phrase into the Ignored Keywords list and it will no longer register.
A widget will display a list of the popular searches that have come from search engine result pages beyond the first and provide a link on your sidebar back to the pages found.
Using this method can help to increase traffic to a blog via bring more importance to the Longtail keywords that can be used to find a site.
The original idea for this plugin was taken from SEO Booster Lite and Second Page Poaching – Advanced White Hat SEO. I used the other plugin for a short period of time and didn’t like a few of the restrictions. Therefore I decided to make my own, there will be no Pro version or paid version. The version I release here is in production on my main blog. Any updates I make there will end up here including bugfixes.
This plugin currently only registers search results from Google, Bing, Yahoo, and Ask. It is compatible with both of Googles current referrer information meaning you should always have accurate SERP positioning results.
lj-longtail-seo
folder into your /wp-content/plugins/
directoryIf you install the update manually, please ensure you deactivate the plugin and then reactive. If you don’t do this the plugin will not function!!
If you don’t want to use the Sidebar widget you can place the following code anywhere in your theme. It will display an Unordered List of Search Results.
<?php if (class_exists('LJLongtailSEO')) { LJLongtailSEO::SEOResultsList(); } ?>
I recommend you leave the plugin activated and the widget disabled for the first week to allow the plugin to collect some data. The admin screen has a simulation of what will be shown in the widget so please wait a while until you are happy with the results. Please note that if you deactivate the plugin, it won’t be able to collect data to display later on.
The best way to help is to provide a link back to the plugins homepage LJ Longtail SEO
Please leave a comment on the plugins homepage, that way I will know when someone has posted.
LJ Longtail SEO now has a new static function that you can use to get an array of data. To call this function use the following:
$array = LJLongtailSEO::SEOResultsArray();
The format of the returned array:
Array ( [0] => Array ( [postid] => 1 [postpermalink] => http://urltopost/2009/10/post-1/ [query] => some search term ) [1] => Array ( [postid] => 2 [postpermalink] => http://urltopost/2009/10/post-2/ [query] => some other search term ) )
As of Version 1.9 support for WP Super Cache has been added, although it will only work in certain configurations for WP Super Cache. You must be running in PHP Caching Mode and you must enable the Late Init function.
If you cant run WP Super Cache in this configuration you will get limited results from LJ Longtail SEO.
Version 1.6 allows you to use a method call to display the plugins output. Place the following code in your theme
<?php if (class_exists('LJLongtailSEO')) { LJLongtailSEO::SEOResultsList(); } ?>