mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
172 B
Text
5 lines
172 B
Text
add_filter( 'woocommerce_add_to_cart_redirect', 'wc_skip_cart_redirect_checkout' );
|
|
|
|
function wc_skip_cart_redirect_checkout( $url ) {
|
|
return wc_get_checkout_url();
|
|
}
|