Exclude fields on users export
-
Hello.
I’m trying to exclude some fields in export csv file.
I am using this filter but do not works.
Could you give an orientation about this?
Thank you.add_filter( 'wpmem_export_args', 'my_export_args' ); function my_export_args( $args ) { $args['exclude_fields'] = array( 'password', 'confirm_password', 'confirm_email', 'billing_country', 'description', 'tos', 'billing_address_2', 'billing_city', 'billing_postcode', 'billing_state' ); return $args; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Exclude fields on users export’ is closed to new replies.