Linux 软件免费装

List Authors Plus

开发者 Nick Orhn
L Chandler
更新时间 2011年10月1日 02:00
捐献地址: 去捐款
PHP版本: 2.5 及以上
WordPress版本: 2.8.x

标签

admin authors template tags

下载

1.0 1.0.1

详情介绍:

This plugin adds a new template tag, wp_list_authors_plus, which customizes and extends wp_list_authors. The new template tag can take all the parameters possible with wp_list_authors as well as the following new ones:

安装:

  1. Upload entire list-post-authors-plus folder to /wp-content/plugins/ directory
  2. Activate the plugin from the Plugins menu in WordPress
  3. Place template tags (see FAQs) in your theme or use widgets to insert list of top authors in the sidebar. Widgets can be accessed from the Design tab.

常见问题:

How do I call the template tag?

You 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' ) );

Changelog

1.0.1 - bug fix, thanks to Aaron Overton