- Organize files in folders according to the desired structure - Use directory iterator to loop through all files and folders (makes generation more robust)
1.4 KiB
WP_CLI::run_command()
Run a given command within the current process using the same global parameters.
Usage
WP_CLI::run_command( $args, $assoc_args = [] )
$assoc_args (array)
Notes
Use WP_CLI::runcommand() instead, which is easier to use and works better.
To run a command using a new process with the same global parameters, use WP_CLI::launch_self(). To run a command using a new process with different global parameters, use WP_CLI::launch().
ob_start();
WP_CLI::run_command( array( 'cli', 'cmd-dump' ) );
$ret = ob_get_clean();
Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.
Related
- WP_CLI::launch() - Launch an arbitrary external process that takes over I/O.
- WP_CLI::launch_self() - Run a WP-CLI command in a new process reusing the current runtime arguments.
- WP_CLI::runcommand() - Run a WP-CLI command.