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


PHP WPSEO_Options::clear_cache方法代码示例

本文整理汇总了PHP中WPSEO_Options::clear_cache方法的典型用法代码示例。如果您正苦于以下问题:PHP WPSEO_Options::clear_cache方法的具体用法?PHP WPSEO_Options::clear_cache怎么用?PHP WPSEO_Options::clear_cache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WPSEO_Options的用法示例。


在下文中一共展示了WPSEO_Options::clear_cache方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: wpseo_title_test

/**
 * Test whether force rewrite should be enabled or not.
 */
function wpseo_title_test()
{
    $options = get_option('wpseo_titles');
    $options['forcerewritetitle'] = false;
    $options['title_test'] = 1;
    update_option('wpseo_titles', $options);
    // Setting title_test to > 0 forces the plugin to output the title below through a filter in class-frontend.php
    $expected_title = 'This is a Yoast Test Title';
    WPSEO_Options::clear_cache();
    global $wp_version;
    $args = array('user-agent' => "WordPress/{$wp_version}; " . get_site_url() . ' - Yoast');
    $resp = wp_remote_get(get_bloginfo('url'), $args);
    // echo '<pre>'.$resp['body'].'</pre>';
    if ($resp && !is_wp_error($resp) && (200 == $resp['response']['code'] && isset($resp['body']))) {
        $res = preg_match('`<title>([^<]+)</title>`im', $resp['body'], $matches);
        if ($res && strcmp($matches[1], $expected_title) !== 0) {
            $options['forcerewritetitle'] = true;
            $resp = wp_remote_get(get_bloginfo('url'), $args);
            $res = false;
            if ($resp && !is_wp_error($resp) && (200 == $resp['response']['code'] && isset($resp['body']))) {
                $res = preg_match('`/<title>([^>]+)</title>`im', $resp['body'], $matches);
            }
        }
        if (!$res || $matches[1] != $expected_title) {
            $options['forcerewritetitle'] = false;
        }
    } else {
        // If that dies, let's make sure the titles are correct and force the output.
        $options['forcerewritetitle'] = true;
    }
    $options['title_test'] = 0;
    update_option('wpseo_titles', $options);
}
开发者ID:donwea,项目名称:nhap.org,代码行数:36,代码来源:wpseo-non-ajax-functions.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';
    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

示例3: clear_cache

 /**
  * Clears the cache
  *
  * @deprecated 1.5.0
  * @deprecated use WPSEO_Options::clear_cache()
  * @see        WPSEO_Options::clear_cache()
  */
 function clear_cache()
 {
     _deprecated_function(__METHOD__, 'WPSEO 1.5.0', 'WPSEO_Options::clear_cache()');
     WPSEO_Options::clear_cache();
 }
开发者ID:CrankMaster336,项目名称:FFW-TR,代码行数:12,代码来源:class-admin.php


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