# jetpack/7.1/modules/verification-tools.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 7.1. 30 lines.

- Page: https://pluginprobe.com/plugins/jetpack/7.1/code/modules/verification-tools.php
- Raw: https://pluginprobe.com/plugins/jetpack/7.1/raw/modules/verification-tools.php
- Modified: 2017-03-29T00:35:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetpack/7.1/code/modules/verification-tools.php#L10-L20`.

```php
<?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();

```
