automattic/jetpack-connection-ui
This package is abandoned and no longer maintained.
No replacement package was suggested.
Jetpack Connection UI
Maintainers
Package info
github.com/Automattic/jetpack-connection-ui
Type:jetpack-library
pkg:composer/automattic/jetpack-connection-ui
v2.4.17
2022-09-20 17:03 UTC
Requires
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
GPL-2.0-or-later c90df5b49dd4de35ad11bafab0bdd423f24d8189
This package is auto-updated.
Last update: 2026-02-24 01:00:12 UTC
README
Convenient UI to manager your site's connection to WP.com
How to use
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_loadedhook:
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
