如何在wordpress中使用wp_Query输出JSON?

时间:2011-07-09 14:24:06

标签: php arrays json wordpress

我尝试使用wordpress发布数据并结合meta_key值来输出或创建json。

这是我正在使用的代码,但它正确地形成了JSON。

$query = new WP_Query('cat=4&meta_key=meta_long');

echo "var json=". json_encode($query);

关于如何做到这一点的任何想法?

3 个答案:

答案 0 :(得分:15)

试试这个:

$query = new WP_Query('cat=4&meta_key=meta_long');

echo "var json=". json_encode($query->get_posts());

答案 1 :(得分:3)

Femi的方法很棒,但如果您的目标是使用JS文件中的WP_Query数据,那么我建议您查看wp_localize_script函数。

/**
 * WP_Query as JSON
 */
function kevinlearynet_scripts() {

    // custom query
    $posts = new WP_Query( array(
        'category__in' => 4,
        'meta_key' => 'meta_long',
    ) );

    // to json
    $json = json_decode( json_encode( $posts ), true );

    // enqueue our external JS
    wp_enqueue_script( 'main-js', plugins_url( 'assets/main.min.js', __FILE__ ), array( 'jquery' ) );

    // make json accesible within enqueued JS
    wp_localize_script( 'main-js', 'customQuery', $json );
}
add_action( 'wp_enqueue_scripts', 'kevinlearynet_scripts' );

这将在window.customQuery中创建main.min.js对象。

答案 2 :(得分:1)

进一步扩展Femi的方法,如果你只想返回一些循环数据+自定义字段尝试这样的事情:

<?php

// return in JSON format
header( 'Content-type: application/json' );

// Needed if you want to manually browse to this location for testing
define('WP_USE_THEMES', false);
$parse_uri = explode( 'wp-content', $_SERVER['SCRIPT_FILENAME'] );
require_once( $parse_uri[0] . 'wp-load.php' );

// WP_Query arguments
$args = array (

'post_type'              => 'location',
'post_status'            => 'publish',
'name'                   => $_GET["location"],

);

// The Query
$loop = new WP_Query( $args );

//the loop
while ( $loop->have_posts() ) : $loop->the_post();

    // create an array if there is more than one result        
    $locations = array();

     // Add in your custom fields or WP fields that you want
     $locations[] = array(
       'name' => get_the_title(),
       'address' => get_field('street_address'),
       'suburb' => get_field('suburb'),
       'postcode' => get_field('postcode'),
       'phone_number' => get_field('phone_number'),
       'email' => get_field('email_address')
     );

endwhile;

wp_reset_query();

// output
echo json_encode( $locations );

?>