| Server IP : 195.130.67.5 / Your IP : 216.73.217.127 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/repository/wp-content/plugins/jetpack/modules/ |
Upload File : |
<?php
/**
* Module Name: Site verification
* Module Description: Establish your site's authenticity with external services.
* First Introduced: 3.0
* Sort Order: 33
* Requires Connection: No
* Auto Activate: Yes
* Feature: Engagement
* Additional Search Queries: webmaster, seo, google, bing, pinterest, search, console
*/
function jetpack_load_verification_tools() {
include dirname( __FILE__ ) . "/verification-tools/blog-verification-tools.php";
}
function jetpack_verification_tools_loaded() {
Jetpack::enable_module_configurable( __FILE__ );
Jetpack::module_configuration_load( __FILE__, 'jetpack_verification_tools_configuration_load' );
}
add_action( 'jetpack_modules_loaded', 'jetpack_verification_tools_loaded' );
function jetpack_verification_tools_configuration_load() {
wp_safe_redirect( admin_url( 'tools.php' ) );
exit;
}
jetpack_load_verification_tools();