由于我设置模板的方式,我需要以字符串 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' )
但这不起作用,因为分类法本身就是一个数组。谢谢。