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。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) && file_exists( WP_CONTENT_DIR . '/advanced-cache.php' ) ) {
if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) && file_exists( WP_CONTENT_DIR . '/advanced-cache.php' ) ) {
if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) && file_exists( WP_CONTENT_DIR . '/advanced-cache.php' ) ) {

常見問題

FAQs
檢視更多 >