Version Description
- Fixed bug reported by users.
Download this release
Release Info
Developer | Crunchify |
Plugin | All in One Webmaster |
Version | 15.5.2 |
Comparing to | |
See all releases |
Code changes from version 15.5 to 15.5.2
- all-in-one-webmaster-premium.php +31 -58
- pages/aiow-premium-google-authorship.php +0 -58
- pages/aiow-premium-misc.php +0 -47
- pages/aiow-premium-right-homepage.php +1 -19
- pages/aiow-premium-right-otherplugins.php +0 -19
- pages/aiow-premium-sitemap.php +0 -44
- readme.txt +8 -164
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-5.png +0 -0
all-in-one-webmaster-premium.php
CHANGED
@@ -1,21 +1,17 @@
|
|
1 |
<?PHP
|
2 |
/**
|
3 |
-
* WP Webmaster is the best webmaster plugin for WordPress
|
4 |
-
* that adds Meta-Tags and Scripts to your Site's Header and Footer Section
|
5 |
-
* automatically without changing any of your themes file and
|
6 |
-
* without slowing down your site.
|
7 |
*
|
8 |
* @package WP Webmaster
|
9 |
* @author Crunchify
|
10 |
* @license GPL-2.0+
|
11 |
-
* @link https://crunchify.com/all-in-one-webmaster/
|
12 |
* @copyright 2020 Crunchify, LLC. All rights reserved.
|
13 |
*
|
14 |
* @wordpress-plugin
|
15 |
* Plugin Name: WP Webmaster
|
16 |
* Plugin URI: https://crunchify.com/all-in-one-webmaster/
|
17 |
* Description: WP Webmaster is the best webmaster plugin for WordPress that adds Meta-Tags and Scripts to your Site's Header and Footer Section automatically without changing any of your themes file and without slowing down your site.
|
18 |
-
* Version: 15.5
|
19 |
* Author: Crunchify
|
20 |
* Author URI: https://crunchify.com/
|
21 |
* Text Domain: all-in-one-webmaster
|
@@ -24,10 +20,6 @@
|
|
24 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
|
25 |
*/
|
26 |
|
27 |
-
/*
|
28 |
-
* Copyright (C) 2012-2016 Crunchify.com This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
29 |
-
*/
|
30 |
-
|
31 |
/**
|
32 |
* Setup plugin.
|
33 |
*/
|
@@ -36,25 +28,6 @@
|
|
36 |
* How to change Logo URL Link for any WordPress themes? (including Genesis Themes)
|
37 |
*
|
38 |
*/
|
39 |
-
function crunchify_custom_logo_url ( $crunchify_logo_html ) {
|
40 |
-
|
41 |
-
$crunchify_custom_logo_id = get_theme_mod( 'custom_logo' );
|
42 |
-
|
43 |
-
// Make sure to replace your updated site URL
|
44 |
-
$crunchify_new_url = 'https://crunchify.com';
|
45 |
-
|
46 |
-
$crunchify_logo_html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',
|
47 |
-
esc_url( $crunchify_new_url ),
|
48 |
-
wp_get_attachment_image( $crunchify_custom_logo_id, 'full', false, array(
|
49 |
-
'class' => 'custom-logo',
|
50 |
-
) )
|
51 |
-
);
|
52 |
-
return $crunchify_logo_html;
|
53 |
-
}
|
54 |
-
|
55 |
-
// get_custom_logo: Returns a custom logo, linked to home unless the theme supports removing the link on the home page.
|
56 |
-
add_filter( 'get_custom_logo', 'crunchify_custom_logo_url' );
|
57 |
-
|
58 |
|
59 |
class aiow_premium {
|
60 |
|
@@ -65,7 +38,7 @@ class aiow_premium {
|
|
65 |
*
|
66 |
* @var string
|
67 |
*/
|
68 |
-
protected $version = '15.5';
|
69 |
|
70 |
/**
|
71 |
* The name of the plugin.
|
@@ -123,24 +96,24 @@ class aiow_premium {
|
|
123 |
// Output Analytics
|
124 |
$analytics = get_option ( 'aiow_premium_options' );
|
125 |
add_action ( 'wp_footer', array (
|
126 |
-
|
127 |
-
|
128 |
), 1000 );
|
129 |
add_action ( 'wp_head', array (
|
130 |
-
|
131 |
-
|
132 |
), 2 );
|
133 |
|
134 |
// Settings page
|
135 |
add_action ( 'admin_menu', array (
|
136 |
-
|
137 |
-
|
138 |
) );
|
139 |
|
140 |
// Settings page
|
141 |
add_action ( 'admin_menu', array (
|
142 |
-
|
143 |
-
|
144 |
) );
|
145 |
}
|
146 |
|
@@ -239,7 +212,7 @@ class aiow_premium {
|
|
239 |
$google_authorship_profile_meta = '<link rel="author" href="' . $google_authorship_profile . '">';
|
240 |
echo $google_authorship_profile_meta . "\n";
|
241 |
}
|
242 |
-
|
243 |
if (! ($google_authorship_page == "")) {
|
244 |
$google_authorship_page_meta = '<link rel="publisher" href="' . $google_authorship_page . '">';
|
245 |
echo $google_authorship_page_meta . "\n";
|
@@ -394,8 +367,8 @@ function all_in_one_premium_webmaster_sitemap_submit($sitemap_URL1, $search_engi
|
|
394 |
$finalMessage = $NOPE_MSG . 'search_engine error';
|
395 |
}
|
396 |
return array (
|
397 |
-
|
398 |
-
|
399 |
);
|
400 |
}
|
401 |
|
@@ -428,19 +401,19 @@ function all_in_one_premium_save_all_options() {
|
|
428 |
else {
|
429 |
$webmasterlink = array (
|
430 |
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
);
|
445 |
|
446 |
$show_sitemap .= '<div id="message" class="updated fade"><p>';
|
@@ -550,10 +523,10 @@ function all_in_one_premium_save_all_options() {
|
|
550 |
|
551 |
$priority = array ();
|
552 |
$excl_array = array (
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
);
|
558 |
foreach ( $_POST as $i => $v ) {
|
559 |
if (! in_array ( $i, $excl_array ))
|
1 |
<?PHP
|
2 |
/**
|
|
|
|
|
|
|
|
|
3 |
*
|
4 |
* @package WP Webmaster
|
5 |
* @author Crunchify
|
6 |
* @license GPL-2.0+
|
7 |
+
* @link https://crunchify.com/all-in-one-webmaster/
|
8 |
* @copyright 2020 Crunchify, LLC. All rights reserved.
|
9 |
*
|
10 |
* @wordpress-plugin
|
11 |
* Plugin Name: WP Webmaster
|
12 |
* Plugin URI: https://crunchify.com/all-in-one-webmaster/
|
13 |
* Description: WP Webmaster is the best webmaster plugin for WordPress that adds Meta-Tags and Scripts to your Site's Header and Footer Section automatically without changing any of your themes file and without slowing down your site.
|
14 |
+
* Version: 15.5.2
|
15 |
* Author: Crunchify
|
16 |
* Author URI: https://crunchify.com/
|
17 |
* Text Domain: all-in-one-webmaster
|
20 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
|
21 |
*/
|
22 |
|
|
|
|
|
|
|
|
|
23 |
/**
|
24 |
* Setup plugin.
|
25 |
*/
|
28 |
* How to change Logo URL Link for any WordPress themes? (including Genesis Themes)
|
29 |
*
|
30 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
class aiow_premium {
|
33 |
|
38 |
*
|
39 |
* @var string
|
40 |
*/
|
41 |
+
protected $version = '15.5.2';
|
42 |
|
43 |
/**
|
44 |
* The name of the plugin.
|
96 |
// Output Analytics
|
97 |
$analytics = get_option ( 'aiow_premium_options' );
|
98 |
add_action ( 'wp_footer', array (
|
99 |
+
$this,
|
100 |
+
'aiow_premium_footer'
|
101 |
), 1000 );
|
102 |
add_action ( 'wp_head', array (
|
103 |
+
$this,
|
104 |
+
'aiow_premium_header'
|
105 |
), 2 );
|
106 |
|
107 |
// Settings page
|
108 |
add_action ( 'admin_menu', array (
|
109 |
+
$this,
|
110 |
+
'aiow_premium_menupage'
|
111 |
) );
|
112 |
|
113 |
// Settings page
|
114 |
add_action ( 'admin_menu', array (
|
115 |
+
$this,
|
116 |
+
'aiow_premium_load_css_js'
|
117 |
) );
|
118 |
}
|
119 |
|
212 |
$google_authorship_profile_meta = '<link rel="author" href="' . $google_authorship_profile . '">';
|
213 |
echo $google_authorship_profile_meta . "\n";
|
214 |
}
|
215 |
+
|
216 |
if (! ($google_authorship_page == "")) {
|
217 |
$google_authorship_page_meta = '<link rel="publisher" href="' . $google_authorship_page . '">';
|
218 |
echo $google_authorship_page_meta . "\n";
|
367 |
$finalMessage = $NOPE_MSG . 'search_engine error';
|
368 |
}
|
369 |
return array (
|
370 |
+
$source,
|
371 |
+
$finalMessage
|
372 |
);
|
373 |
}
|
374 |
|
401 |
else {
|
402 |
$webmasterlink = array (
|
403 |
|
404 |
+
'goo' => array (
|
405 |
+
'webmaster_engine' => 'Google',
|
406 |
+
'search_engine' => 'https://www.google.com/webmasters/sitemaps/ping?sitemap=',
|
407 |
+
'OKmessage' => 'Sitemap Notification Received',
|
408 |
+
'NOmessage' => 'Bad Request'
|
409 |
+
),
|
410 |
+
|
411 |
+
'bin' => array (
|
412 |
+
'webmaster_engine' => 'Bing',
|
413 |
+
'search_engine' => 'https://www.bing.com/webmaster/ping.aspx?siteMap=',
|
414 |
+
'OKmessage' => 'Thanks for submitting your sitemap',
|
415 |
+
'NOmessage' => 'Bad Request'
|
416 |
+
)
|
417 |
);
|
418 |
|
419 |
$show_sitemap .= '<div id="message" class="updated fade"><p>';
|
523 |
|
524 |
$priority = array ();
|
525 |
$excl_array = array (
|
526 |
+
'option_page',
|
527 |
+
'action',
|
528 |
+
'_wpnonce',
|
529 |
+
'_wp_http_referer'
|
530 |
);
|
531 |
foreach ( $_POST as $i => $v ) {
|
532 |
if (! in_array ( $i, $excl_array ))
|
pages/aiow-premium-google-authorship.php
DELETED
@@ -1,58 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* @author Crunchify.com
|
4 |
-
* Plugin: WP Webmaster
|
5 |
-
* URL: https://crunchify.com/all-in-one-webmaster/
|
6 |
-
*/
|
7 |
-
?>
|
8 |
-
|
9 |
-
<?php
|
10 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-header.php');
|
11 |
-
?>
|
12 |
-
|
13 |
-
<div class="postbox">
|
14 |
-
<h3>Google Authorship Options</h3>
|
15 |
-
<div>
|
16 |
-
<table class="form-table">
|
17 |
-
|
18 |
-
<tr valign="top" class="alternate">
|
19 |
-
<th scope="row" style="width: 32%;"><label>1) Google Authorship
|
20 |
-
Profile</label></th>
|
21 |
-
<td><input id="styled"
|
22 |
-
name="all_in_one_premium_google_authorship_profile" type="text"
|
23 |
-
size="60"
|
24 |
-
value="<?php echo get_option('all_in_one_premium_google_authorship_profile'); ?>" />
|
25 |
-
<br />Copy your Google+ profile link and paste it here<br />
|
26 |
-
<p>NOTE: Just supports single author blog. Please leave it blank for multiauthor blog.</p></td>
|
27 |
-
</tr>
|
28 |
-
|
29 |
-
<tr valign="top">
|
30 |
-
<th scope="row" style="width: 32%;"><label>2) Google Authorship Page</label></th>
|
31 |
-
<td><input id="styled"
|
32 |
-
name="all_in_one_premium_google_authorship_page" type="text"
|
33 |
-
size="60"
|
34 |
-
value="<?php echo get_option('all_in_one_premium_google_authorship_page'); ?>" />
|
35 |
-
<?=$aiow_quantcast_ana?>
|
36 |
-
<br />If you have a Google+ page for your business,
|
37 |
-
add that URL here and link it on your Google+ page's about page.<br />
|
38 |
-
</td>
|
39 |
-
</tr>
|
40 |
-
|
41 |
-
</table>
|
42 |
-
</div>
|
43 |
-
</div>
|
44 |
-
|
45 |
-
<div class="submit">
|
46 |
-
<input name="my_aiowz_update_setting" type="hidden"
|
47 |
-
value="<?php echo wp_create_nonce('aiowz-update-setting'); ?>" /> <input
|
48 |
-
type="submit" name="update_google_authorship" class="button-primary"
|
49 |
-
value="<?php _e('Update options'); ?> »" />
|
50 |
-
|
51 |
-
</div>
|
52 |
-
</div>
|
53 |
-
</form>
|
54 |
-
|
55 |
-
<?php
|
56 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-right-column.php');
|
57 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-footer.php');
|
58 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/aiow-premium-misc.php
DELETED
@@ -1,47 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* @author Crunchify.com
|
4 |
-
* Plugin: WP Webmaster
|
5 |
-
* URL: https://crunchify.com/all-in-one-webmaster/
|
6 |
-
*/
|
7 |
-
?>
|
8 |
-
|
9 |
-
<?php
|
10 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-header.php');
|
11 |
-
?>
|
12 |
-
|
13 |
-
<div class="postbox">
|
14 |
-
<h3>Misc Options</h3>
|
15 |
-
|
16 |
-
<div>
|
17 |
-
<table class="form-table">
|
18 |
-
|
19 |
-
<tr valign="top" class="alternate">
|
20 |
-
<th scope="row" style="width: 32%;"><label>1) <b>Add Site Favicon
|
21 |
-
Link</label></th>
|
22 |
-
<td><input id="styled" name="all_in_one_premium_favicon" type="text"
|
23 |
-
size="55"
|
24 |
-
value="<?php echo get_option('all_in_one_premium_favicon'); ?>" />
|
25 |
-
<?=$aiow_google_ana?>
|
26 |
-
<br />Sample Link: https://crunchify.com/favicon.ico<br />
|
27 |
-
</td>
|
28 |
-
</tr>
|
29 |
-
|
30 |
-
</table>
|
31 |
-
</div>
|
32 |
-
</div>
|
33 |
-
|
34 |
-
<div class="submit">
|
35 |
-
<input name="my_aiowz_update_setting" type="hidden"
|
36 |
-
value="<?php echo wp_create_nonce('aiowz-update-setting'); ?>" /> <input
|
37 |
-
type="submit" name="update_misc" class="button-primary"
|
38 |
-
value="<?php _e('Update options'); ?> »" />
|
39 |
-
|
40 |
-
</div>
|
41 |
-
</div>
|
42 |
-
</form>
|
43 |
-
|
44 |
-
<?php
|
45 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-right-column.php');
|
46 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-footer.php');
|
47 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/aiow-premium-right-homepage.php
CHANGED
@@ -3,22 +3,4 @@
|
|
3 |
* @author Crunchify.com
|
4 |
* Plugin: WP Webmaster
|
5 |
*/
|
6 |
-
?>
|
7 |
-
|
8 |
-
<br>
|
9 |
-
<div id="side-info-column" class="inner-sidebar">
|
10 |
-
<div class="postbox">
|
11 |
-
<h3 class="hndle">
|
12 |
-
<span>Now with few Premium Features</span>
|
13 |
-
</h3>
|
14 |
-
|
15 |
-
<div class="inside">
|
16 |
-
<ul>
|
17 |
-
<div align="left">
|
18 |
-
<a href="https://crunchify.com/all-in-one-webmaster/"
|
19 |
-
target="_blank">More Info...</a>
|
20 |
-
</div>
|
21 |
-
</ul>
|
22 |
-
</div>
|
23 |
-
</div>
|
24 |
-
</div>
|
3 |
* @author Crunchify.com
|
4 |
* Plugin: WP Webmaster
|
5 |
*/
|
6 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/aiow-premium-right-otherplugins.php
CHANGED
@@ -5,22 +5,3 @@
|
|
5 |
*/
|
6 |
?>
|
7 |
|
8 |
-
<br>
|
9 |
-
<div id="side-info-column" class="inner-sidebar">
|
10 |
-
<div class="postbox">
|
11 |
-
<h3 class="hndle">
|
12 |
-
<span>List of All Features</span>
|
13 |
-
</h3>
|
14 |
-
|
15 |
-
<div class="inside">
|
16 |
-
<ul>
|
17 |
-
<li>1) Analytics Options</li>
|
18 |
-
<li>2) Webmaster Options</li>
|
19 |
-
<li>3) Google Authorship Options</li>
|
20 |
-
<li>4) Header / Footer Section</li>
|
21 |
-
<li>5) Misc Options - Add Global Site Favicon Option</li>
|
22 |
-
<li>6) Sitemap submission to Google / Bing Webmaster</li>
|
23 |
-
</ul>
|
24 |
-
</div>
|
25 |
-
</div>
|
26 |
-
</div>
|
5 |
*/
|
6 |
?>
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/aiow-premium-sitemap.php
DELETED
@@ -1,44 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* @author Crunchify.com
|
4 |
-
* Plugin: WP Webmaster
|
5 |
-
* URL: https://crunchify.com/all-in-one-webmaster/
|
6 |
-
*/
|
7 |
-
?>
|
8 |
-
|
9 |
-
<?php
|
10 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-header.php');
|
11 |
-
?>
|
12 |
-
|
13 |
-
<div class="postbox">
|
14 |
-
<h3>Automatic sitemap submission to Google and Bing</h3>
|
15 |
-
|
16 |
-
<div>
|
17 |
-
<table class="form-table">
|
18 |
-
<tr valign="top" class="alternate">
|
19 |
-
<th scope="row" style="width: 29%;"><label>Please provide existing
|
20 |
-
Sitemap URL</label></th>
|
21 |
-
<td><input name="sitemap_URL" type="text" size="75"
|
22 |
-
value="<?php echo get_option('sitemap_URL'); ?>" /> <br />
|
23 |
-
(example: https://example.com/sitemap.xml)</td>
|
24 |
-
</tr>
|
25 |
-
</table>
|
26 |
-
</div>
|
27 |
-
</div>
|
28 |
-
|
29 |
-
<div class="submit">
|
30 |
-
<input name="my_aiowz_update_setting" type="hidden"
|
31 |
-
value="<?php echo wp_create_nonce('aiowz-update-setting'); ?>" /> <input
|
32 |
-
type="submit" name="update_sitemap" class="button-primary"
|
33 |
-
value="<?php _e('Submit to Google and Bing'); ?> »" />
|
34 |
-
|
35 |
-
</div>
|
36 |
-
</div>
|
37 |
-
|
38 |
-
<?=$show_sitemap?>
|
39 |
-
</form>
|
40 |
-
|
41 |
-
<?php
|
42 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-right-column.php');
|
43 |
-
require_once (dirname ( __FILE__ ) . '/aiow-premium-footer.php');
|
44 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,39 +1,20 @@
|
|
1 |
=== WP Webmaster ===
|
2 |
Contributors: Crunchify
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8ZF6WATLYFELQ
|
4 |
-
Tags: WP Webmaster
|
5 |
Requires at least: 5.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 15.5
|
8 |
-
|
9 |
-
Sitemap submission to Google & Bing. Webmaster option 4 Google,Bing,Facebook,etc. Analytics option 4 Google, Quantcast, Clicky, Compete
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
This is very Simple but Powerful WP Webmaster Tool for All WordPress Users. It adds your requested meta tags into header and java script code to footer of your blog. This plugin allows you to easily integrate them with your blog. It has option to add Google, Bing, Alexa, Blog Catalog, Yahoo's Webmaster and Analytics code (meat tags). Single click sitemap submission to Google and Bing. In addition to that it has option to add tracking code for Clicky, Quantcast, Compete.com, SiteMeter.com analytics!! Site-Verification-Option, Google XML sitemap submission. There are more to come in next releases.
|
16 |
-
|
17 |
-
Subscribe to <a href="https://twitter.com/Crunchify">Twitter</a> and <a href="https://www.facebook.com/Crunchify">Facebook</a> to get **latest update**
|
18 |
-
|
19 |
-
> <strong>Bug Reports and Contribution</strong><br><br>
|
20 |
-
> Bug reports for WP Webmaster are [welcomed on GitHub](https://github.com/Crunchify/All-in-One-Webmaster). Please note GitHub is _not_ a support forum and issues that aren't properly qualified as bugs will be closed.
|
21 |
-
|
22 |
-
[Feedback](https://crunchify.com/all-in-one-webmaster/) |
|
23 |
-
[Screenshots - Admin Panel and Preview](http://wordpress.org/extend/plugins/all-in-one-webmaster/screenshots/)
|
24 |
|
25 |
**Features**
|
26 |
|
27 |
* Brand new dedicated plugin menu
|
28 |
* Facebook page insights, admin insights, app insights options
|
29 |
-
*
|
30 |
-
* Google Tag Manager Integration (New in v10.1)
|
31 |
-
* Header / Footer Section
|
32 |
-
* Misc Options - Add Global Site Favicon Option
|
33 |
-
* Now no need to install more plugins. You can just copy the code of any services in a textarea. No more things to do.
|
34 |
-
* NEW: Updates the Asynchronous Tracking snippet to the latest version provided by Google
|
35 |
-
* Warning/Success/Failure messages on sitemap submission
|
36 |
-
* [Feedback](https://crunchify.com/all-in-one-webmaster/)
|
37 |
|
38 |
**Analytics Option for**
|
39 |
|
@@ -52,7 +33,7 @@ Subscribe to <a href="https://twitter.com/Crunchify">Twitter</a> and <a href="ht
|
|
52 |
5. Alexa Ranks
|
53 |
6. BlogCatalog
|
54 |
7. Facebook Insights
|
55 |
-
8. Google Tag manager
|
56 |
|
57 |
== Installation ==
|
58 |
1. Unpack the `download-package`.
|
@@ -61,144 +42,7 @@ Subscribe to <a href="https://twitter.com/Crunchify">Twitter</a> and <a href="ht
|
|
61 |
4. Configure the options under Admin Panel `AIO Webmaster -> List of all Options`.
|
62 |
5. Done and Ready.
|
63 |
|
64 |
-
== Frequently Asked Questions ==
|
65 |
-
|
66 |
-
= How do I find respective META-tags? =
|
67 |
-
* Visit these tutorials for: <a href="https://crunchify.com/how-to-find-google-webmaster-meta-tag-value-for-all-in-one-webmaster-premium/">Google Webmaster Meta Tag</a>, <a href="https://crunchify.com/how-to-find-bing-webmaster-metatag-value-to-verify-ownership-of-your-site/">Bing Webmaster Meta Tag</a>, <a href="https://crunchify.com/how-to-find-alexa-rank-meta-tag-value-for-all-in-one-webmaster-premium/">Alexa Rank Meta Tag</a>.
|
68 |
-
|
69 |
-
= Where should I put Google, Bing, Yahoo Webmaster, etc META-tags? =
|
70 |
-
* Visit links provided in `Settings -> WP Webmaster` to get your META tag. This is an easiest way to authenticate your sites.
|
71 |
-
|
72 |
-
= Google Analytics Account ID =
|
73 |
-
* Find an Account ID, starting with UA- in your Google Analytics's Account overview page.
|
74 |
-
|
75 |
-
= I have updated all my options but why am I not able to authenticate to site or don't see analytics? =
|
76 |
-
* I assume that `wp_head()` and `wp_footer()` are there in your theme. According to the WordPress documentation both functions are theme-dependent which means that it is up to the author of each WordPress theme to include it. If one of the hooks is not in your theme, you could add it yourself by adding `<? php wp_head(); ?>` to your header.php file of your theme or `<? php wp_footer(); ?>` to footer.php.
|
77 |
-
|
78 |
-
= Where do I get latest updates on plugin? =
|
79 |
-
* On <a href="http://twitter.com/Crunchify" target="_blank">Twitter</a> and <a href="http://www.facebook.com/Crunchify" target="_blank">Facebook</a>.
|
80 |
-
|
81 |
-
= How can I add more service meta tags which are not listed here? =
|
82 |
-
* No worries. You can add those service's HTML code into text area provided in admin panel.
|
83 |
-
|
84 |
-
= Got a Question? =
|
85 |
-
* Please report your questions or bugs at Plugin <a href="https://crunchify.com/all-in-one-webmaster/" target="_blank">Homepage</a>.
|
86 |
-
|
87 |
-
== Screenshots ==
|
88 |
-
1. All New WP Webmaster Main Menu
|
89 |
-
2. Webmaster Options
|
90 |
-
3. Analytics Options
|
91 |
-
4. Google Authorship Options
|
92 |
-
5. Header / Footer Section
|
93 |
-
6. Sitemap Submission to Google / Bing
|
94 |
-
7. Favicon for your Blog Option
|
95 |
-
|
96 |
== Changelog ==
|
97 |
|
98 |
-
= 15.5 =
|
99 |
-
* Fixed
|
100 |
-
* Performance improvements and bug fixes.
|
101 |
-
* Compatibility with WordPress 5.5.1
|
102 |
-
|
103 |
-
= 15.1 =
|
104 |
-
* Performance improvements and bug fixes
|
105 |
-
* Compatibility with WP 5.3
|
106 |
-
|
107 |
-
= 15.0 =
|
108 |
-
* Compatibility with WP 5.0
|
109 |
-
|
110 |
-
= 14.0 =
|
111 |
-
* Compatibility with WP 4.9.6
|
112 |
-
|
113 |
-
= 13.1 =
|
114 |
-
* Favicon icon changed
|
115 |
-
* Compatibility with WP 4.8.1
|
116 |
-
|
117 |
-
= 13.0 =
|
118 |
-
* Fixed broken link.
|
119 |
-
* Compatibility with WP 4.8
|
120 |
-
|
121 |
-
= 12.0 =
|
122 |
-
* Security update. Thanks Touhid Shaikh for reporting bug.
|
123 |
-
|
124 |
-
= 11.0 =
|
125 |
-
* Compatibility with upcoming WP release 4.7.2
|
126 |
-
|
127 |
-
= 10.0 =
|
128 |
-
* Compatibility with upcoming WP release 4.7
|
129 |
-
|
130 |
-
= 9.9.1 =
|
131 |
-
* Compatibility with upcoming WP release 4.5
|
132 |
-
|
133 |
-
= 9.8 =
|
134 |
-
* Minor Bug fixes
|
135 |
-
* Compatibility with WordPress 4.3 beta-3
|
136 |
-
* Admin panel update
|
137 |
-
|
138 |
-
= 9.7 =
|
139 |
-
* Minor Bug fixes
|
140 |
-
* Compatibility with WordPress 4.1
|
141 |
-
|
142 |
-
= 9.6 =
|
143 |
-
* New: Pinterest Meta-Tag Verification Added.
|
144 |
-
* Bug fixes
|
145 |
-
|
146 |
-
= 9.5 =
|
147 |
-
* New: Yandex Meta-Tag Verification Added. Russian biggest search engine.
|
148 |
-
* Minor bug fixes
|
149 |
-
|
150 |
-
= 9.4 =
|
151 |
-
* Compatibility with WordPress 4.0
|
152 |
-
|
153 |
-
= 9.3 =
|
154 |
-
* Google Analytics code change as per official change. Now no need to specify domain name.
|
155 |
-
* [More Info](https://crunchify.com/all-in-one-webmaster/)
|
156 |
-
|
157 |
-
= 9.2 =
|
158 |
-
* Bug fixes
|
159 |
-
* Compatibility with WordPress 3.9.1
|
160 |
-
|
161 |
-
= 9.1 =
|
162 |
-
* Number of Bug fixes
|
163 |
-
|
164 |
-
= 9.0 =
|
165 |
-
* Major Plugin Updated with all below additional options. You may need to fill all options again as this upgrade went through major design change.
|
166 |
-
* With Popular Demand added back Header / Footer Section
|
167 |
-
* Google Authorship Options
|
168 |
-
* Add Favicon to your Site Option
|
169 |
-
* Submit Sitemaps to Google / Bing Option
|
170 |
-
* Google Tag Manager - Digital marketing made (much) easier - Verification Script Added
|
171 |
-
* Fixed duplicate Facebook Insight Option
|
172 |
-
* Additional CSS files removed
|
173 |
-
* Additional JS files removed
|
174 |
-
* Better Initialization of Plugin
|
175 |
-
* Speed Boost-Up with code refactoring
|
176 |
-
* Lots of Bug fixes
|
177 |
-
* [More Info](https://crunchify.com/all-in-one-webmaster/)
|
178 |
-
|
179 |
-
= 8.3.1 =
|
180 |
-
* Compatibility with WordPress 3.7.1.
|
181 |
-
* Bug Fixes
|
182 |
-
|
183 |
-
= 8.3.0 =
|
184 |
-
* Compatibility with WordPress 3.1
|
185 |
-
* Placed.com company has decided to decommission the Placed Analytics product for strategic business reasons, hence removing it from plugin too.
|
186 |
-
|
187 |
-
= 8.2.9 =
|
188 |
-
* WordPress 3.6 compatibility
|
189 |
-
|
190 |
-
= 8.2.8 =
|
191 |
-
* Updated Compete Analytics Code. Thanks to www.compete.com team for updated code snippet.
|
192 |
-
|
193 |
-
= 8.2.7 =
|
194 |
-
* Code Cleanup. Removed unused Header/Footer Section.
|
195 |
-
* Getting ready for Premium Version.
|
196 |
-
|
197 |
-
= 8.2.6 =
|
198 |
-
* Google Analytics Script updated to "Universal Analytics". Enhancement Includes:
|
199 |
-
* Custom Dimensions & metrics
|
200 |
-
* Online/Offline data sync
|
201 |
-
* Multi-platform tracking
|
202 |
-
* Simplified configuration controls
|
203 |
-
* Advanced advertisement tools
|
204 |
-
* NOTE: Please revisit "Analytics Options" tab and enter newly introduced "Domain Name" field in new Universal Analytics.
|
1 |
=== WP Webmaster ===
|
2 |
Contributors: Crunchify
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8ZF6WATLYFELQ
|
4 |
+
Tags: WP Webmaster
|
5 |
Requires at least: 5.0
|
6 |
+
Tested up to: 5.7
|
7 |
+
Stable tag: 15.5.2
|
|
|
|
|
8 |
|
9 |
== Description ==
|
10 |
|
11 |
+
This is very Simple but Powerful WP Webmaster Tool for All WordPress Users.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
**Features**
|
14 |
|
15 |
* Brand new dedicated plugin menu
|
16 |
* Facebook page insights, admin insights, app insights options
|
17 |
+
* Header / Footer Section
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
**Analytics Option for**
|
20 |
|
33 |
5. Alexa Ranks
|
34 |
6. BlogCatalog
|
35 |
7. Facebook Insights
|
36 |
+
8. Google Tag manager
|
37 |
|
38 |
== Installation ==
|
39 |
1. Unpack the `download-package`.
|
42 |
4. Configure the options under Admin Panel `AIO Webmaster -> List of all Options`.
|
43 |
5. Done and Ready.
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
== Changelog ==
|
46 |
|
47 |
+
= 15.5.2 =
|
48 |
+
* Fixed bug reported by users.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
screenshot-1.png
DELETED
Binary file
|
screenshot-2.png
DELETED
Binary file
|
screenshot-3.png
DELETED
Binary file
|
screenshot-5.png
DELETED
Binary file
|