mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
286 B
Text
9 lines
286 B
Text
add_action( 'template_redirect', 'wc_redirect_empty_cart', 9999 );
|
|
|
|
function wc_redirect_empty_cart() {
|
|
if ( is_cart() && WC()->cart->is_empty() ) {
|
|
wp_safe_redirect( wc_get_page_permalink( 'shop' ) );
|
|
// OR wp_safe_redirect( 'https://example.com' );
|
|
exit;
|
|
}
|
|
}
|