Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yorlinq/57e5649cd30bf185dcc3e2d6809b3ca8 to your computer and use it in GitHub Desktop.
Save Yorlinq/57e5649cd30bf185dcc3e2d6809b3ca8 to your computer and use it in GitHub Desktop.
Shortcode for 'Shopping cart url' - WooCommerce
// 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