Advertisement
sgaffney

woo hook test

Dec 7th, 2011
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: z basic plugin
  4. Description: testing woo order status completed
  5. */
  6.  
  7.  
  8. function wootest_log () {
  9.     global $woocommerce;
  10.  
  11.         $woocommerce->log->add( 'paypal', 'user is being added to database');
  12. }
  13. add_action( 'woocommerce_order_status_completed', 'wootest_log', 10, 1);
  14.  
  15. ?>
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement