Version Description
Download this release
Release Info
Developer | dipakcg |
Plugin | WP Performance Score Booster |
Version | 1.7.2 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 1.7.2
- admin-page.php +3 -3
- readme.txt +5 -2
- wp-performance-score-booster.php +2 -2
admin-page.php
CHANGED
@@ -128,7 +128,7 @@ function wppsb_admin_options() {
|
|
128 |
<hr style="margin: 2em 0 1.5em 0;" />
|
129 |
<?php
|
130 |
// Promo - Ad contents
|
131 |
-
$promo_content = wp_remote_fopen("https://
|
132 |
echo $promo_content;
|
133 |
?>
|
134 |
<?php // Bottom - News and Tweets part ?>
|
@@ -141,7 +141,7 @@ function wppsb_admin_options() {
|
|
141 |
<div class="wppsb_rss-widget">
|
142 |
<?php
|
143 |
/* Load the news content from Github url */
|
144 |
-
$news_content = wp_remote_fopen("https://
|
145 |
echo $news_content;
|
146 |
?>
|
147 |
</div> </td>
|
@@ -150,7 +150,7 @@ function wppsb_admin_options() {
|
|
150 |
<td width="51%" valign="top">
|
151 |
<?php
|
152 |
/* Load the referrals content from Github url */
|
153 |
-
$referrals_content = wp_remote_fopen("https://
|
154 |
echo $referrals_content;
|
155 |
?>
|
156 |
</td> </tr> </table>
|
128 |
<hr style="margin: 2em 0 1.5em 0;" />
|
129 |
<?php
|
130 |
// Promo - Ad contents
|
131 |
+
$promo_content = wp_remote_fopen("https://dipakgajjar.com/public/promos.html");
|
132 |
echo $promo_content;
|
133 |
?>
|
134 |
<?php // Bottom - News and Tweets part ?>
|
141 |
<div class="wppsb_rss-widget">
|
142 |
<?php
|
143 |
/* Load the news content from Github url */
|
144 |
+
$news_content = wp_remote_fopen("https://dipakgajjar.com/public/news-and-updates.html");
|
145 |
echo $news_content;
|
146 |
?>
|
147 |
</div> </td>
|
150 |
<td width="51%" valign="top">
|
151 |
<?php
|
152 |
/* Load the referrals content from Github url */
|
153 |
+
$referrals_content = wp_remote_fopen("https://dipakgajjar.com/public/recommendations.html");
|
154 |
echo $referrals_content;
|
155 |
?>
|
156 |
</td> </tr> </table>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dipakcg
|
|
3 |
Tags: performance, speed, time, query, strings, gzip, compression, caching, boost, pingdom, gtmetrix, yslow, pagespeed, enqueue, scripts
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3S8BRPLWLNQ38
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -46,6 +46,9 @@ Pretty much, yeah.
|
|
46 |
1. Admin Settings
|
47 |
|
48 |
== Changelog ==
|
|
|
|
|
|
|
49 |
= 1.7.1, February 10, 2017 =
|
50 |
* Improved recommendations area.
|
51 |
|
3 |
Tags: performance, speed, time, query, strings, gzip, compression, caching, boost, pingdom, gtmetrix, yslow, pagespeed, enqueue, scripts
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3S8BRPLWLNQ38
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.8
|
7 |
+
Stable tag: 1.7.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
46 |
1. Admin Settings
|
47 |
|
48 |
== Changelog ==
|
49 |
+
= 1.7.2, March 21, 2017 =
|
50 |
+
* Improved Promos, News and Updates, and recommendations area.
|
51 |
+
|
52 |
= 1.7.1, February 10, 2017 =
|
53 |
* Improved recommendations area.
|
54 |
|
wp-performance-score-booster.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Performance Score Booster
|
4 |
Plugin URI: https://github.com/dipakcg/wp-performance-score-booster
|
5 |
Description: Speed-up page load times and improve website scores in services like PageSpeed, YSlow, Pingdom and GTmetrix.
|
6 |
-
Version: 1.7.
|
7 |
Author: Dipak C. Gajjar
|
8 |
Author URI: https://dipakgajjar.com
|
9 |
Text Domain: wp-performance-score-booster
|
@@ -16,7 +16,7 @@ if (!defined('WPPSB_PLUGIN_VERSION')) {
|
|
16 |
define('WPPSB_PLUGIN_VERSION', 'wppsb_plugin_version');
|
17 |
}
|
18 |
if (!defined('WPPSB_PLUGIN_VERSION_NUM')) {
|
19 |
-
define('WPPSB_PLUGIN_VERSION_NUM', '1.7.
|
20 |
}
|
21 |
update_option(WPPSB_PLUGIN_VERSION, WPPSB_PLUGIN_VERSION_NUM);
|
22 |
|
3 |
Plugin Name: WP Performance Score Booster
|
4 |
Plugin URI: https://github.com/dipakcg/wp-performance-score-booster
|
5 |
Description: Speed-up page load times and improve website scores in services like PageSpeed, YSlow, Pingdom and GTmetrix.
|
6 |
+
Version: 1.7.2
|
7 |
Author: Dipak C. Gajjar
|
8 |
Author URI: https://dipakgajjar.com
|
9 |
Text Domain: wp-performance-score-booster
|
16 |
define('WPPSB_PLUGIN_VERSION', 'wppsb_plugin_version');
|
17 |
}
|
18 |
if (!defined('WPPSB_PLUGIN_VERSION_NUM')) {
|
19 |
+
define('WPPSB_PLUGIN_VERSION_NUM', '1.7.2');
|
20 |
}
|
21 |
update_option(WPPSB_PLUGIN_VERSION, WPPSB_PLUGIN_VERSION_NUM);
|
22 |
|