如何在wordpress中将数组查询转换为字符串查询?

时间:2012-07-12 15:33:51

标签: wordpress

由于我设置模板的方式,我需要以字符串url格式提供以下内容:

$the_query = array( 'post_type' => 'product', 'taxonomy' => 'product_types', 'term' => 'solar-panel' )

我想像

$the_query = new WP_Query( 'post_type=product&taxonomy=product_types&term=solar-panel&showposts=2' )

但由于分类法本身就是一个数组,因此无法正常工作。感谢。

1 个答案:

答案 0 :(得分:0)

您的模板是否允许您在WP_Query之外设置选项?

$args=array(
  'post_type' => 'product',
  'taxonomy' => 'product_types',
  'term' => 'solar-panel',
);

$the_query = new WP_Query($args);

如果没有,那么您的模板将不允许您这样做?你能发一些代码吗?