Version Description
Release post: https://webberzone.com/blog/top-10-v2-9-0/
- Bug fixes:
- Custom CSS box would not save
Download this release
Release Info
Developer | Ajay |
Plugin | Top 10 – Popular posts plugin for WordPress |
Version | 2.9.2 |
Comparing to | |
See all releases |
Code changes from version 2.9.1 to 2.9.2
- includes/admin/settings-page.php +1 -1
- readme.txt +9 -2
- top-10.php +1 -1
includes/admin/settings-page.php
CHANGED
@@ -271,7 +271,7 @@ function tptn_textarea_callback( $args ) {
|
|
271 |
|
272 |
$class = sanitize_html_class( $args['field_class'] );
|
273 |
|
274 |
-
$html = sprintf( '<textarea class="%3$s" cols="50" rows="20" id="
|
275 |
$html .= '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>';
|
276 |
|
277 |
/** This filter has been defined in settings-page.php */
|
271 |
|
272 |
$class = sanitize_html_class( $args['field_class'] );
|
273 |
|
274 |
+
$html = sprintf( '<textarea class="%3$s" cols="50" rows="20" id="tptn_settings[%1$s]" name="tptn_settings[%1$s]">%2$s</textarea>', sanitize_key( $args['id'] ), esc_textarea( stripslashes( $value ) ), 'large-text ' . $class );
|
275 |
$html .= '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>';
|
276 |
|
277 |
/** This filter has been defined in settings-page.php */
|
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:
|
6 |
Requires at least: 4.9
|
7 |
Tested up to: 5.4
|
8 |
License: GPLv2 or later
|
@@ -160,6 +160,13 @@ add_filter( 'manage_edit-projects_sortable_columns', 'tptn_column_register_sorta
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
= 2.9.1 =
|
164 |
|
165 |
Release post: [https://webberzone.com/blog/top-10-v2-9-0/](https://webberzone.com/blog/top-10-v2-9-0/)
|
@@ -214,7 +221,7 @@ For previous changelog entries, please refer to the separate changelog.txt file
|
|
214 |
|
215 |
== Upgrade Notice ==
|
216 |
|
217 |
-
= 2.9.
|
218 |
Bug fixes and new features;
|
219 |
Check the Changelog for more details
|
220 |
|
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: 2.9.2
|
6 |
Requires at least: 4.9
|
7 |
Tested up to: 5.4
|
8 |
License: GPLv2 or later
|
160 |
|
161 |
== Changelog ==
|
162 |
|
163 |
+
= 2.9.2 =
|
164 |
+
|
165 |
+
Release post: [https://webberzone.com/blog/top-10-v2-9-0/](https://webberzone.com/blog/top-10-v2-9-0/)
|
166 |
+
|
167 |
+
* Bug fixes:
|
168 |
+
* Custom CSS box would not save
|
169 |
+
|
170 |
= 2.9.1 =
|
171 |
|
172 |
Release post: [https://webberzone.com/blog/top-10-v2-9-0/](https://webberzone.com/blog/top-10-v2-9-0/)
|
221 |
|
222 |
== Upgrade Notice ==
|
223 |
|
224 |
+
= 2.9.2 =
|
225 |
Bug fixes and new features;
|
226 |
Check the Changelog for more details
|
227 |
|
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: 2.9.
|
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: 2.9.2
|
18 |
* Author: Ajay D'Souza
|
19 |
* Author URI: https://webberzone.com
|
20 |
* License: GPL-2.0+
|