WP Admin page with information and configuration shared among all Jetpack stand-alone plugins
Every Jetpack plugin must include the My Jetpack package.
Require this package and initialize it:
add_action( 'init', function() {
Automattic\Jetpack\My_Jetpack\Initializer::init();
} );
To disable the licensing UI at /wp-admin/admin.php?page=my-jetpack#/add-license
, add a filter on jetpack_my_jetpack_should_enable_add_license_screen
and return false: add_filter( 'jetpack_my_jetpack_should_enable_add_license_screen', '__return_false' );
That's all!
If you plan on using this package in your WordPress plugin, we would recommend that you use Jetpack Autoloader as your autoloader. This will allow for maximum interoperability with other plugins that use this package as well.
Need to report a security vulnerability? Go to https://automattic.com/security/ or directly to our security bug bounty site https://hackerone.com/automattic.
my-jetpack is licensed under GNU General Public License v2 (or later)