Insert Headers and Footers - Version 1.3.3

Version Description

  • Tested with WordPress 4.3
  • Fix: plugin_dir_path() and plugin_dir_url() used for Multisite / symlink support
Download this release

Release Info

Developer n7studios
Plugin Icon 128x128 Insert Headers and Footers
Version 1.3.3
Comparing to
See all releases

Code changes from version 1.3.2 to 1.3.3

ihaf.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Insert Headers and Footers
4
  * Plugin URI: http://www.wpbeginner.com/
5
- * Version: 1.3.2
6
  * Author: WPBeginner
7
  * Author URI: http://www.wpbeginner.com/
8
  * Description: Allows you to insert code or text in the header or footer of your WordPress blog
@@ -33,14 +33,15 @@ class InsertHeadersAndFooters {
33
  * Constructor
34
  */
35
  public function __construct() {
 
36
  // Plugin Details
37
- $this->plugin = new stdClass;
38
- $this->plugin->name = 'insert-headers-and-footers'; // Plugin Folder
39
- $this->plugin->displayName = 'Insert Headers and Footers'; // Plugin Name
40
- $this->plugin->version = '1.3.1';
41
- $this->plugin->folder = WP_PLUGIN_DIR.'/'.$this->plugin->name; // Full Path to Plugin Folder
42
- $this->plugin->url = WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__));
43
-
44
  // Dashboard Submodule
45
  if (!class_exists('WPBeginnerDashboardWidget')) {
46
  require_once($this->plugin->folder.'/_modules/dashboard/dashboard.php');
2
  /**
3
  * Plugin Name: Insert Headers and Footers
4
  * Plugin URI: http://www.wpbeginner.com/
5
+ * Version: 1.3.3
6
  * Author: WPBeginner
7
  * Author URI: http://www.wpbeginner.com/
8
  * Description: Allows you to insert code or text in the header or footer of your WordPress blog
33
  * Constructor
34
  */
35
  public function __construct() {
36
+
37
  // Plugin Details
38
+ $this->plugin = new stdClass;
39
+ $this->plugin->name = 'insert-headers-and-footers'; // Plugin Folder
40
+ $this->plugin->displayName = 'Insert Headers and Footers'; // Plugin Name
41
+ $this->plugin->version = '1.3.3';
42
+ $this->plugin->folder = plugin_dir_path( __FILE__ );
43
+ $this->plugin->url = plugin_dir_url( __FILE__ );
44
+
45
  // Dashboard Submodule
46
  if (!class_exists('WPBeginnerDashboardWidget')) {
47
  require_once($this->plugin->folder.'/_modules/dashboard/dashboard.php');
languages/insert-headers-and-footers.pot CHANGED
@@ -1,15 +1,15 @@
1
- # Copyright (C) 2014 Insert Headers and Footers
2
  # This file is distributed under the same license as the Insert Headers and Footers package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Insert Headers and Footers 1.3.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/insert-headers-and-"
7
  "footers\n"
8
- "POT-Creation-Date: 2014-08-28 13:05:10+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
1
+ # Copyright (C) 2015 Insert Headers and Footers
2
  # This file is distributed under the same license as the Insert Headers and Footers package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Insert Headers and Footers 1.3.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/insert-headers-and-"
7
  "footers\n"
8
+ "POT-Creation-Date: 2015-03-26 11:33:00+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Insert Headers and Footers ===
2
  Contributors: WPbeginner, iamdpegg, smub, n7studios
3
- Tags: header, footer, headers, footers, content, wpmu, meta, meta tags
4
  Requires at least: 3.6
5
- Tested up to: 4.0
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -36,6 +36,10 @@ Lastly, if you like this plugin then follow WPBeginner on:
36
 
37
  == Changelog ==
38
 
 
 
 
 
39
  = 1.3.2 =
40
  * Fix: Dashboard widget logo URL when RSS feed cannot be loaded
41
  * Fix: WordPress 4.0 support
1
  === Insert Headers and Footers ===
2
  Contributors: WPbeginner, iamdpegg, smub, n7studios
3
+ Tags: header, footer, headers, footers, content, wpmu, meta, meta tags, scripts, js, css, google analytics
4
  Requires at least: 3.6
5
+ Tested up to: 4.3
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
36
 
37
  == Changelog ==
38
 
39
+ = 1.3.3 =
40
+ * Tested with WordPress 4.3
41
+ * Fix: plugin_dir_path() and plugin_dir_url() used for Multisite / symlink support
42
+
43
  = 1.3.2 =
44
  * Fix: Dashboard widget logo URL when RSS feed cannot be loaded
45
  * Fix: WordPress 4.0 support