Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #57083


Ignore:
Timestamp:
11/11/2022 11:57:06 PM (2 years ago)
Author:
sabernhardt
Comment:

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_authors keeps using WP Search Users.
     1Apparently `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.
    22
    33However 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:
     
    1212wp_list_authors('orderby=name&order=ASC');
    1313}}}
    14   or even
     14
     15or even
    1516{{{
    1617wp_list_authors('orderby=name&order=DESC&optioncount=1');
     
    2829                echo $authors;
    2930}}}
    30