本文整理汇总了PHP中WP_CLI::load_wp_config方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_CLI::load_wp_config方法的具体用法?PHP WP_CLI::load_wp_config怎么用?PHP WP_CLI::load_wp_config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_CLI
的用法示例。
在下文中一共展示了WP_CLI::load_wp_config方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
// Handle --url and --blog parameters
WP_CLI::_set_url($assoc_args);
if (array('core', 'download') == $arguments) {
WP_CLI::run_command($arguments, $assoc_args);
exit;
}
if (!is_readable(WP_ROOT . 'wp-load.php')) {
WP_CLI::error('This does not seem to be a WordPress install. Pass --path=`path/to/wordpress` or run `wp core download`.');
}
if (array('core', 'config') == $arguments) {
WP_CLI::run_command($arguments, $assoc_args);
exit;
}
// The db commands don't need any WP files
if (array('db') == array_slice($arguments, 0, 1)) {
WP_CLI::load_wp_config();
WP_CLI::run_command($arguments, $assoc_args);
exit;
}
// Set installer flag before loading any WP files
if (array('core', 'install') == $arguments) {
WP_CLI::check_required_args(array('url', 'title', 'admin_email', 'admin_password'), $assoc_args);
define('WP_INSTALLING', true);
}
// Load WordPress
require WP_ROOT . 'wp-load.php';
// Fix memory limit. See http://core.trac.wordpress.org/ticket/14889
@ini_set('memory_limit', -1);
require ABSPATH . 'wp-admin/includes/admin.php';
// Load the right info into the global wp_query
if (!defined('WP_INSTALLING') && isset($assoc_args['url'])) {