本文整理汇总了PHP中WP_CLI::locate_wp_config方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_CLI::locate_wp_config方法的具体用法?PHP WP_CLI::locate_wp_config怎么用?PHP WP_CLI::locate_wp_config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_CLI
的用法示例。
在下文中一共展示了WP_CLI::locate_wp_config方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: install_network
public function install_network($args, $assoc_args)
{
if (is_multisite()) {
WP_CLI::error('This already is a multisite install.');
}
global $wpdb;
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
// need to register the multisite tables manually for some reason
foreach ($wpdb->tables('ms_global') as $table => $prefixed_table) {
$wpdb->{$table} = $prefixed_table;
}
WP_CLI::check_required_args(array('title'), $assoc_args);
extract(wp_parse_args($assoc_args, array('base' => '/')));
$hostname = self::get_clean_basedomain();
$subdomain_install = isset($assoc_args['subdomains']);
install_network();
$result = populate_network(1, $hostname, get_option('admin_email'), $assoc_args['title'], $base, $subdomain_install);
if (is_wp_error($result)) {
WP_CLI::error($result);
}
ob_start();
?>
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', <?php
echo $subdomain_install ? 'true' : 'false';
?>
);
$base = '<?php
echo $base;
?>
';
define('DOMAIN_CURRENT_SITE', '<?php
echo $hostname;
?>
');
define('PATH_CURRENT_SITE', '<?php
echo $base;
?>
');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
<?php
$ms_config = ob_get_clean();
$wp_config_path = WP_CLI::locate_wp_config();
$token = "/* That's all, stop editing!";
list($before, $after) = explode($token, file_get_contents($wp_config_path));
file_put_contents($wp_config_path, $before . $ms_config . $token . $after);
wp_mkdir_p(WP_CONTENT_DIR . '/blogs.dir');
WP_CLI::success("Network installed. Don't forget to set up rewrite rules.");
}