如何将项添加到数组?

时间:2016-07-04 05:45:11

标签: php wordpress

项目:

$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项。

1 个答案:

答案 0 :(得分:0)

要将项目添加到数组的开头,您可以使用array_unshift()

<?php
array_unshift($attachment_ids, $img_url);