我在显示内容中有这段代码,它使用“while”循环
<?php
$mypost = array( 'post_type' => 'testimonials', );
$loop = new WP_Query( $mypost );
while ( $loop->have_posts() ) : $loop->the_post();$do_not_duplicate = $post->ID;
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
echo "{image : '$image[0];'},";
endwhile;
?>
但我想要实现的是,删除最后一个循环的逗号,例如我有 3 个东西要循环,那么场景应该是这样的。
{image : 'http://website.com/wp-content/uploads/2013/09/image1.jpg'},
{image : 'http://website.com/wp-content/uploads/2013/09/image2.jpg'},
{image : 'http://website.com/wp-content/uploads/2013/09/image3.jpg'}
正如您在第三个循环中看到的那样,逗号已被删除,这就是我想要实现的目标。但到目前为止,我不知道如何做到这一点。
我对任何建议、建议和想法持开放态度。