From c79133016a9c6103f6b02feddc7d60fb1a25148d Mon Sep 17 00:00:00 2001 From: Adrian Short Date: Tue, 21 Apr 2015 15:39:30 +0100 Subject: [PATCH] Flatten taxonomy JSON output. Fix #2 --- includes/sites.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/sites.php b/includes/sites.php index 6850356..8532eee 100644 --- a/includes/sites.php +++ b/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;