Guest User

Untitled

a guest
Dec 14th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2. function mp_cus_continue_shopping_shortcode() {
  3. return '<a href="' . mp_products_link( false, true ) . '" class="mp_button mp_button-continue-shopping mp_button-large">Continue Shopping?</a>';
  4. }
  5. add_shortcode('mp_continue_shopping_btn', 'mp_cus_continue_shopping_shortcode');
  6.  
  7. function mp_cus_review_order_shortcode() {
  8. return '<a href="' . mp_cart_link( false, true ) . '" class="mp_button mp_button-continue-shopping mp_button-large">Review Order</a>';
  9. }
  10. add_shortcode('mp_review_order_btn', 'mp_cus_review_order_shortcode');
Add Comment
Please, Sign In to add comment