'site', 'posts_per_page' => -1, // -1 for all posts 'post_status' => array( 'publish', 'archive' ), 'orderby' => 'title', 'order' => 'ASC' ); $query = new WP_Query( $options ) or die("WP Query failed"); $sites = array(); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post() ; $meta = get_post_meta( get_the_ID() ); // party_affiliation // hyperlocal_group_id if ( isset( $meta['feed_url'] ) ) $feed_url = $meta['feed_url'][0]; if ( isset( $meta['area_covered'] ) ) $area_covered = html_entity_decode( $meta['area_covered'][0] ); $row = array( 'title' => html_entity_decode( get_the_title() ), 'permalink' => get_permalink(), 'url' => $meta['url'][0], 'feed_url' => $feed_url, 'date_created' => get_the_date("c"), 'date_modified' => get_the_modified_date("c"), 'lat' => (float)$meta['geo_latitude'][0], 'lon' => (float)$meta['geo_longitude'][0], 'radius_miles' => (float)$meta['distance_covered_miles'][0], 'area_covered' => $area_covered, 'body' => get_the_content(), 'country' => tax_first_name( get_the_ID(), 'countries' ), 'council' => tax_first_name( get_the_ID(), 'councils' ), 'platform' => tax_first_name( get_the_ID(), 'platforms' ), 'group' => tax_first_name( get_the_ID(), 'groups' ) ); $sites[]= $row; endwhile; else : echo "No posts matched the query"; endif; if ( isset( $_GET['format'] ) && $_GET['format'] == 'csv' ) { header( "Content-Type: text/csv" ); header('Content-Disposition: attachment; filename="localweblist.csv"'); $fp = fopen('php://output', 'w'); fputcsv( $fp, array( 'title', 'permalink', 'url', 'feed_url', 'date_created', 'date_modified', 'lat', 'lon', 'radius_miles', 'area_covered', 'body', 'country', 'council', 'platform', 'group' ) ); foreach ( $sites as $row ) { fputcsv( $fp, $row ); } fclose($fp); } else { header( "Content-Type: application/json" ); echo json_encode( $sites ); } // Get the name of the first taxonomy term for a given post function tax_first_name( $id, $tax_name ) { $terms = get_the_terms( $id, $tax_name ); if ( $terms ) { $first_term = array_slice( $terms, 0, 1 ); $bare_term = array_shift( $first_term ); $name = $bare_term->name; return( html_entity_decode( $name ) ); } else { return null; } }