WordPress team plugin to showcase team members with grid, slider, and filterable layouts. Fully compatible with Elementor & Gutenberg.
Category Scores
Top Issues by Category
maintainability780
security8
repo_compliance3
Issues Details
793 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_title".
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "RT\Team\Abstracts".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "rttlp_team_pro_template_path".
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EDD_TLP_TEAM_ITEM_ID".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filterName".
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "TLPTeam".
Detected usage of a non-sanitized input variable: $_REQUEST[$metaKey]
Function "wp_body_open()" requires WordPress 5.2.0, but your plugin minimum supported version is WordPress 5.0.0.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'do_blocks'.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "RttlpTeam".
print_r() found. Debug code should not normally be used in production.
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
Detected usage of a possibly undefined superglobal array index: $_REQUEST['id']. Check that the array index exists before using it.
$_REQUEST[$metaKey] not unslashed before sanitization. Use wp_unslash() or similar
Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
Your plugin has a different license declared in the readme file and plugin header. Please update your readme with a valid GPL license identifier.
Plugin name "Team - Team Members Showcase Plugin" is different from the name declared in plugin header "Team".
The "/vendor" directory using composer exists, but "composer.json" file is missing.
The "Plugin Name" header in the plugin file is not valid. It needs to contain at least 5 latin letters (a-Z) and/or numbers. This is necessary because the initial plugin slug is generated from the name.
The plugin name includes a restricted term. Your chosen plugin name - "Team - Team Members Showcase Plugin" - contains the restricted term "plugin" which cannot be used at all in your plugin name.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_title". | 670 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound | WARNING | Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "RT\Team\Abstracts". | 61 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "rttlp_team_pro_template_path". | 14 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EDD_TLP_TEAM_ITEM_ID". | 11 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filterName". | 6 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "TLPTeam". | 6 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_REQUEST[$metaKey] | 3 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "wp_body_open()" requires WordPress 5.2.0, but your plugin minimum supported version is WordPress 5.0.0. | 3 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found 'do_blocks'. | 2 |
| five_star_reviews_detected | ERROR | Linking directly to 5 stars reviews is not allowed. | 2 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 2 |
| PluginCheck.CodeAnalysis.DiscouragedFunctions.load_plugin_textdomainFound | WARNING | load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed. | 1 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "RttlpTeam". | 1 |
| WordPress.PHP.DevelopmentFunctions.error_log_print_r | WARNING | print_r() found. Debug code should not normally be used in production. | 1 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed. | 1 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_REQUEST['id']. Check that the array index exists before using it. | 1 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_REQUEST[$metaKey] not unslashed before sanitization. Use wp_unslash() or similar | 1 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_post__not_in | WARNING | Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information. | 1 |
| license_mismatch | ERROR | Your plugin has a different license declared in the readme file and plugin header. Please update your readme with a valid GPL license identifier. | 1 |
| mismatched_plugin_name | WARNING | Plugin name "Team - Team Members Showcase Plugin" is different from the name declared in plugin header "Team". | 1 |
| missing_composer_json_file | WARNING | The "/vendor" directory using composer exists, but "composer.json" file is missing. | 1 |
| plugin_header_invalid_author_uri | ERROR | The "Author URI" header in the plugin file is not valid. | 1 |
| plugin_header_unsupported_plugin_name | ERROR | The "Plugin Name" header in the plugin file is not valid. It needs to contain at least 5 latin letters (a-Z) and/or numbers. This is necessary because the initial plugin slug is generated from the name. | 1 |
| trademarked_term | WARNING | The plugin name includes a restricted term. Your chosen plugin name - "Team - Team Members Showcase Plugin" - contains the restricted term "plugin" which cannot be used at all in your plugin name. | 1 |
Latest Snapshot
Findings
793
Errors
12
Warnings
781
Score History
First score snapshot
First scan completed Jun 20, 2026
v5.0.16 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v5.0.16
60
Latest
- Findings
- 793
- Errors
- 12
- Warnings
- 781
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 60 | 793 | 12 | 781 | v5.0.16 | 2.0.0 | 2026.06-mvp-static-v2 |