WP Manifestindependent plugin directory
manifest / content / appverse-team-manager

Appverse Team Manager

Custom WordPress plugin for team management

by Mehak Zohra · github.com/mehakzohra/appverse-team-manager · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/mehakzohra/appverse-team-manager/archive/refs/heads/main.zip

Readme

Appverse Team Manager

A custom WordPress plugin to manage and display your team members.

Features

  • Team Member custom post type
  • Department custom taxonomy (hierarchical)
  • ACF Pro fields: Position, Bio, Email, LinkedIn, Photo
  • Shortcode [appverse_team] — responsive frontend grid
  • AJAX department filtering — no page reload
  • Admin dashboard widget — shows team member counts per department
  • Clean uninstall — removes all plugin data on delete

Requirements

Installation

  1. Copy the appverse-team-manager folder into wp-content/plugins/.
  2. Activate Appverse Team Manager from the Plugins screen.
  3. Make sure ACF Pro is installed and active.
  4. Go to Team Members → Add New to add team members, assign a Department, and fill in the ACF fields.
  5. Add the shortcode [appverse_team] to any page or post to display the grid.

Folder Structure

appverse-team-manager/
├── appverse-team-manager.php   # Main plugin file
├── includes/
│   ├── cpt-team-member.php     # Custom Post Type
│   ├── taxonomy-department.php # Department taxonomy
│   ├── acf-fields.php          # ACF Pro field group (registered via PHP)
│   ├── shortcode.php           # [appverse_team] shortcode + grid renderer
│   ├── ajax-filter.php         # AJAX filter handler
│   └── admin-widget.php        # Dashboard widget
├── assets/
│   ├── css/style.css
│   └── js/filter.js
├── uninstall.php
└── README.md

Author

Mehak Zohra

Read the full README on GitHub →