Plugin Directory

Changeset 1940967


Ignore:
Timestamp:
09/13/2018 05:49:32 PM (7 years ago)
Author:
eastsidecode
Message:

Adds new field for Bing Webmaster tools

Location:
wp-best-analytics/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-best-analytics/trunk/readme.txt

    r1924110 r1940967  
    2525== Changelog ==
    2626
     27= 1.1 =
     28*Release Date - 13 September 2018*
     29* Adds field for bing webmaster tools
     30
    2731= 1.0 =
    2832*Release Date - 08 August 2018*
  • wp-best-analytics/trunk/wp-best-analytics.php

    r1924107 r1940967  
    55Description: Best analytics plugin for having analytics installed on live sites and dev sites without showing up on both.
    66Author: Louis Fico
    7 Version: 1.0
     7Version: 1.1
    88Author URI: eastsidecode.com
    99*/
     
    2222add_action( 'admin_init', function() {
    2323    register_setting( 'wp-best-analytics-analytics-plugin-settings', 'wp_best_analytics_analytics_meta_field' );
     24    register_setting( 'wp-best-analytics-analytics-plugin-settings', 'wp_best_analytics_analytics_bing_webmaster_meta_field' );
     25
    2426    register_setting( 'wp-best-analytics-analytics-plugin-settings', 'wp_best_analytics_analytics_tracking_code_field' );
    2527    register_setting( 'wp-best-analytics-analytics-plugin-settings', 'wp_best_analytics_analytics_dev_url' );
     
    5658
    5759              <tr>
    58                 <th style="text-align: right;">Meta Field for Verification (optional):</th>
     60                <th style="text-align: right;">Google Meta Field for Verification (optional):</th>
    5961                <td><input type="text" placeholder="Verification field for Google search console" name="wp_best_analytics_analytics_meta_field" value="<?php echo esc_attr( get_option('wp_best_analytics_analytics_meta_field') ); ?>" size="80" /></td>
    6062            </tr>
     63                        <tr>
     64                <td height="2" style="font-size:2px; line-height:2px;"></td>
     65            </tr>
     66
     67           <tr>
     68                <th></th>
     69                <td>Use this field if you'd like to verify your Google Search console property with a meta tag.</td>
     70            </tr>
     71
     72            <tr>
     73                <td height="10" style="font-size:10px; line-height:10px;"></td>
     74            </tr>
     75
     76              <tr>
     77                <th style="text-align: right;">Bing Meta Field for Verification (optional):</th>
     78                <td><input type="text" placeholder="Verification field for Bing Webmaster Tools" name="wp_best_analytics_analytics_bing_webmaster_meta_field" value="<?php echo esc_attr( get_option('wp_best_analytics_analytics_bing_webmaster_meta_field') ); ?>" size="80" /></td>
     79            </tr>
     80
    6181            <tr>
    6282                <td height="2" style="font-size:2px; line-height:2px;"></td>
     
    6585            <tr>
    6686                <th></th>
    67                 <td>Use this field if you'd like to verify your Google Search console property with a meta tag.</td>
     87                <td>Use this field if you'd like to verify your Bing Webmaster tools acount with a meta tag.</td>
    6888            </tr>
    6989
     
    177197}
    178198
    179 }
     199$bingVerificationCode = get_option('wp_best_analytics_analytics_bing_webmaster_meta_field');
     200
     201if (isset($bingVerificationCode)) {
     202    echo $bingVerificationCode;
     203}
     204
     205
     206} // end. function
    180207
    181208add_action('wp_head', 'wp_best_analytics_add_site_verification');
Note: See TracChangeset for help on using the changeset viewer.