PHP中的问题过滤woocommerce产品
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP中的问题过滤woocommerce产品相关的知识,希望对你有一定的参考价值。
早上!这应该很容易,我正在尝试按“地区”过滤产品,但我的参数似乎对该查询生成的woocommerce产品列表没有任何影响?请多多帮助。
$args = array(
'type' => 'product',
'meta_query' => array(
'_stock_status' => 'instock',
'Region' => 'Mexico'
)
);
foreach ( wc_get_products( array( $args, 'limit' => -1 ) ) as $product )
foreach ( $product->get_attributes() as $attr_name => $attr )
答案
可能您需要将R更改为r
'Region' => 'Mexico' change to 'region' => 'Mexico'
以上是关于PHP中的问题过滤woocommerce产品的主要内容,如果未能解决你的问题,请参考以下文章
php WooCommerce产品过滤器插件的最终兼容性代码段https://mihajlovicnenad.com/product-filter/
类别页面上产品的 pre_get_posts - woocommerce