Guest User

Untitled

a guest
Feb 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'automatewoo/variables', 'my_automatewoo_variables' );
  4.  
  5. /**
  6. * @param $variables array
  7. * @return array
  8. */
  9. function my_automatewoo_variables( $variables ) {
  10. $variables['order']['my_custom_date'] = dirname(__FILE__) . '/variable-my-custom-date.php';
  11. return $variables;
  12. }
Add Comment
Please, Sign In to add comment