Version Description
Download this release
Release Info
Developer | wokamoto |
Plugin | Head Cleaner |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- head-cleaner.php +5 -2
- readme.txt +4 -1
head-cleaner.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Head Cleaner
|
4 |
-
Version: 1.4.
|
5 |
Plugin URI: http://wppluginsj.sourceforge.jp/head-cleaner/
|
6 |
Description: Cleaning tags from your WordPress header and footer.
|
7 |
Author: wokamoto
|
@@ -12,7 +12,7 @@ Domain Path: /languages/
|
|
12 |
License:
|
13 |
Released under the GPL license
|
14 |
http://www.gnu.org/copyleft/gpl.html
|
15 |
-
Copyright 2009 -
|
16 |
|
17 |
This program is free software; you can redistribute it and/or modify
|
18 |
it under the terms of the GNU General Public License as published by
|
@@ -2892,6 +2892,9 @@ jQuery(function($){
|
|
2892 |
? (array) $wp_filter[$tag]
|
2893 |
: array());
|
2894 |
foreach ($active_filters as $priority => $filters) {
|
|
|
|
|
|
|
2895 |
foreach ($filters as $filter) {
|
2896 |
$function_name = $this->_get_function_name($filter['function']);
|
2897 |
if ( $this->function_enabled($function_name) ) {
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Head Cleaner
|
4 |
+
Version: 1.4.4
|
5 |
Plugin URI: http://wppluginsj.sourceforge.jp/head-cleaner/
|
6 |
Description: Cleaning tags from your WordPress header and footer.
|
7 |
Author: wokamoto
|
12 |
License:
|
13 |
Released under the GPL license
|
14 |
http://www.gnu.org/copyleft/gpl.html
|
15 |
+
Copyright 2009 - 2017 wokamoto (email : wokamoto1973@gmail.com)
|
16 |
|
17 |
This program is free software; you can redistribute it and/or modify
|
18 |
it under the terms of the GNU General Public License as published by
|
2892 |
? (array) $wp_filter[$tag]
|
2893 |
: array());
|
2894 |
foreach ($active_filters as $priority => $filters) {
|
2895 |
+
if (!is_array($filters)) {
|
2896 |
+
continue;
|
2897 |
+
}
|
2898 |
foreach ($filters as $filter) {
|
2899 |
$function_name = $this->_get_function_name($filter['function']);
|
2900 |
if ( $this->function_enabled($function_name) ) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9S8AJ
|
|
4 |
Tags: head, header, footer, javascript, css, optimization, minified, performance, facebook, OGP
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.4.
|
8 |
|
9 |
Cleaning tags from your WordPress header and footer.
|
10 |
|
@@ -94,6 +94,9 @@ Head Cleaner Ver.1.1.5 includes 'php_browscap.ini' .
|
|
94 |
|
95 |
== Changelog ==
|
96 |
|
|
|
|
|
|
|
97 |
**1.4.3 - December 22, 2015**
|
98 |
Support WordPress 4.4.
|
99 |
Thx [msng](http://www.msng.info/)
|
4 |
Tags: head, header, footer, javascript, css, optimization, minified, performance, facebook, OGP
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.4.4
|
8 |
|
9 |
Cleaning tags from your WordPress header and footer.
|
10 |
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
**1.4.4 - Janualy 18, 2017**
|
98 |
+
Support WordPress 4.7
|
99 |
+
|
100 |
**1.4.3 - December 22, 2015**
|
101 |
Support WordPress 4.4.
|
102 |
Thx [msng](http://www.msng.info/)
|