enable_loading_advanced_cache_dropin

过滤钩子
apply_filters( 'enable_loading_advanced_cache_dropin', true )
参数
  • (bool) $enable_advanced_cache Whether to enable loading advanced-cache.php (if present). Default true.
    Required:
定义位置
相关勾子
enable_loading_object_cache_dropinenable_maintenance_modeenable_wp_debug_mode_checks
相关方法
link_advanced_meta_box
引入
4.6.0
弃用
-

enable_loading_advanced_cache_dropin – 这是WordPress中的一个过滤钩子,用于启用或禁用加载advanced-cache.php的插件。Advanced-cache.php drop-in是用来给网站增加额外的缓存功能的,这个钩子可以用来禁用它。

筛选是否启用加载advanced-cache.php插件。

此筛选器在插件使用之前运行。它是为非web运行时设计的。如果返回false,则永远不会加载advanced-cache.php。

if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) && file_exists( WP_CONTENT_DIR . '/advanced-cache.php' ) ) {

常见问题

FAQs
查看更多 >