mirror of
https://gh.wpcy.net/https://github.com/nlemoine/wp-cli-fixtures.git
synced 2026-05-23 02:18:43 +08:00
13 lines
271 B
PHP
13 lines
271 B
PHP
<?php
|
|
|
|
if ( ! class_exists( 'WP_CLI' ) ) {
|
|
return;
|
|
}
|
|
|
|
$wp_fixtures_autoloader = __DIR__ . '/vendor/autoload.php';
|
|
|
|
if ( file_exists( $wp_fixtures_autoloader ) ) {
|
|
require_once $wp_fixtures_autoloader;
|
|
}
|
|
|
|
WP_CLI::add_command( 'fixtures', 'Hellonico\Fixtures\Command' );
|