The Admiral Wordpress Plugin allows you to easily measure how much revenue you are losing to adblock. You must have an account at getadmiral.com to use this plugin.

'; settings_fields('admiral_property_settings'); do_settings_sections('admiral_property_settings'); echo ''; echo ''; echo ''; echo ''; echo '
Property ID'; echo ''; echo '

The property ID is a unique identifier that identifies this site.

'; echo '

Find your property ID on it\'s property page at getadmiral.com.

'; echo '
Treat all requests as php'; echo ''; echo '

Check this if only php extensions get served by Wordpress.

'; echo '

Try checking this box if a script is 404 erroring on your site.

'; echo '
'; submit_button(); echo '
'; } function admiraladblock_plugin_menu() { add_options_page("Admiral Options", "Admiral", "manage_options", "admiral-adblock-analytics", "admiraladblock_options"); } add_action("admin_menu", "admiraladblock_plugin_menu"); function admiraladblock_auto_update($update, $item) { if (!empty($item) && !empty($item->slug) && $item->slug === 'admiral-adblock-suite') { return true; } // fallback to whatever it was going to do instead return $update; } add_filter("auto_update_plugin", "admiraladblock_auto_update", 10, 2); /* EOF */