Guest User

Untitled

a guest
Nov 14th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. add_action( 'woocommerce_before_single_product', 'variable_function', 15 );
  2.  
  3. function variable_function() {
  4. echo 'this is the first message';
  5. }
  6.  
  7. add_action( 'woocommerce_before_add_to_cart_form', 'variable_function', 15 );
  8.  
  9. function variable_function() {
  10. echo 'This is a second message';
  11. }
  12.  
  13. add_action( 'woocommerce_before_single_product', 'variable_function'.$randomn_info, 15 );
  14.  
  15. function variable_function.$randomn_info() {
  16. echo 'this is the first message';
  17. }
Add Comment
Please, Sign In to add comment