php-如何在循环中使用woocommerce数据属性

我有用于列出woocommerce产品的自定义产品类型和自定义循环

$query_args = array(
 'post_type' => 'product',
 'tax_query' => array(
      array(
          'taxonomy' => 'product_type',
          'field'    => 'slug',
          'terms'    => 'custom_type', 
      ),
  ),
);

$r = new WP_Query( $query_args );

if ( $r->have_posts() ) {

我在产品数据中有自定义数据属性.如何循环使用它们?如何过滤具有此属性的产品?

例如,我有颜色和尺寸数据属性.现在如何列出红色和大型产品?

解决方法:

属性只是自定义分类法.请记住,分类法名称将始终是属性名称,并以pa_开头.这只是WooCommerce的命名约定,以避免与分类法名称冲突.要查询多个分类法,请参阅WP Query Parameters中的“多个分类法处理”部分.

例如,如果您要查询产品类型为= custom_type且颜色为red且大小属性为large的产品,则示例args如下所示:

$query_args = array(
 'post_type' => 'product',
 'tax_query' => array(
      array(
          'taxonomy' => 'product_type',
          'field'    => 'slug',
          'terms'    => 'custom_type', 
      ),
      array(
          'taxonomy' => 'pa_color',
          'field'    => 'slug',
          'terms'    => 'red', 
      ),
      array(
          'taxonomy' => 'pa_size',
          'field'    => 'slug',
          'terms'    => 'large', 
      ),
  ),
);
上一篇:php-WooCommerce-感谢和“我的帐户”查看订单页面上的自定义通知


下一篇:php – 在WooCommerce的电子邮件和订单页面中保存并显示产品自定义数据