mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
158 B
Text
6 lines
158 B
Text
function wc_empty_cart_logout() {
|
|
if( function_exists('WC') ){
|
|
WC()->cart->empty_cart();
|
|
}
|
|
}
|
|
add_action('wp_logout', 'wc_empty_cart_logout');
|