-1

我在显示内容中有这段代码,它使用“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'}

正如您在第三个循环中看到的那样,逗号已被删除,这就是我想要实现的目标。但到目前为止,我不知道如何做到这一点。

我对任何建议、建议和想法持开放态度。

4

3 回答 3

1

您想将其用作 JSON,对吗?为什么不把你的 PHP 和你的 JS 分开呢?

$images = array();
while ( $loop->have_posts() ) : $loop->the_post(); $do_not_duplicate = $post->ID;

  $images[] = (object) array('image' => wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' )[0]);

endwhile;

echo json_encode($images);
于 2013-10-17T10:14:16.630 回答
1
$images = array();
while ( $loop->have_posts() ) : $loop->the_post();$do_not_duplicate = $post->ID;

       $images[] = "{image : '<?php echo get_option('slider3_Field');?>'}";

endwhile;

echo implode(',', $images);
于 2013-10-17T10:11:36.253 回答
0

而不是 echo 将您尝试过的储蓄作为变量,即

while ( $loop->have_posts() ) : $loop->the_post();$do_not_duplicate = $post->ID;

        $str .= "{image : '<?php echo get_option('slider3_Field');?>'},";

    endwhile;

rtrim($str,',');

echo $str;
于 2013-10-17T10:12:13.533 回答