本文整理汇总了PHP中wpseo_remove_capabilities函数的典型用法代码示例。如果您正苦于以下问题:PHP wpseo_remove_capabilities函数的具体用法?PHP wpseo_remove_capabilities怎么用?PHP wpseo_remove_capabilities使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpseo_remove_capabilities函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: wpseo_deactivate
/**
* On deactivation, flush the rewrite rules so XML sitemaps stop working.
*/
function wpseo_deactivate()
{
require_once WPSEO_PATH . 'inc/wpseo-functions.php';
flush_rewrite_rules();
wpseo_remove_capabilities();
// Force unschedule
WPSEO_Options::schedule_yoast_tracking(null, get_option('wpseo'), true);
// Clear cache so the changes are obvious.
WPSEO_Options::clear_cache();
do_action('wpseo_deactivate');
}
开发者ID:Ingenex,项目名称:redesign,代码行数:14,代码来源:wp-seo-main.php
示例2: _wpseo_deactivate
/**
* On deactivation, flush the rewrite rules so XML sitemaps stop working.
*/
function _wpseo_deactivate()
{
require_once WPSEO_PATH . 'inc/wpseo-functions.php';
if (is_multisite() && ms_is_switched()) {
delete_option('rewrite_rules');
} else {
add_action('shutdown', 'flush_rewrite_rules');
}
wpseo_remove_capabilities();
// Clear cache so the changes are obvious.
WPSEO_Utils::clear_cache();
do_action('wpseo_deactivate');
}
开发者ID:misfist,项目名称:missdrepants-network,代码行数:16,代码来源:wp-seo-main.php
示例3: _wpseo_deactivate
/**
* On deactivation, flush the rewrite rules so XML sitemaps stop working.
*/
function _wpseo_deactivate()
{
require_once WPSEO_PATH . 'inc/wpseo-functions.php';
add_action('shutdown', 'flush_rewrite_rules');
wpseo_remove_capabilities();
// Clear cache so the changes are obvious.
WPSEO_Utils::clear_cache();
do_action('wpseo_deactivate');
}
开发者ID:crazyyy,项目名称:octagram,代码行数:12,代码来源:wp-seo-main.php
注:本文中的wpseo_remove_capabilities函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论