WP_CLI::get_config() Edit

Get values of global configuration parameters.


Usage

WP_CLI::get_config( $key = null )
$key (string) Get value for a specific global configuration parameter.
@return (mixed)

Top ↑

Notes

Provides access to --path=<path>, --url=<url>, and other values of
the global configuration parameters.

WP_CLI::log( 'The --url=<url> value is: ' . WP_CLI::get_config( 'url' ) );

Internal APIAPI An API or Application Programming Interface is a software intermediary that allows programs to interact with each other and share data in limited, clearly defined ways. documentation is generated from the WP-CLIWP-CLI WP-CLI is the Command Line Interface for WordPress, used to do administrative and development tasks in a programmatic way. The project page is http://wp-cli.org/ https://make.wordpress.org/cli/ codebase on every release. To suggest improvements, please submit a pull request.


Top ↑

Last updated: