widget-command/command.php
Daniel Bachhuber 717ea43c89 Initial commit
2016-07-25 07:36:55 -07:00

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' );
}