我有这样一个WP\\U查询。
<?php
$quote_args = array(
\'post_type\' => \'post\',
\'category_name\' => \'quote\',
\'orderby\' => \'rand\',
\'posts_per_page\' => 1
);
$quote = new WP_Query($quote_args);
if($quote->have_posts()):
while($quote->have_posts()):
$quote->the_post();
?>
<div id="testimonialWrap">
<p class="testimonial">
<?php the_content_rss(); ?>
<span><?php echo the_title(); ?></span>
<em></em>
</p>
</div>
<?php
endwhile;
endif;
?>
它只是随机选择引用的帖子。
我的问题是$quote\\u args数组有一组键/值对:(\'post\\u type\'=>\'post\')
这里有可以使用的钥匙列表吗。这些键/值对是否有名称。