소스 검색

Flatten taxonomy JSON output. Fix #2

master
Adrian Short 9 년 전
부모
커밋
c79133016a
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      includes/sites.php

+ 4
- 4
includes/sites.php 파일 보기

@@ -36,10 +36,10 @@ if ( $query->have_posts() ) :
'area_covered' => $meta['area_covered'][0],
'body' => get_the_content(),
'area_covered' => $meta['area_covered'][0],
'country' => get_the_terms( get_the_ID(), 'countries' ),
'council' => get_the_terms( get_the_ID(), 'councils' ),
'platform' => get_the_terms( get_the_ID(), 'platforms' ),
'group' => get_the_terms( get_the_ID(), 'groups' )
'country' => array_values(get_the_terms( get_the_ID(), 'countries' ))[0]->name,
'council' => array_values(get_the_terms( get_the_ID(), 'councils' ))[0]->name,
'platform' => array_values(get_the_terms( get_the_ID(), 'platforms' ))[0]->name,
'group' => array_values(get_the_terms( get_the_ID(), 'groups' ))[0]->name
);

$sites[]= $row;


불러오는 중...
취소
저장