Hide Image Container if No Image Attachments
You need to add the query before the actualy displaying of the div, then you can run your conditional. According to get_posts() it returns an array, so I’m assuming it returns an empty array if posts aren’t found, thus we can check is it’s not ! empty() <?php $args = array( ‘post_type’ => ‘attachment’, ‘orderby’ … Read more