All Projects → wearerequired → wp-team-list

wearerequired / wp-team-list

Licence: GPL-2.0 license
👨‍👩‍👧‍👧 A WordPress plugin to display your teammates (users) anywhere on your WordPress site.

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to wp-team-list

em-beer-manager
Manage your beers with WordPress. Integrates simply with Untappd beer checkins. Great for everyone from home brewers to professional breweries!
Stars: ✭ 15 (+0%)
Mutual labels:  wordpress-plugin, widget
advanced-responsive-video-embedder
Probably the the best WP plugin for embedding videos.
Stars: ✭ 32 (+113.33%)
Mutual labels:  wordpress-plugin, shortcode-attributes
import-products-from-gsheet-for-woo-importer
Import products from Google spreadsheet by standard woocommerce import.
Stars: ✭ 16 (+6.67%)
Mutual labels:  wordpress-plugin
iOS-Today-Extension-Simple-Tutorial
iOS Today Extension Simple Tutorial
Stars: ✭ 24 (+60%)
Mutual labels:  widget
wm-settings
Based on the WordPress Settings API, this class generates options pages. It supports all basic input types, selects and all, but also media uploads, which is quite neat.
Stars: ✭ 21 (+40%)
Mutual labels:  wordpress-plugin
commons-booking
Wordpress plugin for managing and booking of common goods. New Version 2: https://github.com/wielebenwir/commonsbooking
Stars: ✭ 24 (+60%)
Mutual labels:  wordpress-plugin
static-404
⚡️ A WordPress plugin to quickly send a 404 for missing static files
Stars: ✭ 24 (+60%)
Mutual labels:  wordpress-plugin
block-navigation
Sidebar with the current post blocks and some tools to facilitate the editing process in the Gutenberg editor.
Stars: ✭ 16 (+6.67%)
Mutual labels:  wordpress-plugin
CatLearnQt
CatLearnQt,提供QWidget,Quick,网络,串口,基础库和示例。案例软件支持样式切换,与国际化。
Stars: ✭ 63 (+320%)
Mutual labels:  widget
VBBNow
A VBB NotificationCenter Widget. It shows the nearby transit information
Stars: ✭ 23 (+53.33%)
Mutual labels:  widget
Registrations-for-WooCommerce
Add a registration product type to your WooCommerce installation.
Stars: ✭ 38 (+153.33%)
Mutual labels:  wordpress-plugin
GridFragment
Android parent Fragment for working with GridViews.
Stars: ✭ 17 (+13.33%)
Mutual labels:  widget
keyboard layout
Keyboard switcher for Awesome WM with additional layouts
Stars: ✭ 48 (+220%)
Mutual labels:  widget
ws-repl
MIGRATED TO https://vcs.rowanthorpe.com/rowan/ws-repl - THIS IS AN ARCHIVED VERSION... Arbitrary REPL in a web-page using websocketd
Stars: ✭ 38 (+153.33%)
Mutual labels:  widget
repeater2-for-gravity-forms
A Gravity Forms add-on that allows specified groups of fields to be repeated by the user.
Stars: ✭ 19 (+26.67%)
Mutual labels:  wordpress-plugin
wp-serverinfo
Display your host's PHP, MYSQL & memcached (if installed) information on your WordPress dashboard.
Stars: ✭ 15 (+0%)
Mutual labels:  wordpress-plugin
acf-vimeo-pro-data
Vimeo PRO Data field for Advanced Custom Fields v5
Stars: ✭ 14 (-6.67%)
Mutual labels:  wordpress-plugin
posts-in-sidebar
Publish a list of posts in your sidebar
Stars: ✭ 19 (+26.67%)
Mutual labels:  widget
wordpress
📚 Recursos para aprender WordPress
Stars: ✭ 20 (+33.33%)
Mutual labels:  wordpress-plugin
dudestack
A toolkit for creating a new professional WordPress project with deployments. Originally based on Roots/bedrock.
Stars: ✭ 82 (+446.67%)
Mutual labels:  wordpress-plugin

Team List

Contributors: wearerequired, swissspidy, neverything, hubersen, ocean90, grapplerulrich
Tags: authors, widget, users, team, blocks
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 5.6
Stable tag: 3.0.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Display your teammates anywhere on your WordPress site using this easy-to-use plugin.

Description

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 block, 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.

Action

Use the wp_team_list hook to directly display the users in your theme or plugin.

For example, you can show users of any role ordered by their name:

<?php
echo do_action( 'wp_team_list', array( 'role' => 'all', 'orderby' => 'name' ) );
?>

Note: Team List supports many of the arguments WP_User_Query supports.

Block

Use the "Team List" block in the block-based editor to display one or more team lists in any post types. You can select one or more roles and change the order. If you want you can also provide a link to a full team page.

Shortcode

Use the [wp_team_list] shortcode to display a team list in your posts. Supported arguments:

  • role - Filter users by roles (comma-separated). Use all to show users with any role. Default: administrator
  • orderby Default: post_count
  • order - Either asc or desc. Default: desc.
  • include - Filter users with specific IDs (comma-separated).
  • has_published_posts - Filter users with published posts. Either a comma-separated list of post types or true to filter by all post types.

Example:

[wp_team_list role="author" orderby="last_name" order="desc"]

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.

Installation

  1. Upload wp-team-list to the /wp-content/plugins/ directory.
  2. Activate the plugin through the 'Plugins' menu in WordPress.
  3. Use one of the supported methods (hook, shortcode, or widget) to display a team list.
  4. Optional: Set the visibility status of your users in their profiles.

Frequently Asked Questions

How do I contribute to Team List?

Easy! You can report bugs, with reproduction steps, or post patches on GitHub.

What kind of filters / hooks are available?

  • wp_team_list_user_role - Filter the user role displayed in the team list.
  • wp_team_list_query_args - Filter the WP_User_Query arguments.
  • wp_team_list_template - Change the team list template. Note: You can also put a rplus-wp-team-list.php file in your theme folder.
  • wp_team_list_avatar_size - Filter the default avatar size.
  • wp_team_list_default_classes - Filter default CSS classes.

Screenshots

  1. This is how your team list can look like with some additional CSS.
  2. The plugin only provides limited styling. It's up to you to adjust it.
  3. The block in the block editor with its settings.
  4. The configuration options of the built-in widget.

Changelog

3.0.4

Changed

  • Tested compatibility with WordPress 5.8

Fixed

  • Fixed missing PHP functions when widget was used with legacy widget in the new WordPress 5.8 widget area.

Added

  • Allow transformation from legacy widget to block

3.0.3

Changed

  • Tested compatibility with WordPress 5.5

Fixed

  • Allow to remove all roles from block settings

3.0.2

Changed

  • Tested compatibility with WordPress 5.3

3.0.1

Fixed

  • Path for stylesheet enqueued in the classic editor

Changed

  • Tested compatibility with WordPress 5.2

3.0.0

Added

  • Block for the block editor to insert a team list in any post type.

Fixed

  • PHP warning when saving a widget.

Changed

  • Refactoring by using PHP namespaces.
  • Bumped WordPress minimum requirement to 5.0.
  • Bumped PHP minimum requirement to 5.6.

Deprecated

  • rplus_wp_team_list_default_classes filter, use wp_team_list_default_classes.

Removed

  • rplus_wp_team_list() and rplus_wp_team_list_classes().

For older versions see CHANGELOG.md.

Upgrade Notice

3.0.0

Introduces a block for the block-based editor and requires now WordPress 5.0 and PHP 5.6.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].