【发布时间】:2018-02-01 22:05:20
【问题描述】:
我正在使用 WooCommerce,我需要一些帮助。如何将搜索功能扩展到管理员 WooCommerce 订单列表中的客户电话号码?
这实际上是我的代码。
function woocommerce_shop_order_search_custom_keys( $search_fields ) {
$search_fields[] = '_order_number';
$search_fields[] = '_billing_phone';
$search_fields[] = '_billing_id';
return $search_fields;
}
但不工作
编辑:我也尝试将此添加到我的代码中,但没有成功:
add_filter( 'woocommerce_shop_order_search_fields', 'woocommerce_shop_order_search_custom_keys' );
【问题讨论】:
-
你是怎么调用这个函数的?在一些钩子上?仅此功能无法给出任何想法。
-
是的,我不知道如何调用如何搜索
-
刚刚我添加了行
-
add_filter('woocommerce_shop_order_search_fields', 'woocommerce_shop_order_search_custom_keys');我这样叫
-
但不工作
标签: php wordpress search woocommerce orders