All Meta Tags - Version 1.2

Version Description

  • Added the option for "Web of Trust" (WOT) verification.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 All Meta Tags
Version 1.2
Comparing to
See all releases

Code changes from version 1.1 to 1.2

Files changed (3) hide show
  1. all-meta-tags.php +6 -2
  2. inc/settings_page.php +6 -1
  3. readme.txt +8 -3
all-meta-tags.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: EASILY and SAFELY add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur "Berserkr" Gareginyan
7
  * Author URI: http://mycyberuniverse.com/author.html
8
- * Version: 1.1
9
  * License: GPL3
10
  * Text Domain: allmetatags
11
  * Domain Path: /languages/
@@ -163,7 +163,7 @@ function allmetatags_field($name, $label, $placeholder, $help=null, $link=null,
163
  /**
164
  * Generate the Meta Tags
165
  *
166
- * @since 1.1
167
  */
168
  function allmetatags_add_meta_tags() {
169
 
@@ -180,6 +180,7 @@ function allmetatags_add_meta_tags() {
180
  $facebook = esc_textarea( $options['facebook'] );
181
  $twitter = esc_textarea( $options['twitter'] );
182
  $norton = esc_textarea( $options['norton'] );
 
183
 
184
  $home_description = esc_textarea( $options['home_description'] );
185
  $home_keywords = esc_textarea( $options['home_keywords'] );
@@ -223,6 +224,9 @@ function allmetatags_add_meta_tags() {
223
  if (!empty($norton)) {
224
  $metatags_arr[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
225
  }
 
 
 
226
 
227
  // Meta Tags for Home Page only
228
  if (!empty($home_description)) {
5
  * Description: EASILY and SAFELY add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur "Berserkr" Gareginyan
7
  * Author URI: http://mycyberuniverse.com/author.html
8
+ * Version: 1.2
9
  * License: GPL3
10
  * Text Domain: allmetatags
11
  * Domain Path: /languages/
163
  /**
164
  * Generate the Meta Tags
165
  *
166
+ * @since 1.2
167
  */
168
  function allmetatags_add_meta_tags() {
169
 
180
  $facebook = esc_textarea( $options['facebook'] );
181
  $twitter = esc_textarea( $options['twitter'] );
182
  $norton = esc_textarea( $options['norton'] );
183
+ $wot = esc_textarea( $options['wot'] );
184
 
185
  $home_description = esc_textarea( $options['home_description'] );
186
  $home_keywords = esc_textarea( $options['home_keywords'] );
224
  if (!empty($norton)) {
225
  $metatags_arr[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
226
  }
227
+ if (!empty($wot)) {
228
+ $metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
229
+ }
230
 
231
  // Meta Tags for Home Page only
232
  if (!empty($home_description)) {
inc/settings_page.php CHANGED
@@ -8,7 +8,7 @@ defined('ABSPATH') or die("Restricted access!");
8
  /**
9
  * Render Settings Page
10
  *
11
- * @since 1.0
12
  */
13
  function allmetatags_render_submenu_page() {
14
 
@@ -154,6 +154,11 @@ function allmetatags_render_submenu_page() {
154
  '1234567890',
155
  'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” /&gt;',
156
  'https://safeweb.norton.com/help/site_owners');?>
 
 
 
 
 
157
  </table>
158
  <?php submit_button( __( 'Save Changes', 'allmetatags' ), 'primary', 'submit', true ); ?>
159
  </div>
8
  /**
9
  * Render Settings Page
10
  *
11
+ * @since 1.2
12
  */
13
  function allmetatags_render_submenu_page() {
14
 
154
  '1234567890',
155
  'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” /&gt;',
156
  'https://safeweb.norton.com/help/site_owners');?>
157
+ <?php allmetatags_field('wot',
158
+ 'Web of Trust (WOT)',
159
+ '1234567890',
160
+ 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="wot-verification" content=“<b>1234567890</b>” /&gt;',
161
+ 'https://www.mywot.com/wiki/Verify_your_website');?>
162
  </table>
163
  <?php submit_button( __( 'Save Changes', 'allmetatags' ), 'primary', 'submit', true ); ?>
164
  </div>
readme.txt CHANGED
@@ -1,14 +1,14 @@
1
  === All Meta Tags ===
2
  Contributors: Arthur Gareginyan
3
- Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, google+, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.3
7
- Stable tag: 1.0
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- EASILY add your Meta Tags to the WordPress website's head section.
12
 
13
  == Description ==
14
  An easy to use WordPress plugin that gives you the ability to EASILY add your Meta Tags to the head section of your website.
@@ -33,6 +33,7 @@ Also you can use this plugin to add required meta tags such as Author, Designer,
33
  * Google Web Master Tools verification meta tag.
34
  * Bing Web Master Tools verification meta tag.
35
  * Yandex Web Master Tools verification meta tag.
 
36
  * Meta tag with name="author".
37
  * Meta tag with name="designer".
38
  * Meta tag with name="contact".
@@ -136,6 +137,8 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
136
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
137
 
138
  == Changelog ==
 
 
139
  = 1.1 =
140
  * Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
141
  = 1.0 =
@@ -149,6 +152,8 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
149
 
150
 
151
  == Upgrade Notice ==
 
 
152
  = 1.1 =
153
  * Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
154
  = 1.0 =
1
  === All Meta Tags ===
2
  Contributors: Arthur Gareginyan
3
+ Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, google+, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.3
7
+ Stable tag: 1.2
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ EASILY add your Meta Tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
12
 
13
  == Description ==
14
  An easy to use WordPress plugin that gives you the ability to EASILY add your Meta Tags to the head section of your website.
33
  * Google Web Master Tools verification meta tag.
34
  * Bing Web Master Tools verification meta tag.
35
  * Yandex Web Master Tools verification meta tag.
36
+ * Web of Trust (WOT) verification meta tag.
37
  * Meta tag with name="author".
38
  * Meta tag with name="designer".
39
  * Meta tag with name="contact".
137
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
138
 
139
  == Changelog ==
140
+ = 1.2 =
141
+ * Added the option for "Web of Trust" (WOT) verification.
142
  = 1.1 =
143
  * Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
144
  = 1.0 =
152
 
153
 
154
  == Upgrade Notice ==
155
+ = 1.2 =
156
+ * Added the option for "Web of Trust" (WOT) verification.
157
  = 1.1 =
158
  * Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
159
  = 1.0 =