Meta Tag Manager - Version 0.5

Version Description

Download this release

Release Info

Developer netweblogic
Plugin Icon 128x128 Meta Tag Manager
Version 0.5
Comparing to
See all releases

Code changes from version 0.4 to 0.5

Files changed (2) hide show
  1. meta-tag-manager.php +7 -5
  2. readme.txt +2 -1
meta-tag-manager.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Meta Tag Manager
4
  Plugin URI: http://blog.netweblogic.com/php/wordpress-php/meta-tag-manager-wordpress-plugin/
5
  Description: A simple plugin to manage meta tags that appear on all your pages. This can be used for verifiying google, yahoo, and more.
6
  Author: NetWebLogic LLC
7
- Version: 0.4
8
  Author URI: http://blog.netweblogic.com
9
  */
10
  /*
@@ -112,10 +112,12 @@ function mtm_head() {
112
  $mtm_data = get_option('mtm_data');
113
  ?>
114
  <!-- Meta Manager Start -->
115
- <?php
116
- foreach( $mtm_data as $meta){
117
- ?>
118
- <meta name="<?= $meta[0] ?>" content="<?= $meta[1] ?>" /><?php
 
 
119
  }
120
  ?>
121
  <!-- Meta Manager End -->
4
  Plugin URI: http://blog.netweblogic.com/php/wordpress-php/meta-tag-manager-wordpress-plugin/
5
  Description: A simple plugin to manage meta tags that appear on all your pages. This can be used for verifiying google, yahoo, and more.
6
  Author: NetWebLogic LLC
7
+ Version: 0.5
8
  Author URI: http://blog.netweblogic.com
9
  */
10
  /*
112
  $mtm_data = get_option('mtm_data');
113
  ?>
114
  <!-- Meta Manager Start -->
115
+ <?php
116
+ if(is_array($mtm_data)){
117
+ foreach( $mtm_data as $meta){
118
+ ?>
119
+ <meta name="<?= $meta[0] ?>" content="<?= $meta[1] ?>" /><?php
120
+ }
121
  }
122
  ?>
123
  <!-- Meta Manager End -->
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: netweblogic
4
  Tags: Google, SEO, Yahoo, Webmaster Tools, Meta, Meta Tags
5
  Requires at least: 2.5
6
  Tested up to: 2.7.1
7
- Stable tag: 0.4
8
 
9
  This plugin will allow you to easily add and manage special meta tags to your whole site, such as Yahoo and Google verification tags.
10
 
@@ -20,6 +20,7 @@ If you find this plugin useful and would like to donate something, all we ask is
20
 
21
  Revision Summary
22
 
 
23
  * 0.4 - Fixed the bug where the rss feeds kept breaking
24
 
25
 
4
  Tags: Google, SEO, Yahoo, Webmaster Tools, Meta, Meta Tags
5
  Requires at least: 2.5
6
  Tested up to: 2.7.1
7
+ Stable tag: 0.5
8
 
9
  This plugin will allow you to easily add and manage special meta tags to your whole site, such as Yahoo and Google verification tags.
10
 
20
 
21
  Revision Summary
22
 
23
+ * 0.5 - Fixed bug which threw a Notice error when no meta tags were defined
24
  * 0.4 - Fixed the bug where the rss feeds kept breaking
25
 
26