sensitiveOptions->get( 'licenseKey' ); $networkLicenseKey = is_multisite() && is_object( aioseo()->networkSensitiveOptions ) ? aioseo()->networkSensitiveOptions->get( 'networkLicenseKey' ) : null; if ( empty( $licenseKey ) && ! empty( $networkLicenseKey ) ) { $licenseKey = $networkLicenseKey; } return [ 'Content-Type' => 'application/json', 'X-AIOSEO-License' => $licenseKey ]; } /** * Get the User Agent for internal API requests. * * @since 4.2.4 * * @return string The User Agent. */ public function getApiUserAgent() { return 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ) . '; AIOSEO/Pro/' . AIOSEO_VERSION; } }