Fix attachments list on single items

This commit is contained in:
Fabiano 2018-08-03 16:55:45 -03:00
parent f798839552
commit 6ee1e6df41
2 changed files with 13 additions and 5 deletions

View File

@ -200,7 +200,7 @@
left: -50px; left: -50px;
} }
.single-item-collection--attachments-next { .single-item-collection--attachments-next {
right: 0px; right: -10px;
@media only screen and (min-width: 1500px) { @media only screen and (min-width: 1500px) {
right: -25px; right: -25px;
} }
@ -209,7 +209,7 @@
position: absolute; position: absolute;
display: block; display: block;
height: 33px; height: 33px;
width: 18px; width: 45px;
line-height: 0px; line-height: 0px;
font-size: 60px; font-size: 60px;
color: #298596; color: #298596;

View File

@ -61,9 +61,17 @@
<section class="tainacan-content single-item-collection margin-two-column"> <section class="tainacan-content single-item-collection margin-two-column">
<div class="single-item-collection--attachments"> <div class="single-item-collection--attachments">
<?php <?php
foreach ( $images as $attachment ) { foreach ( $images as $attachment ) { ?>
echo '<div class="single-item-collection--attachments-img">' . wp_get_attachment_image( $attachment->ID, 'tainacan-theme-list-post' ) . '</div>'; <div class="single-item-collection--attachments-img">
} <a href="<?php echo get_the_permalink( $attachment->ID ); ?>">
<?php
$image_attributes = wp_get_attachment_image_src( $attachment->ID );
if ( $image_attributes ) : ?>
<img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>" />
<?php endif; ?>
</a>
</div>
<?php }
?> ?>
</div> </div>
</section> </section>