本文整理匯總了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.");
}