for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is meant to be the home for any generic & reusable functions
* that can be accessed anywhere within Jetpack.
*
* This file is loaded whether or not Jetpack is active.
* Please namespace with jetpack_
* Please write docblocks
*/
* Disable direct access.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
* Determine if this site is an AT site or not looking first at the 'at_options' option.
* As a fallback, check for presence of wpcomsh plugin to determine if a current site has undergone AT.
* @since 4.8.1
* @return bool
function jetpack_is_automated_transfer_site() {
$at_options = get_option( 'at_options', array() );
return ! empty( $at_options ) || defined( 'WPCOMSH__PLUGIN_FILE' );