Skip to content

Instantly share code, notes, and snippets.

@donnamcmaster
Last active April 21, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donnamcmaster/bb7d4d462b3341933be88daa73762dd0 to your computer and use it in GitHub Desktop.
Save donnamcmaster/bb7d4d462b3341933be88daa73762dd0 to your computer and use it in GitHub Desktop.
WordPress: URLs for WooCommerce utility pages (cart, checkout, etc)
<!-- Get and display the My Account page url -->
<?php echo get_permalink( wc_get_page_id( 'checkout' ) ); ?>
<!-- Get and display the Cart page url -->
<?php echo get_permalink( wc_get_page_id( 'cart' ) ); ?>
<!-- Get and display the Shop page url -->
<?php echo get_permalink( wc_get_page_id( 'shop' ) ); ?>
<!-- Get and display the Checkout page url -->
<?php echo get_permalink( wc_get_page_id( 'myaccount' ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment