mirror of
https://hk.gh-proxy.com/https://github.com/wp-cli/profile-command.git
synced 2025-08-20 06:28:31 +08:00
7 lines
167 B
PHP
7 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
if ( class_exists( 'WP_CLI' ) ) {
|
||
|
require_once dirname( __FILE__ ) . '/inc/class-profile-command.php';
|
||
|
WP_CLI::add_command( 'profile', 'Profile_Command' );
|
||
|
}
|