當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WP_CLI::add_hook方法代碼示例

本文整理匯總了PHP中WP_CLI::add_hook方法的典型用法代碼示例。如果您正苦於以下問題:PHP WP_CLI::add_hook方法的具體用法?PHP WP_CLI::add_hook怎麽用?PHP WP_CLI::add_hook使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WP_CLI的用法示例。


在下文中一共展示了WP_CLI::add_hook方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

<?php

/**
 * Use WP-API at the command line.
 */
require_once __DIR__ . '/inc/RestCommand.php';
require_once __DIR__ . '/inc/Runner.php';
if (class_exists('WP_CLI')) {
    \WP_REST_CLI\Runner::load_remote_commands();
    WP_CLI::add_hook('after_wp_load', '\\WP_REST_CLI\\Runner::after_wp_load');
}
開發者ID:Ryan4021,項目名稱:wp-rest-cli,代碼行數:11,代碼來源:wp-rest-cli.php

示例2: hooks

 /**
  * Sets up and hooks WP CLI to our CLI code.
  */
 private function hooks()
 {
     WP_CLI::add_hook('after_wp_load', 'WC_CLI_Runner::after_wp_load');
     WP_CLI::add_hook('after_wp_load', 'WC_CLI_Tool_Command::register_commands');
     WP_CLI::add_hook('after_wp_load', 'WC_CLI_Update_Command::register_commands');
 }
開發者ID:shivapoudel,項目名稱:woocommerce,代碼行數:9,代碼來源:class-wc-cli.php

示例3: function

WP_CLI::add_hook('after_wp_load', function () {
    global $current_site;
    // Only modify `site create` command.
    if (implode(' ', WP_CLI::get_runner()->arguments) !== 'site create') {
        return;
    }
    // Subdomains are required.
    if (!is_subdomain_install()) {
        WP_CLI::error('Hercules requires subdomains mode');
    }
    // Support `domain` arg even if `wp site create` don't.
    if (isset(WP_CLI::get_runner()->assoc_args['domain'])) {
        $domain = WP_CLI::get_runner()->assoc_args['domain'];
        unset(WP_CLI::get_runner()->assoc_args['domain']);
    } else {
        $domain = WP_CLI::get_runner()->assoc_args['slug'];
    }
    // Not a valid host.
    if (parse_url('http://' . $domain, PHP_URL_HOST) !== $domain) {
        WP_CLI::error('Hercules requires a valid top domain, e.g example.com');
    }
    // Remove `www.` from the domain if any.
    $domain = preg_replace('|^www\\.|', '', $domain);
    // Split the domain.
    $domain = explode('.', $domain);
    // Can only work with two parts.
    if (count($domain) !== 2) {
        WP_CLI::error('Hercules requires a valid top domain, e.g example.com');
    }
    // Set new slug in WP CLI.
    WP_CLI::get_runner()->assoc_args['slug'] = $domain[0];
    // Set current site domain.
    $current_site->domain = $domain[1];
});
開發者ID:isotopsweden,項目名稱:wp-hercules,代碼行數:34,代碼來源:cli.php


注:本文中的WP_CLI::add_hook方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。