mirror of
https://hk.gh-proxy.com/https://github.com/wp-cli/profile-command.git
synced 2025-08-18 06:11:21 +08:00
13 lines
283 B
PHP
13 lines
283 B
PHP
|
<?php
|
||
|
|
||
|
if ( ! class_exists( 'WP_CLI' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$wpcli_profile_autoloader = dirname( __FILE__ ) . '/vendor/autoload.php';
|
||
|
if ( file_exists( $wpcli_profile_autoloader ) ) {
|
||
|
require_once $wpcli_profile_autoloader;
|
||
|
}
|
||
|
|
||
|
WP_CLI::add_command( 'profile', 'WP_CLI\Profile\Command' );
|