https://github.com/automattic/jetpack-connection-ui
[READ ONLY] Jetpack Connection UI This repository is a mirror, for issue tracking and development head to: https://github.com/automattic/jetpack
https://github.com/automattic/jetpack-connection-ui
jetpack wordpress
Last synced: 8 months ago
JSON representation
[READ ONLY] Jetpack Connection UI This repository is a mirror, for issue tracking and development head to: https://github.com/automattic/jetpack
- Host: GitHub
- URL: https://github.com/automattic/jetpack-connection-ui
- Owner: Automattic
- License: other
- Created: 2021-01-12T09:29:19.000Z (over 5 years ago)
- Default Branch: trunk
- Last Pushed: 2022-09-23T17:40:06.000Z (almost 4 years ago)
- Last Synced: 2025-01-30T01:04:27.651Z (over 1 year ago)
- Topics: jetpack, wordpress
- Language: PHP
- Homepage: https://github.com/Automattic/Jetpack/
- Size: 1.42 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
README
# Jetpack Connection UI Package
Convenient UI to manager your site's connection to WP.com
## How to use
Package is published in [Packagist](https://packagist.org/packages/automattic/jetpack-connection-ui).
1. Use composer to add the package to your project:
```bash
composer require automattic/jetpack-connection-ui
```
2. Then you need to initialize it on the `plugins_loaded` hook:
```php
add_action( 'plugins_loaded', 'load_connection_ui' );
function load_connection_ui() {
Automattic\Jetpack\ConnectionUI\Admin::init();
}
```
3. You need to build its assets before using it.
To do that, you need to run the following commands:
```bash
cd vendor/automattic/jetpack-connection-ui
pnpm build
```