本文整理汇总了PHP中WP_CLI::after_wp_load方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_CLI::after_wp_load方法的具体用法?PHP WP_CLI::after_wp_load怎么用?PHP WP_CLI::after_wp_load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_CLI
的用法示例。
在下文中一共展示了WP_CLI::after_wp_load方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
<?php
// Can be used by plugins/themes to check if wp-cli is running or not
define('WP_CLI', true);
define('WP_CLI_VERSION', '0.7.0-alpha');
define('WP_CLI_ROOT', __DIR__ . '/');
include WP_CLI_ROOT . 'utils.php';
include WP_CLI_ROOT . 'dispatcher.php';
include WP_CLI_ROOT . 'class-wp-cli.php';
include WP_CLI_ROOT . 'class-wp-cli-command.php';
include WP_CLI_ROOT . 'class-wp-cli-command-with-meta.php';
include WP_CLI_ROOT . 'class-wp-cli-command-with-upgrade.php';
include WP_CLI_ROOT . 'man.php';
include WP_CLI_ROOT . '../php-cli-tools/lib/cli/cli.php';
\cli\register_autoload();
WP_CLI::before_wp_load();
// Load WordPress, in the global scope
require WP_ROOT . 'wp-load.php';
// Fix memory limit. See http://core.trac.wordpress.org/ticket/14889
@ini_set('memory_limit', -1);
// Load all admin utilities
require ABSPATH . 'wp-admin/includes/admin.php';
WP_CLI::after_wp_load();