How do I get an array or list of users in wordpress? I want to be able to store a new list of authors for permissions for a new plugin I'm working on.
|
feedback
|
|
This will get you an array with users
| ||||
|
feedback
|
|
Everytime you need to do something in Wordpress, is a good practice to check it's documentation, specially function and template tags references. wp_list_authors is an example.
Since you want to manipulate the values from a template tag, you can use the
| |||||
feedback
|
|
This plugin selects from the users and usermeta tables. Looking at the source for it might be a good place to start. | |||
|
feedback
|