mirror of
https://ghproxy.net/https://github.com/wp-cli/scaffold-package-command.git
synced 2026-07-27 13:08:40 +08:00
15 lines
260 B
Text
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 );
|