<?php
$dVC=array();
query_posts(\'meta_key=featuredt&posts_per_page=5\');
if (have_posts()) :
while (have_posts()) : the_post();
$dVC []= $post->post_content;?>
<div id="featuredt-<?php echo $wp_query->current_post;?>">
<?php echo get_post_meta($post->ID, \'featuredt\', TRUE);?></div>
<?php endwhile;
endif;
json_encode($dVC);
?>
这是我目前的循环。
我需要json编码的变量看起来像[“0”:content,“1”:content],这样我就可以使用jQuery了。上面的parseJSON()。我不介意别人告诉我关于jQuery的事情。getJSON(),但我对如何使用它知之甚少,而对parseJSON知之甚少。请在解释时提供详细的例子,我真的很感激能得到的任何帮助。