Number one WordPress forum plugin with AI features. Full-fledged forum solution with modern forum design. Community builder WordPress forum plugin.
Category Scores
Top Issues by Category
security4,634
maintainability1,889
i18n256
performance17
supply_chain16
Issues Details
6,955 issues found in latest scan
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$sub' style='float:left'>$name</a>"'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$SQL".
Processing form data without nonce verification.
Processing form data without nonce verification.
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
Use placeholders and $wpdb->prepare(); found $batch_query
Detected usage of a non-sanitized input variable: $_FILES['add_lang']['error']['xml']
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Detected usage of a possibly undefined superglobal array index: $_FILES[$argname]['error']. Check that the array index exists before using it.
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
Use placeholders and $wpdb->prepare(); found interpolated variable $col at "SHOW COLUMNS FROM `$table` LIKE '$col'"
Unescaped parameter $batch_query used in $wpdb->get_results()\n$batch_query assigned unsafely at line 313.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "WPF".
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Unescaped parameter $embeddings_table used in $wpdb->get_var()\n$embeddings_table assigned unsafely at line 3018.
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in '%d topic(s) matching your filters have been queued for indexing. %d credit(s) used.'.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
Using exclusionary parameters, like exclude, 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.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 1,647 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$sub' style='float:left'>$name</a>"'. | 1,626 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$SQL". | 1,373 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 318 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 289 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders. | 194 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar | 164 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $batch_query | 163 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['add_lang']['error']['xml'] | 152 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 133 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 127 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_FILES[$argname]['error']. Check that the array index exists before using it. | 104 |
| WordPress.WP.AlternativeFunctions.strip_tags_strip_tags | ERROR | strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead. | 94 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $col at "SHOW COLUMNS FROM `$table` LIKE '$col'" | 76 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $batch_query used in $wpdb->get_results()\n$batch_query assigned unsafely at line 313. | 61 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "WPF". | 49 |
| WordPress.DateTime.RestrictedFunctions.date_date | ERROR | date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead. | 38 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $embeddings_table used in $wpdb->get_var()\n$embeddings_table assigned unsafely at line 3018. | 34 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in '%d topic(s) matching your filters have been queued for indexing. %d credit(s) used.'. | 33 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 31 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 29 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins". | 26 |
| WordPress.WP.AlternativeFunctions.parse_url_parse_url | ERROR | parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead. | 18 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_exclude | WARNING | Using exclusionary parameters, like exclude, 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. | 17 |
| hidden_files | ERROR | Hidden files are not permitted. | 16 |
Latest Snapshot
Findings
6,955
Errors
4,033
Warnings
2,922
Score History
First score snapshot
First scan completed Jun 20, 2026
v3.1.1 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v3.1.1
17
Latest
- Findings
- 6,955
- Errors
- 4,033
- Warnings
- 2,922
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 17 | 6,955 | 4,033 | 2,922 | v3.1.1 | 2.0.0 | 2026.06-mvp-static-v2 |