Skip to content

Instantly share code, notes, and snippets.

@deshabhishek007
Created February 17, 2024 06:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deshabhishek007/48404448c460b760c806c63bbc36a469 to your computer and use it in GitHub Desktop.
Save deshabhishek007/48404448c460b760c806c63bbc36a469 to your computer and use it in GitHub Desktop.
WCPune 2024 Custom CLI code
<?php
/*
Plugin Name: My CLI Commands
Plugin URI: #
Description:
Author: WC Pune Team
Version: 1.0.0
Author URI: https://pune.wordcamp.org
*/
class mycommand {
public function world( $args, $assoc_args ) {
list( $name ) = $args;
$type = $assoc_args['type'];
WP_CLI::$type( "Hello $name" );
}
}
if ( defined( 'WP_CLI' ) && WP_CLI ) {
WP_CLI::add_command( 'say-hello', 'mycommand');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment