Version Description
- 16.07.2021 = Fixes: Adding replace string at bottom of the site.
Download this release
Release Info
Developer | giucu91 |
Plugin | Remove Footer Credit |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- readme.txt +4 -1
- remove-footer-credit.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: wpchill, silkalns
|
|
3 |
Tags: footer, credit, change, modify, replace, remove, link, HTML, text, remove footer credit
|
4 |
Requires at least: 5.2
|
5 |
Tested up to: 5.7
|
6 |
-
Stable tag: 1.0.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv3 or later
|
9 |
|
@@ -32,6 +32,9 @@ This plugin has very minimal options to keep things simple and easier to use. Yo
|
|
32 |
|
33 |
== Changelog ==
|
34 |
|
|
|
|
|
|
|
35 |
= 1.0.8 - 13.07.2021 =
|
36 |
Fixed: Plugin not replacing credits.
|
37 |
|
3 |
Tags: footer, credit, change, modify, replace, remove, link, HTML, text, remove footer credit
|
4 |
Requires at least: 5.2
|
5 |
Tested up to: 5.7
|
6 |
+
Stable tag: 1.0.9
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv3 or later
|
9 |
|
32 |
|
33 |
== Changelog ==
|
34 |
|
35 |
+
= 1.0.9 - 16.07.2021 =
|
36 |
+
Fixes: Adding replace string at bottom of the site.
|
37 |
+
|
38 |
= 1.0.8 - 13.07.2021 =
|
39 |
Fixed: Plugin not replacing credits.
|
40 |
|
remove-footer-credit.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Remove Footer Credit
|
4 |
* Description: A simple plugin to remove footer credits
|
5 |
-
* Version: 1.0.
|
6 |
* Author: WPChill
|
7 |
* Author URI: https://wpchill.com
|
8 |
* Requires: 5.2 or higher
|
@@ -217,7 +217,7 @@ function jabrfc_ob_call( $buffer ) { // $buffer contains entire page
|
|
217 |
$i ++;
|
218 |
}
|
219 |
}
|
220 |
-
return $buffer
|
221 |
}
|
222 |
|
223 |
function jabrfc_kses( $string ){
|
2 |
/**
|
3 |
* Plugin Name: Remove Footer Credit
|
4 |
* Description: A simple plugin to remove footer credits
|
5 |
+
* Version: 1.0.9
|
6 |
* Author: WPChill
|
7 |
* Author URI: https://wpchill.com
|
8 |
* Requires: 5.2 or higher
|
217 |
$i ++;
|
218 |
}
|
219 |
}
|
220 |
+
return $buffer;
|
221 |
}
|
222 |
|
223 |
function jabrfc_kses( $string ){
|