Support

Account

Home Forums General Issues the_image not returning value in media attachments Reply To: the_image not returning value in media attachments

  • Hi @digisavvy
    Perhaps you should debug your code. I would start by finding out if the global $post object is correct.

    Try this:

    
    <?php 
    
    global $post;
    
    echo '<pre>';
    	print_r($post);
    echo '</pre>';
    die;
    
     ?>
    

    What do you get?