Guest User

Untitled

a guest
Jan 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <img src="[acf field='image' post_id=''. $post_id .'']" />
  2.  
  3. <?php
  4. function my_shortcode() {
  5. $output = '';
  6. $output.= '<img src="[acf field='image' post_id=''. $post_id .'']" />';
  7. return $output;
  8. }
  9.  
  10. function my_shortcode() {
  11. ob_start();
  12. ?> <HTML> <img src="[acf field='image' post_id=''. $post_id .'']" /> <?php
  13. return ob_get_clean();
  14. }
Add Comment
Please, Sign In to add comment