Skip to content

Instantly share code, notes, and snippets.

View ludiofs's full-sized avatar

Lúdio ludiofs

  • Brazil
  • 00:30 (UTC -04:00)
View GitHub Profile
@ludiofs
ludiofs / disable-batcache-cpt.php
Created May 27, 2025 18:39
Disable batcache for specific post type
<?php
// Disable post types from batcache/object cache - working
add_filter( 'advanced_post_cache_skip_for_post_type', 'apc_exempted_cpts', 10,2);
function apc_exempted_cpts($return_me,$post_type) {
$exempted = array('project');
if ( in_array($post_type,$exempted) ) {
return true;
}