mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
5 lines
175 B
Text
5 lines
175 B
Text
add_filter( 'woocommerce_recently_viewed_product_cookie_lifetime', 'disable_recently_viewed_cookie' );
|
|
|
|
function disable_recently_viewed_cookie( $lifetime ) {
|
|
return 0;
|
|
}
|