scaffold-package-command/templates/command.mustache
2016-02-16 05:59:30 -08:00

15 lines
260 B
Text

<?php
if ( ! class_exists( 'WP_CLI' ) ) {
return;
}
/**
* Says "Hello World" to new users
*
* @when before_wp_load
*/
$hello_world_command = function() {
WP_CLI::success( "Hello world." );
};
WP_CLI::add_command( 'hello-world', $hello_world_command );