Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. $gtin = get_post_meta(post_ID,'gtin',true);
  3. ?>
  4. <script type="application/ld+json">{
  5. "gtin13:"<?php echo $gtin;?>"</script>}
  6.  
  7. "gtin13:"1112223334"
  8.  
  9. <?php
  10. function check_gtin(){
  11. $gtin=get_post_meta(post_ID,'gtin',true);
  12. if ($gtin!=''){
  13. echo '$gtin13:$gtin';
  14. }else{
  15. echo 'identifier_exits:false';
  16. }
  17. }
  18. ?>
  19. <script type="application/json+ld">{
  20. "<?php check_gtin();?>"</script>}
  21.  
  22. "gtin13:$gtin"
  23.  
  24. "gtin13:1112223334"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement