Skip to content

Instantly share code, notes, and snippets.

@bchiang7
Created March 26, 2020 21:33
Show Gist options
  • Save bchiang7/d3f9f86365a59a2bb073da6e0f2460b5 to your computer and use it in GitHub Desktop.
Save bchiang7/d3f9f86365a59a2bb073da6e0f2460b5 to your computer and use it in GitHub Desktop.
<?php
if (! (defined('WP_CLI') && WP_CLI)) {
return;
}
class Algolia_Command {
public function reindex($args, $assoc_args) {
...
}
public function get_config($args, $assoc_args) {
...
}
public function set_config($args, $assoc_args) {
...
}
}
WP_CLI::add_command('algolia', 'Algolia_Command');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment