Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php
  2. /** Adds a new version of the In Stock message for each menu type */
  3. add_action( 'wpd_dataoutput_bottom', 'add_wpd_inventory_data', 10 );
  4. function add_wpd_inventory_data() { ?>
  5. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_flowers', true ) ) { } else { ?>
  6. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  7. <?php } ?>
  8. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_concentrates', true ) ) { } else { ?>
  9. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  10. <?php } ?>
  11. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_edibles', true ) ) { } else { ?>
  12. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  13. <?php } ?>
  14. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_prerolls', true ) ) { } else { ?>
  15. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  16. <?php } ?>
  17. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_topicals', true ) ) { } else { ?>
  18. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  19. <?php } ?>
  20. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_clones', true ) ) { } else { ?>
  21. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  22. <?php } ?>
  23. <?php if ( ! get_post_meta( get_the_ID(), '_inventory_seeds', true ) ) { } else { ?>
  24. <tr><td><span>In stock:</span></td><td>YES</td></tr>
  25. <?php } ?>
  26. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement