<?php
if ( defined('WP_CLI') && WP_CLI ) {
/**
* Implements example command.
*/
class Example_Command extends WP_CLI_Command {
/**
* Prints a greeting.
*
* ## OPTIONS
*
* <name>
* : The name of the person to greet.
*
* ## EXAMPLES
*
* wp example hello Newman
*
* @synopsis <name>
*/
function hello( $args, $assoc_args ) {
list( $name ) = $args;
// Print a success message
WP_CLI::success( "Hello, $name!" );
}
}
WP_CLI::add_command( 'example', 'Example_Command' );
}
/*
$ wp example hello world
:'
Success: Hello, world!
'
*/
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.