1. Go to this page and download the library: Download automattic/jetpack-config library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
automattic / jetpack-config example snippets
use Automattic/Jetpack/Config;
// Configuring Jetpack as early as plugins_loaded priority 1
// to make sure every action handler gets properly set.
add_action( 'plugins_loaded', 'configure_jetpack', 1 );
function configure_jetpack() {
$config = new Config();
foreach (
array(
'sync',
'tracking',
'tos',
)
as $feature
) {
$config->ensure( $feature );
}
}
class Configurable_Package {
public static function configure() {
add_action( 'plugins_loaded', array( __CLASS__, 'on_plugins_loaded' );
}
public static function on_plugins_loaded() {
self::do_interesting_stuff();
}
}
public function enable_configurable_package() {
Configurable_Package::configure();
return true;
}
public function ensure_options_configurable_package() {
$options = $this->get_feature_options( 'configurable_package' );
Configurable_Package::handle_initialization_options( $options );
return true;
}