mirror of
https://gh.wpcy.net/https://github.com/nlemoine/wp-cli-fixtures.git
synced 2026-05-24 21:14:13 +08:00
15 lines
266 B
PHP
15 lines
266 B
PHP
<?php
|
|
|
|
namespace Hellonico\Fixtures;
|
|
|
|
use WP_CLI;
|
|
|
|
if (!class_exists('WP_CLI')) {
|
|
return;
|
|
}
|
|
|
|
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
}
|
|
|
|
WP_CLI::add_command('fixtures', __NAMESPACE__ . '\\Command');
|