项目:
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $loop->post->ID ), 'single-post-thumbnail' );
数组:
$attachment_ids = $product->get_gallery_attachment_ids();
foreach( $attachment_ids as $attachment_id )
{
echo '<img src="'.$image_link = wp_get_attachment_url( $attachment_id ).'">';
}
我需要在数组的开头添加$ img_url项。
答案 0 :(得分:0)
要将项目添加到数组的开头,您可以使用array_unshift()
。
<?php
array_unshift($attachment_ids, $img_url);