Changes between Initial Version and Version 1 of Ticket #57083
- Timestamp:
- 11/11/2022 11:57:06 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57083 – Description
initial v1 1 Apparently wp_list_authors is loading a depreciated wordpress class called WP Search Users, this class has now been replaced with WP Query Users but wp_list_authorskeeps using WP Search Users.1 Apparently `wp_list_authors` is loading a deprecated WordPress class called WP Search Users, this class has now been replaced with WP Query Users but `wp_list_authors` keeps using WP Search Users. 2 2 3 3 However the case wp list authors is only accepting some parameters, neither through array or through post accepted more parameter, meaning that something like this worked: … … 12 12 wp_list_authors('orderby=name&order=ASC'); 13 13 }}} 14 or even 14 15 or even 15 16 {{{ 16 17 wp_list_authors('orderby=name&order=DESC&optioncount=1'); … … 28 29 echo $authors; 29 30 }}} 30