rveitch
8/25/2015 - 3:41 PM

Bison Live Video JSON Query (Debug Bar Console)

Bison Live Video JSON Query (Debug Bar Console)

<?php

$args = array( 'post_type' => 'live_video', 'meta_key'=>'start-time',  'orderby' => 'meta_value', 'order' => ASC ); 
$posts_array = get_posts( $args );
//print_r($posts_array);

$json = json_encode($posts_array);

echo $json;