Convenient UI to manager your site's connection to WP.com
Package is published in Packagist.
- Use composer to add the package to your project:
composer require automattic/jetpack-connection-ui
- Then you need to initialize it on the
plugins_loaded
hook:
add_action( 'plugins_loaded', 'load_connection_ui' );
function load_connection_ui() {
Automattic\Jetpack\ConnectionUI\Admin::init();
}
- You need to build its assets before using it. To do that, you need to run the following commands:
cd vendor/automattic/jetpack-connection-ui
pnpm build