sandywp / plugins / wp-most-popular
WP Most Popular
WP Most Popular is a simple plugin which tracks your most popular blog posts based on views and lets you display them in your theme or blog sidebar.
Ready in seconds.
v0.3.1 2,000+ installs WP 3.0+ PHP 5.2.4+

About this plugin
WP Most Popular was born out of frustration in finding a decent plugin which performs one simple task and that is to rank your most popular blog posts.
The plugin keeps a log of your most popular posts based on views and lets you display them in your blog theme with custom styling. You can display popular posts from the last day, 7 days, 30 days or all time.
It also comes with a sidebar widget to let you display your popular posts on your blogs sidebar.
If you are a developer and integrate the plugin in to a theme, you will get a lot more flexibility out of the plugin including the ability to show the most popular custom post types etc.
This plugin was built and is maintained by WP Geeks. For extra documentation, videos, snippets and support, visit the WP Most Popular product page.
Usage
There are two ways in which you can use this plugin.
- As a sidebar widget
- Custom function in your theme files
Using the widget is the easiest way and recommended for most users. If you are a developer and want to integrate the plugin in to your existing theme, then read the information below.
Firstly, the main function which you will need to include in your theme to fetch the popular posts is called wp_most_popular_get_popular().
You can pass that function the following parameters in array form:
- limit (integer)
- The number of posts you would like to display i.e. 5
- Default: 5
- post_type (string) / (array)
- The post type you would like to display
- Example: post
- Default: All post types
- range (string)
- In what date range would you like to display popular posts in
- Accepted: all_time, monthly, weekly, daily
- Default: all_time
Those are the current parameters that the plugin supports. Let’s look at an example of how to display the most recent popular posts in a unordered list.
<?php
echo '<ul>';
$posts = wp_most_popular_get_popular( array( 'limit' => 10, 'post_type' => 'post', 'range' => 'all_time' ) );
global $post;
if ( count( $posts ) > 0 ): foreach ( $posts as $post ):
setup_postdata( $post );
?>
<li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
<?php
endforeach; endif;
echo '</ul>';
?>
Filters
The following filters are available to you:
- wp_most_popular_list_before – used to filter the
- element of the outputted widget list
* **wp_most_popular_list_after** – used to filter the
element of the outputted widget list
* wp_most_popular_list_item_single – filters for a the list item generated by the widget
Actions
- wp_most_popular_list_item – used for modifying the list output
Questions
- Installation Instructions
Setting up WP Most Popular is very simple. Follow these easy steps
- Upload the plugin to your
/wp-content/plugins/directory - Activate the plugin in your WordPress admin
- Add sidebar widget or integrate functions in to your theme
- Upload the plugin to your
- Why are no posts displaying when I use the widget or call the function in my theme?
99% of the time this is because no posts have been visited yet to receive a ranking. Simply click on a blog post to read it on your blog and it will receive a ranking and display in the list of most popular posts.
- What are the minimum requirements for the plugin?
You will need a web server or shared host that supports PHP version 5 or newer. Javascript is also required to log post views.
- Why does the plugin use Javascript to track the post views?
The original version of the plugin that I wrote used PHP to track the post views and the reason why I switched to Javascript was because if a caching plugin is enabled on your blog, the page will be loaded statically to your visitor and the PHP code to log a view on a post will not be run.
- Can I request a feature?
Yes, please do so on the WordPress support forum for the plugin. I will consider it and if I feel it is worth adding, I will schedule it for a future release.
- Can I contribute code to the plugin?
Yes! The plugin is open source and I host it on Github. Feel free to send me pull requests.
- Where can I get support for the plugin?
This plugin is managed by WP Geeks and you can contact our support team on our website.
sandywp / also on the shelf
Try another plugin
WebberZone Top 10 — Popular Posts
4.6 · 10K+ installs
Track post views and page views, and display popular posts and trending content on your WordPress site.
5.0 · 90+ installs
Displays the most visited posts as a widget using data from Google Analytics. Designed to be used under high-traffic or low…
-
Lightweight post view counter with a widget and shortcodes. Track post views automatically, stop double-counting, and display…
Spin up a real WordPress site in seconds.
Test plugins, build a demo, hand a client a link — then squash it and start again. No local setup, no Docker.