mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://github.com/easydigitaldownloads/library/blob/master/_checkout/cart-expiration.html
4 lines
167 B
Text
4 lines
167 B
Text
function pw_edd_set_cart_expiration( $seconds ) {
|
|
return 172800; // 48 hours in seconds
|
|
}
|
|
add_filter( 'wp_session_expiration','pw_edd_set_cart_expiration', 999990 );
|