如何为WP REST API循环返回数据?

时间:2017-08-20 05:10:35

标签: php wordpress wordpress-rest-api

function getProgramTourInfoByID(){

            $data = getProgramTourInfoByCate();
            //print_r($data);

            foreach ($data  as $key => $id) {

                //echo( $id);
                    $count =0;
                while( have_rows('package_scd',  $id ) ): the_row(); 
                    //if(get_sub_field('start_date') != null){
                    //echo $id."\r\n";

                    $array[$count]  = array(
                    'id'    =>  $id , 
                    'title' =>  get_the_title($id),
                    'url'   =>  get_the_permalink($id),
                    'start' =>  get_sub_field('start_date'),
                    'end'   =>  get_sub_field('end_date'),
                    'price_single_room' => get_sub_field('price_single_room'),
                    'price_adult' =>  get_sub_field('price_adult'),
                    'type'  =>  "restricted",

                    );


                    $count ++; 
                endwhile; 



            }

            $output  = array('sourcename' => $array );

    return  $output;              
}


function getProgramTourInfoByCate(){
          $term_id = 3;
          $args  = array(
            'post_type' => array( 'package'),
            'posts_per_page' => -1,
            'post_status' => array('publish') , 
            'tax_query' => array(
                      array(
                        'taxonomy' => 'tour-categories',
                        'field' => 'id',
                        'terms' => $term_id,
                        'order'=>'DESC',
                        'orderby'=>'menu_order',
                      )
                    )
              );

              $query = new WP_Query($args);

              if($query->have_posts()): 

                while($query->have_posts()): 
                    $query->the_post();

                        $arr[] = get_the_ID();

                endwhile;

            return $arr; 

            endif;
}

这是我的代码,但它返回错误的输出。当我在循环echo $id中测试while( have_rows('package_scd', $id ) ): the_row()时,会返回数据库中的所有ID,这是正确的输出:

enter image description here

但是当我返回$output = array('sourcename' => $array )时。只返回两个ID(24930和18367)我不知道为什么剩下的ID不会来。

enter image description here

1 个答案:

答案 0 :(得分:0)

可能是它的覆盖$数组键.. 声明,

$count = 0;
$array = array();
在foreach循环开始之前

。  我相信,这会奏效。