我有贴子,每个贴子包含4个附加图像。我想在我的单曲中做什么。php是将所有4个图像src缩写为,以便为每个图像添加不同的类。
<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"/>
这是我尝试过的,但我得到的是一个数组,而不是src。。。我想我真的很接近解决方案,但我无法找出我做错了什么。。。
<?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\' ); ?>"/>
有人能帮我吗?
谢谢