1

テンプレートの設定方法により、次の文字列 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' )

しかし、分類法自体が配列であるため、これは機能しません。ありがとう。

4

1 に答える 1

0

テンプレートで WP_Query 以外のオプションを設定できますか?

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

$the_query = new WP_Query($args);

そうでない場合、テンプレートでこれを行うことができないのはどうですか? コードを投稿できますか?

于 2012-07-12T20:05:58.853 に答える