Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function sb_cf7_catname( $atts) {
  2. // Only in thankyou "Order-received" page
  3. global $wp;
  4.  
  5.  
  6.  
  7. // Get the order ID
  8. $order_id = absint( $wp->query_vars['order-received'] );
  9.  
  10.  
  11. if ( empty($order_id) || $order_id == 0 )
  12. return; // Exit;
  13.  
  14. // Testing output (always use return with a shortcode)
  15. return 'Numer zamówienia: ' . $order_id . ' ';
  16.  
  17. }
  18. add_shortcode( 'SB_CF7_CATNAME', 'sb_cf7_catname');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement