mirror of
https://ghproxy.net/https://github.com/wp-cli/extension-command.git
synced 2025-10-04 01:34:31 +08:00
14 lines
332 B
PHP
14 lines
332 B
PHP
<?php
|
|
|
|
if ( ! class_exists( 'WP_CLI' ) ) {
|
|
return;
|
|
}
|
|
|
|
$autoload = dirname( __FILE__ ) . '/vendor/autoload.php';
|
|
if ( file_exists( $autoload ) ) {
|
|
require_once $autoload;
|
|
}
|
|
|
|
WP_CLI::add_command( 'plugin', 'Plugin_Command' );
|
|
WP_CLI::add_command( 'theme', 'Theme_Command' );
|
|
WP_CLI::add_command( 'theme mod', 'Theme_Mod_Command' );
|