php 针对缓存插件处理插件瞬态。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 针对缓存插件处理插件瞬态。相关的知识,希望对你有一定的参考价值。
<?php
/**
* Handling with super cache plugin
*/
add_action('the_post', 'wcct_handle_transients_on_product_page',1);
function wcct_handle_transients_on_product_page($post) {
if(!defined("WCCT_SLUG")) {
return;
}
global $product;
if (is_object($product)) {
delete_transient('WCCT_INSTANCES');
}
WCCT_Common::$is_force_debug = true;
}
add_action('wcct_data_setup_done', 'wcct_verify_data_setup',10);
function wcct_verify_data_setup($id) {
if(!defined("WCCT_SLUG")) {
return;
}
if( $id == '54642' && isset(WCCT_Core()->public->single_campaign[$id])) {
$single_campaign_data = WCCT_Core()->public->single_campaign[$id];
$upload_dir = wp_upload_dir();
$base_path_file = $upload_dir['basedir'] . '/wcct_campaigns_debug.txt';
file_put_contents($base_path_file, date('y-m-d h:i:s').": ".serialize($single_campaign_data)." || \n", FILE_APPEND);
}
}
以上是关于php 针对缓存插件处理插件瞬态。的主要内容,如果未能解决你的问题,请参考以下文章
自定义帖子类型动作挂钩/瞬态
PHP 缓存插件之 Zend Opcache ( 取代 APC )
PHP缓存加速插件 XCache ZendOpcache 安装
android studio 清空缓存插件
微慕 rest api 缓存插件
php WP迁移DB Pro迁移后清除Elementor缓存 - 必须使用插件(mu-plugins)