Advertisement
oscarviedma

Función PHP para crear el shortcode la image QR

Jul 21st, 2022
2,464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. $image_id = get_post_meta(get_the_ID(),'your_meta_key',true);
  3. $image_obj = wp_get_attachment_image_src($image_id,'full');
  4. if(!empty($image_obj)){
  5. ?>
  6. <img src="<?php echo $image_obj[0];?>"/>
  7. <?php
  8. }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement