开发者 |
Nick Orhn
L Chandler |
---|---|
更新时间 | 2011年10月1日 02:00 |
捐献地址: | 去捐款 |
PHP版本: | 2.5 及以上 |
WordPress版本: | 2.8.x |
/wp-content/plugins/
directoryYou can call the template tag in two ways. The first uses a string as a parameter, and the second uses an array:
wp_list_authors_plus( 'order_by_posts=DESC&excluded_roles=editor, contributor&excluded_ids=1&excluded_usernames=onion' );
wp_list_authors( array( 'order_by_posts' => 'DESC', 'excluded_roles' => 'editor', 'excluded_ids' => array( 1, 2, 3 ), 'excluded_usernames => 'admin' ) );
1.0.1 - bug fix, thanks to Aaron Overton