'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->ID, 'post__not_in' => array($thumb_id), 'post_mime_type'=> 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'meta_query' => array( array( 'key' => '_woocommerce_exclude_image', 'value' => '1', 'compare' => '!=' ) ) ); $attachments = get_posts($args); if ($attachments) : $loop = 0; $columns = apply_filters('woocommerce_product_thumbnails_columns', 3); foreach ( $attachments as $attachment ) : $loop++; $_post = & get_post( $attachment->ID ); $url = wp_get_attachment_url($_post->ID); $post_title = esc_attr($_post->post_title); $image = wp_get_attachment_image($attachment->ID, $small_thumbnail_size); echo ''.$image.''; endforeach; endif; wp_reset_query(); ?>