Last active
April 21, 2019 09:01
-
-
Save donnamcmaster/bb7d4d462b3341933be88daa73762dd0 to your computer and use it in GitHub Desktop.
WordPress: URLs for WooCommerce utility pages (cart, checkout, etc)
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
<!-- 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