Untitled

 avatar
webwizards
plain_text
2 months ago
414 B
14
Indexable
// Disable permalink flushing on every page load
add_filter('b2bking_flush_permalinks', '__return_false');

// Disable automatic cache flushing
add_filter('b2bking_flush_cache_wp', '__return_false');

// Disable dashboard data calculations
add_filter('b2bking_enable_dashboard_data', '__return_false');

// Extend cache time 
add_filter('b2bking_cache_time_setting', function($val){
    return 86400000;
}, 10, 1);
Editor is loading...
Leave a Comment