>
Download This Plugin | |
Download Elegant Themes | |
Name | WP Team List |
Version | 1.0.1 |
Author | required+ |
Rating | 0 |
Last updated | 2015-02-12 02:05:00 |
Downloads |
77
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WP Team List plugin added 4 bytes of resources to the Home page and 4 bytes of resources to the sample Post page.
WP Team List plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! WP Team List plugin ads no tables to your Wordpress blog database.WP Team List is a plugin that helps you to create a simple team site using your WordPress users with various display options. Either use a shortcode, a template tag or the built-in widget to display blog authors.
After creating similar functionality for a couple of clients, we decided to roll our knowledge into this simple plugin. It's really straightforward to use:
First of all, the plugin adds a small checkbox to the user profile in WordPress to toggle its visibility in the team list. This means you can decide for every user whether he should show up in the team list or not.
You can then use one of these ways to display the list anywhere on your site.
Template Tag
Use the rplus_wp_team_list($args = array(), $echo = true)
function to directly display the users in your teme. If you use echo = false
, the output is only returned, not echoed.
For example, you can show users of any role ordered by their name:
<?php rplus_wp_team_list( array( 'role' => 'all', 'orderby' => 'name' ) ); ?>
Note: WP Team List supports many of the arguments WP_User_Query
supports.
Shortcode
The [rplus_team_list]
accepts the same arguments as the template tag. Example:
[rplus_team_list role="Administrator" orderby="post_count" order="desc"]
This returns all admins ordered by the number of posts they've written (descending).
Pro tip: If you use the Shortcake WordPress plugin, you'll get an inline preview of the shortcode right in the visual editor. You can also add the shortcode with the click of a button.
Widget
Want do display the team members in your sidebar? Use the built-in WordPress widget. You can set the role you want, the number of users to show and even link to a separate team page.