automattic / jetpack-connection-ui
Jetpack Connection UI
Installs: 7 999
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Type:jetpack-library
Requires
Requires (Dev)
- dev-trunk / 2.4.x-dev
- v2.4.17
- v2.4.16
- v2.4.15
- v2.4.14
- v2.4.13
- v2.4.12
- v2.4.11
- v2.4.10
- v2.4.9.1
- v2.4.9
- v2.4.8
- v2.4.7
- v2.4.6
- v2.4.5
- v2.4.4
- v2.4.3
- v2.4.2
- v2.4.1
- v2.4.0
- v2.3.14
- v2.3.13
- v2.3.12
- v2.3.11
- v2.3.10
- v2.3.9
- v2.3.8
- v2.3.7
- v2.3.6
- v2.3.5
- v2.3.4
- v2.3.3
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.0
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.0
- v1.6.0
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.1
- v1.3.0
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0.2
- 1.0.1
- v1.0.0
- dev-fix/slack-workflow-branch-detection
- dev-fix/release-branch-typo
- dev-update/generate-branch-plugin
- dev-release-v1.0.0
This package is auto-updated.
Last update: 2024-10-23 22:03:02 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_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