Ticket #11017 (closed enhancement: duplicate)
add "orderby" parameter to "wp_list_authors()" function
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Themes | Version: | 2.8.4 |
| Severity: | normal | Keywords: | has-patch early |
| Cc: | r_a_m_i@…, WordPress@… |
Description
the wp_list_categories() function has a very useful "orderby" parameter that receives the following:
- ID
- name - Default
- slug
- count
- term_group
i want to add "orderby" parameter to wp_list_authors() function that will receive the following:
- ID
- name - Default
- count
Attachments
Change History
-
attachment
11017.patch
added
- Keywords has-patch added; needs-patch removed
i added 2 parameters:
sort_column :
- ID
- user_login
- user_nicename
- display_name - default
sort_order :
- ASC - default
- DESC
This is not the best solution but it's easy to use.
- Version changed from 2.9 to 2.8.4
- Severity changed from major to normal
orderby :
- ID
- user_login
- user_nicename
- display_name - default
order :
- ASC - default
- DESC
- Keywords early added
- Milestone changed from 2.9 to 3.0
Looks good, but all enhanements are being postponed from 2.9. Let's commit this early in the 3.0 cycle.
Note: See
TracTickets for help on using
tickets.

patch based on some other function...