List

Export list of users with first and lastname in WP-CLI

Export list of users with first and lastname in WP-CLI

1 Answer. According to the documentation for wp user list , the fields argument accepts any valid WP_User_Query field. Thus, you can simply use wp user list --fields=first_name,last_name --format=csv to list all users with their first and last names. Of course you can add any other fields that you need.

Remove /category/ from category (archive) page URLs (without using a plugin)
How do I remove category names from URL? How do I remove category categories from WordPress URL? How do I remove a product category base? How do I rem...
How to fetch all images from a WordPress draft using PHP?
How do I get all images from WordPress? How do I get a list of all posts in WordPress? How do I fetch post data in WordPress? How do I show recent pos...
Manage roles and capabilities without loads of code
How do I manage roles in WordPress? How do you add capability in user role editor? What do the different WordPress roles mean? How do I add user roles...