Make your website load FASTER by stopping specific styles (.CSS) & scripts (.JS) from loading. It works best with a page caching plugin / service.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
2,531
9 issue groups
Maintainability
1,689
12 issue groups
I18n
193
4 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$keyToCheck".1,328
- Category
- Maintainability
- Occurrences
- 1,328
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$keyToCheck".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><strong>Group:</strong> $group - ( "'.1,012
- Category
- Security
- Occurrences
- 1,012
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<li><strong>Group:</strong> $group - ( "'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.434
- Category
- Security
- Occurrences
- 434
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.394
- Category
- Security
- Occurrences
- 394
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_GET[$annIdQuery] not unslashed before sanitization. Use wp_unslash() or similar246
- Category
- Security
- Occurrences
- 246
- Severity
- warning
Sample message
$_GET[$annIdQuery] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['wpacu_import_file']['tmp_name']233
- Category
- Security
- Occurrences
- 233
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['wpacu_import_file']['tmp_name']
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;128
- Category
- Maintainability
- Occurrences
- 128
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORI18nMissing Translators CommentA 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.123
- Category
- I18n
- Occurrences
- 123
- Severity
- error
Sample message
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.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.113
- Category
- Security
- Occurrences
- 113
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityNot AllowedUse of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead73
- Category
- Maintainability
- Occurrences
- 73
- Severity
- error
Sample message
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
Show 15 moreShow less
WARNINGSecurityInput is not validated41
- Category
- Security
- Occurrences
- 41
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['page']. Check that the array index exists before using it.
WARNINGMaintainabilityDirect Query35
- Category
- Maintainability
- Occurrences
- 35
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching35
- Category
- Maintainability
- Occurrences
- 35
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORSecuritySQL query is not prepared35
- Category
- Security
- Occurrences
- 35
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $anyPagesWithSpecialOptionsQuery
ERRORI18nUnordered Placeholders Text35
- Category
- I18n
- Occurrences
- 35
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in 'The value of <strong>max_input_vars</strong> is <strong>%d</strong>. That\'s below <strong>1000</strong> (the default one in many hosting accounts). Increase it to a higher number, ideally over %d.'.
ERRORSecurityDatabase parameter is not escaped23
- Category
- Security
- Occurrences
- 23
- Severity
- error
Sample message
Unescaped parameter $anyPagesWithSpecialOptionsQuery used in $wpdb->get_col()\n$anyPagesWithSpecialOptionsQuery assigned unsafely at line 919.
ERRORI18nMissing Arg Domain23
- Category
- I18n
- Occurrences
- 23
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORMaintainabilitystrip tags strip tags17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORMaintainabilityNon Enqueued Stylesheet17
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
Stylesheets must be registered/enqueued via wp_enqueue_style()
ERRORMaintainabilityparse url parse url13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
WARNINGMaintainabilityNon-prefixed hook name12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
ERRORI18nText Domain Mismatch12
- Category
- I18n
- Occurrences
- 12
- Severity
- error
Sample message
Mismatched text domain. Expected 'wp-asset-clean-up' but got 'easy-digital-downloads'.
ERRORMaintainabilitydate date11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityunlink unlink11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORMaintainabilityOffloaded Content9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.4.0.4
22
Latest
- Findings
- 4,515
- Errors
- 2,030
- Warnings
- 2,485
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 4,515 | 2,030 | 2,485 | v1.4.0.4 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.