mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
12 lines
376 B
Text
12 lines
376 B
Text
add_filter( 'cartflows_do_not_cache_step', 'cache_CartFlows_pages' );
|
|
|
|
function cache_CartFlows_pages( $post_id ) {
|
|
|
|
// If you want to remove more pages from the cache then add those page's id in the array.
|
|
|
|
if( in_array( $post_id , array( 'add_your_landing_page_ids_comma_separated_id_more_than_one' ) ) ){
|
|
return false; // Do not cache.
|
|
}
|
|
|
|
return true; // Do cache.
|
|
}
|