Created
July 23, 2022 15:29
-
-
Save Yorlinq/57e5649cd30bf185dcc3e2d6809b3ca8 to your computer and use it in GitHub Desktop.
Shortcode for 'Shopping cart url' - WooCommerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Shortcode for 'Shopping cart url': [yl_cart_url] | |
function yl_cart_url_shortcode( $atts ) { | |
return wc_get_cart_url(); | |
} | |
add_shortcode( 'yl_cart_url', 'yl_cart_url_shortcode' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment