当前位置: 首页>>代码示例>>PHP>>正文


PHP WP_CLI::locate_wp_config方法代码示例

本文整理汇总了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.");
    }
开发者ID:rpeterson,项目名称:wp-cli,代码行数:51,代码来源:core.php


注:本文中的WP_CLI::locate_wp_config方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。