## OPTIONS
: The user login, user email, or user ID of the user to get metadata for.
[--keys=]
: Limit output to metadata of specific keys.
[--fields=]
: Limit the output to specific row fields. Defaults to id,meta_key,meta_value.
[--format=]
: Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- count
- yaml
---
## EXAMPLES
# List user meta
$ wp user meta list 123 --keys=nickname,description,wp_capabilities
+---------+-----------------+--------------------------------+
| user_id | meta_key | meta_value |
+---------+-----------------+--------------------------------+
| 123 | nickname | supervisor |
| 123 | description | Mary is a WordPress developer. |
| 123 | wp_capabilities | {"administrator":true} |
+---------+-----------------+--------------------------------+