Version Description
If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.
- Fixes reference to tracking script.
Download this release
Release Info
Developer | hcabrera |
Plugin | WordPress Popular Posts |
Version | 4.0.11 |
Comparing to | |
See all releases |
Code changes from version 4.0.10 to 4.0.11
includes/class-wordpress-popular-posts.php
CHANGED
@@ -28,7 +28,7 @@ class WordPressPopularPosts {
|
|
28 |
public function __construct(){
|
29 |
|
30 |
$this->plugin_name = 'wordpress-popular-posts';
|
31 |
-
$this->version = '4.0.
|
32 |
|
33 |
$this->load_dependencies();
|
34 |
$this->set_locale();
|
28 |
public function __construct(){
|
29 |
|
30 |
$this->plugin_name = 'wordpress-popular-posts';
|
31 |
+
$this->version = '4.0.11';
|
32 |
|
33 |
$this->load_dependencies();
|
34 |
$this->set_locale();
|
public/class-wordpress-popular-posts-public.php
CHANGED
@@ -112,9 +112,9 @@ class WPP_Public {
|
|
112 |
'ID' => $is_single,
|
113 |
'token' => wp_create_nonce( 'wpp-token' )
|
114 |
);
|
115 |
-
wp_localize_script( 'wpp-
|
116 |
|
117 |
-
wp_enqueue_script( 'wpp-
|
118 |
|
119 |
}
|
120 |
|
112 |
'ID' => $is_single,
|
113 |
'token' => wp_create_nonce( 'wpp-token' )
|
114 |
);
|
115 |
+
wp_localize_script( 'wpp-js', 'wpp_params', $params );
|
116 |
|
117 |
+
wp_enqueue_script( 'wpp-js' );
|
118 |
|
119 |
}
|
120 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hcabr
|
|
4 |
Tags: popular, posts, widget, popularity, top
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.8.2
|
7 |
-
Stable tag: 4.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -82,7 +82,13 @@ The FAQ section has been moved [here](https://github.com/cabrerahector/wordpress
|
|
82 |
4. WordPress Popular Posts Stats panel.
|
83 |
|
84 |
== Changelog ==
|
85 |
-
= 4.
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
**If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.**
|
88 |
|
@@ -176,5 +182,5 @@ See [full changelog](https://github.com/cabrerahector/wordpress-popular-posts/bl
|
|
176 |
* Flame graphic by freevector/Vecteezy.com.
|
177 |
|
178 |
== Upgrade Notice ==
|
179 |
-
= 4.0.
|
180 |
If you're using a caching plugin, flushing its cache after upgrading to this version is highly recommended.
|
4 |
Tags: popular, posts, widget, popularity, top
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.8.2
|
7 |
+
Stable tag: 4.0.11
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
82 |
4. WordPress Popular Posts Stats panel.
|
83 |
|
84 |
== Changelog ==
|
85 |
+
= 4.0.11 =
|
86 |
+
|
87 |
+
**If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.**
|
88 |
+
|
89 |
+
- Fixes reference to tracking script.
|
90 |
+
|
91 |
+
= 4.0.10 =
|
92 |
|
93 |
**If you're using a caching plugin, flushing its cache after installing / upgrading to this version is highly recommended.**
|
94 |
|
182 |
* Flame graphic by freevector/Vecteezy.com.
|
183 |
|
184 |
== Upgrade Notice ==
|
185 |
+
= 4.0.11 =
|
186 |
If you're using a caching plugin, flushing its cache after upgrading to this version is highly recommended.
|
wordpress-popular-posts.php
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
* Plugin Name: WordPress Popular Posts
|
17 |
* Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/
|
18 |
* Description: A highly customizable widget that displays the most popular posts on your blog.
|
19 |
-
* Version: 4.0.
|
20 |
* Author: Hector Cabrera
|
21 |
* Author URI: http://cabrerahector.com/
|
22 |
* License: GPL-2.0+
|
16 |
* Plugin Name: WordPress Popular Posts
|
17 |
* Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/
|
18 |
* Description: A highly customizable widget that displays the most popular posts on your blog.
|
19 |
+
* Version: 4.0.11
|
20 |
* Author: Hector Cabrera
|
21 |
* Author URI: http://cabrerahector.com/
|
22 |
* License: GPL-2.0+
|