Plugin Directory

Changeset 3287000


Ignore:
Timestamp:
05/03/2025 10:19:39 PM (8 months ago)
Author:
adunblock
Message:

Release 1.0.1

Location:
ad-unblock
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • ad-unblock/trunk/ad-unblock.php

    r3271831 r3287000  
    44 * Plugin Name: Ad Unblock
    55 * Description: Integrates your WordPress site with Ad Unblock service to recover ad revenue lost to ad blockers.
    6  * Version: 1.0.0
     6 * Version: 1.0.1
    77 * Author: Ad Unblock
    88 * Author URI: https://ad-unblock.com
     
    1717}
    1818
    19 define('AD_UNBLOCK_VERSION', '1.0.0');
     19define('AD_UNBLOCK_VERSION', '1.0.1');
    2020define('AD_UNBLOCK_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2121define('AD_UNBLOCK_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    467467        $script_url = reset($script_sources);
    468468
    469         // Append verification code as query parameter
    470         $script_url = add_query_arg('code', $verification_code, $script_url);
     469        // Add verification code as a meta tag in DOM
     470        echo '<meta name="ad-unblock-verification" content="' . esc_attr($verification_code) . '" />';
    471471
    472472        // Enqueue the single script
  • ad-unblock/trunk/readme.txt

    r3271831 r3287000  
    33Tags: ad blocker, revenue recovery, monetization, ad recovery
    44Requires at least: 5.0
    5 Tested up to: 6.7
    6 Stable tag: 1.0.0
     5Tested up to: 6.8
     6Stable tag: 1.0.1
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    7575== Changelog ==
    7676
     77= 1.0.1 =
     78* Remove verification code from script URL query param to improve cache performance
     79* Add verification code as a meta tag in header
     80
    7781= 1.0.0 =
    7882* Initial release
  • ad-unblock/trunk/uninstall.php

    r3271831 r3287000  
    44 *
    55 * @link       https://ad-unblock.com
    6  * @since      1.0.0
     6 * @since      1.0.1
    77 *
    88 * @package    Ad_Unblock
Note: See TracChangeset for help on using the changeset viewer.