Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. if (is_product_tag( 'adexample1' )) {
  3. echo "test1";
  4. } elseif (is_product_tag( 'adexample2' )){
  5. echo "test2";
  6. } elseif (is_product_tag( 'adexample3' )){
  7. echo "test3";
  8. } elseif (is_product_tag( 'adexample4' )){
  9. echo "test4";
  10. } elseif (is_product_tag( 'adexample5' )){
  11. echo "test5";
  12. } else {
  13. echo "<p>test6</p>";
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement