mirror of
https://hk.gh-proxy.com/https://github.com/wp-cli/profile-command.git
synced 2025-08-18 06:11:29 +08:00
6 lines
167 B
PHP
6 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' );
|
|
}
|