Aistear GA Ranking

Display plugin rankings using Google Analytics.

Author:Endoh Shingo(mebius0) (profile at wordpress.org)
WordPress version required:3.5.1
WordPress version tested:3.5.1
Plugin version:1.1
Added to WordPress repository:20-03-2013
Last updated:27-03-2013
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://aistear.info/engineer/
Total downloads:855
plugin download
Click to start download

This plug-in is to use the data obtained from Google Analytics to view the rankings of popular posts.

How to use

  1. Enter a value in the configuration screen.
  2. Add a widget.
  3. If you want to use in the theme if you can view by inserting the following functions:
<?php if (function_exists('aistear_ga_ranking')) { aistear_ga_ranking(); } ?>
  1. If you want to customize the display, then the function is called to set the array as follows(Showing Default Values):
<?php  
    $args = array(  
            'container' => 'ol',  
            'container_class' => 'ga-ranking',  
            'before' => '<li class="ga-ranking-list ga-ranking-list-%1$d">',  
            'after' => '</li>',  
            'echo' => 'true',  
        );  
    if (function_exists('aistear_ga_ranking')) { aistear_ga_ranking( $args ); }  
?>

Developer