Version Description
Release post: https://webberzone.com/blog/top-10-v3-1-0/
-
Features:
- New filter
tptn_show_meta_box
that can be set to false to disable the Top 10 meta box on Edit screens - New option to exclude the current post from the list
- New option "Exclude on Categories" to disable the display of the popular posts on selected categories
- New filter
-
Enhancements/Modifications:
- Optimised import of tables particularly for larger imports
- Added wpml-config.xml file that will allow settings to be translated with WPML and PolyLang
- Upgraded block to the latest API
- Upgraded thumbnail display. If default image is disabled, then the site icon will be displayed if available
- Admin dashboard counts match with the Popular posts listings
- Updated chartjs to the latest version
-
Bug fixes:
- Fixed PHP notice on widgets.php page due to the block
- Widget checkboxes are not saved in WordPress 5.8
-
post__in
argument will now remove any false/0 values - Disabling/enabling author tracking didn't always work
- WP Multisite: Creating a new blog with automatically configure the plugin
- Widget incorrectly included all post types when no post types were selected instead of using the global settings
- Current post was incorrectly excluded when translation functions were run
Download this release
Release Info
Developer | Ajay |
Plugin | Top 10 – Popular posts plugin for WordPress |
Version | 3.1.2 |
Comparing to | |
See all releases |
Code changes from version 3.1.1 to 3.1.2
- includes/admin/admin.php +1 -1
- readme.txt +3 -3
- top-10.php +1 -1
includes/admin/admin.php
CHANGED
@@ -265,7 +265,7 @@ function tptn_load_admin_scripts( $hook ) {
|
|
265 |
'tptn-admin-ui-css',
|
266 |
TOP_TEN_PLUGIN_URL . 'includes/admin/css/top-10-admin.min.css',
|
267 |
array(),
|
268 |
-
'top-ten-admin-js'
|
269 |
);
|
270 |
}
|
271 |
}
|
265 |
'tptn-admin-ui-css',
|
266 |
TOP_TEN_PLUGIN_URL . 'includes/admin/css/top-10-admin.min.css',
|
267 |
array(),
|
268 |
+
'top-ten-admin-js'
|
269 |
);
|
270 |
}
|
271 |
}
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: popular posts, top 10, counter, top posts, daily popular, page views, statistics, tracker
|
3 |
Contributors: webberzone, Ajay
|
4 |
Donate link: https://ajaydsouza.com/donate/
|
5 |
-
Stable tag: 3.1.
|
6 |
Requires at least: 5.6
|
7 |
Tested up to: 5.9
|
8 |
Requires PHP: 7.1
|
@@ -135,7 +135,7 @@ add_filter( 'manage_edit-projects_sortable_columns', 'tptn_column_register_sorta
|
|
135 |
|
136 |
== Changelog ==
|
137 |
|
138 |
-
= 3.1.
|
139 |
|
140 |
Release post: [https://webberzone.com/blog/top-10-v3-1-0/](https://webberzone.com/blog/top-10-v3-1-0/)
|
141 |
|
@@ -185,6 +185,6 @@ For previous changelog entries, please refer to the separate changelog.txt file
|
|
185 |
|
186 |
== Upgrade Notice ==
|
187 |
|
188 |
-
= 3.1.
|
189 |
Major release; Please check the plugin settings; Read all details in the release post
|
190 |
|
2 |
Tags: popular posts, top 10, counter, top posts, daily popular, page views, statistics, tracker
|
3 |
Contributors: webberzone, Ajay
|
4 |
Donate link: https://ajaydsouza.com/donate/
|
5 |
+
Stable tag: 3.1.2
|
6 |
Requires at least: 5.6
|
7 |
Tested up to: 5.9
|
8 |
Requires PHP: 7.1
|
135 |
|
136 |
== Changelog ==
|
137 |
|
138 |
+
= 3.1.2 =
|
139 |
|
140 |
Release post: [https://webberzone.com/blog/top-10-v3-1-0/](https://webberzone.com/blog/top-10-v3-1-0/)
|
141 |
|
185 |
|
186 |
== Upgrade Notice ==
|
187 |
|
188 |
+
= 3.1.2 =
|
189 |
Major release; Please check the plugin settings; Read all details in the release post
|
190 |
|
top-10.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
* Plugin Name: Top 10
|
15 |
* Plugin URI: https://webberzone.com/plugins/top-10/
|
16 |
* Description: Count daily and total visits per post and display the most popular posts based on the number of views
|
17 |
-
* Version: 3.1.
|
18 |
* Author: Ajay D'Souza
|
19 |
* Author URI: https://webberzone.com
|
20 |
* License: GPL-2.0+
|
14 |
* Plugin Name: Top 10
|
15 |
* Plugin URI: https://webberzone.com/plugins/top-10/
|
16 |
* Description: Count daily and total visits per post and display the most popular posts based on the number of views
|
17 |
+
* Version: 3.1.2
|
18 |
* Author: Ajay D'Souza
|
19 |
* Author URI: https://webberzone.com
|
20 |
* License: GPL-2.0+
|