mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
7 lines
310 B
Text
7 lines
310 B
Text
add_action( 'setted_transient', 'mmx_wc_product_loop_transient', 50, 3 );
|
|
function mmx_wc_product_loop_transient( $transient, $value, $expiration ){
|
|
$pos = strpos( $transient, 'wc_product_loop_' );
|
|
if ( $pos !== false && $expiration == 2592000 ) {
|
|
set_transient( $transient, $value, DAY_IN_SECONDS );
|
|
}
|
|
}
|