mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/77204036/allow-search-using-billing-email-in-woocommerce-admin-orders-list/77204653
8 lines
304 B
Text
8 lines
304 B
Text
add_filter( 'woocommerce_shop_order_search_fields', 'extending_admin_orders_search_field', 10, 1 );
|
|
function extending_admin_orders_search_field( $meta_keys ){
|
|
$meta_keys[] = '_billing_email';
|
|
$meta_keys[] = '_billing_phone';
|
|
$meta_keys[] = '_payment_method_title';
|
|
|
|
return $meta_keys;
|
|
}
|