The best WordPress table plugin. Create responsive, and searchable tables and charts from Excel (.xlsx, .xls or .ods), CSV, XML, JSON, and PHP.
Category Scores
Top Issues by Category
security1,241
maintainability955
Issues Details
2,494 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" data-wp-lists='list:$singular'"'.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" in DEFAULT in directive hash '$id'"'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$X".
Processing form data without nonce verification.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "divi_wpdatatables_initialize_extension".
$_GET['engine'] not unslashed before sanitization. Use wp_unslash() or similar
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Detected usage of a non-sanitized input variable: $_GET['orderby']
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
trigger_error() found. Debug code should not normally be used in production.
Detected usage of a possibly undefined superglobal array index: $_GET['wdtable_cache_verify']. Check that the array index exists before using it.
No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
Function "do_action_deprecated()" requires WordPress 4.6.0, but your plugin minimum supported version is WordPress 4.0.0.
Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "DIVI_DiviWpdt".
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "AMELIA_NUMBER_OF_ACTIVE_INSTALLS".
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "Psr\Http\Client".
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" data-wp-lists='list:$singular'"'. | 464 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" in DEFAULT in directive hash '$id'"'. | 339 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$X". | 220 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 152 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "divi_wpdatatables_initialize_extension". | 102 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['engine'] not unslashed before sanitization. Use wp_unslash() or similar | 93 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 86 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 77 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['orderby'] | 76 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 67 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 60 |
| WordPress.PHP.DevelopmentFunctions.error_log_trigger_error | WARNING | trigger_error() found. Debug code should not normally be used in production. | 56 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_GET['wdtable_cache_verify']. Check that the array index exists before using it. | 54 |
| Internal.NoCodeFound | WARNING | No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them. | 47 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fwrite | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite(). | 47 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "do_action_deprecated()" requires WordPress 4.6.0, but your plugin minimum supported version is WordPress 4.0.0. | 39 |
| WordPress.WP.EnqueuedResourceParameters.NoExplicitVersion | ERROR | Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development. | 38 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fclose | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose(). | 36 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $alterQuery | 34 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "DIVI_DiviWpdt". | 34 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "AMELIA_NUMBER_OF_ACTIVE_INSTALLS". | 32 |
| WordPress.WP.EnqueuedResourceParameters.MissingVersion | WARNING | Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching. | 30 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 29 |
| 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. | 24 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound | WARNING | Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "Psr\Http\Client". | 20 |
Latest Snapshot
Findings
2,494
Errors
1,354
Warnings
1,140
Score History
First score snapshot
First scan completed Jun 20, 2026
v6.5.0.9 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v6.5.0.9
21
Latest
- Findings
- 2,494
- Errors
- 1,354
- Warnings
- 1,140
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 21 | 2,494 | 1,354 | 1,140 | v6.5.0.9 | 2.0.0 | 2026.06-mvp-static-v2 |