Support

Account

Home Forums Backend Issues (wp-admin) ACF image shortcode not working Reply To: ACF image shortcode not working

  • Hi @suresh

    You could store the post ids in a dynamic variable and then echo the shortcode depending on the post id stored like so:

    //some logic to get the post id
    $post_id = $value;
    
    <img src="[acf field='interview_first_image' post_id="'. $post_id .'"]" />