Ho post in cui ognuno contiene 4 immagini allegate. quello che sto cercando di fare nel mio single.php è ottenere tutte e 4 le immagini src come abble per aggiungere classi diverse a ciascuna immagine.
<img class="image_1 no_lazy" src="first attached image src"/>
<img class="image_2" src="second attached image src"/>
<img class="image_3" src="third attached image src"/>
<img class="image_4" src="fourth attached image src"/>
ecco quello che ho provato, ma ottengo un array invece di ottenere l'src ... Penso di essere davvero vicino alla soluzione, ma non riesco a scoprire cosa sto facendo di sbagliato ...
<?php
global $post;
$args = array(
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => 'image',
'orderby' => 'menu_order',
'order' => 'ASC',
'numberposts' => 4 );
$images = get_posts($args); ?>
<img class="image_1 no_lazy" src="<?php echo wp_get_attachment_image_src( $images[0]->ID, 'full' ); ?>"/>
<img class="image_2" src="<?php echo wp_get_attachment_image_src( $images[1]->ID, 'full' ); ?>"/>
<img class="image_3" src="<?php echo wp_get_attachment_image_src( $images[2]->ID, 'full' ); ?>"/>
<img class="image_4" src="<?php echo wp_get_attachment_image_src( $images[3]->ID, 'full' ); ?>"/>
qualcuno può aiutarmi con questo?
Grazie
wp_get_attachment_image_url()