Display X posts (Twitter tweets) from any public user account in a clean, attractive looking feed that updates weekly.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
640
11 issue groups
Security
612
11 issue groups
I18n
65
3 issue groups
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$actions_attr'.140
- Category
- Security
- Occurrences
- 140
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$actions_attr'.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.122
- Category
- Maintainability
- Occurrences
- 122
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityInterpolated Not PreparedUse placeholders and $wpdb->prepare(); found interpolated variable $cache_table_name at "DELETE FROM $cache_table_name\n118
- Category
- Security
- Occurrences
- 118
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $cache_table_name at "DELETE FROM $cache_table_name\n
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().114
- Category
- Maintainability
- Occurrences
- 114
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "ctf_activate".85
- Category
- Maintainability
- Occurrences
- 85
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "ctf_activate".
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$actions_attr".76
- Category
- Maintainability
- Occurrences
- 76
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$actions_attr".
WARNINGSecurityMissing Unslash$_GET['con_nonce'] not unslashed before sanitization. Use wp_unslash() or similar68
- Category
- Security
- Occurrences
- 68
- Severity
- warning
Sample message
$_GET['con_nonce'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;62
- Category
- Maintainability
- Occurrences
- 62
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.60
- Category
- Maintainability
- Occurrences
- 60
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGSecurityUnescaped DBParameterUnescaped parameter $cache_table_name used in $wpdb->query()\n$cache_table_name assigned unsafely at line 279.55
- Category
- Security
- Occurrences
- 55
- Severity
- warning
Sample message
Unescaped parameter $cache_table_name used in $wpdb->query()\n$cache_table_name assigned unsafely at line 279.
Show 15 moreShow less
WARNINGSecurityMissing53
- Category
- Security
- Occurrences
- 53
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRecommended52
- Category
- Security
- Occurrences
- 52
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon Prefixed Hookname Found44
- Category
- Maintainability
- Occurrences
- 44
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "ctf_admin_notices".
WARNINGSecurityInput Not Sanitized34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['file']['name']
ERRORSecurityUnsafe Printing Function33
- Category
- Security
- Occurrences
- 33
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGMaintainabilityNo Code Found27
- Category
- Maintainability
- Occurrences
- 27
- Severity
- warning
Sample message
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.
WARNINGMaintainabilityNon Prefixed Constant Found24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "CTF_BUILDER_DIR".
ERRORI18nMissing Translators Comment24
- Category
- I18n
- Occurrences
- 24
- 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.
ERRORSecurityUnescaped DBParameter23
- Category
- Security
- Occurrences
- 23
- Severity
- error
Sample message
Unescaped parameter $escaped_where_clause_string used in $wpdb->get_results()\n$escaped_where_clause_string assigned unsafely at line 62.
ERRORI18nUnordered Placeholders Text21
- Category
- I18n
- Occurrences
- 21
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in '%sLearn more about custom formats %s'.
ERRORI18nMissing Arg Domain20
- Category
- I18n
- Occurrences
- 20
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORSecurityNot Prepared19
- Category
- Security
- Occurrences
- 19
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $sql
WARNINGMaintainabilitySchema Change18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGSecurityInput Not Validated17
- Category
- Security
- Occurrences
- 17
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['file']['name']. Check that the array index exists before using it.
ERRORMaintainabilityrand rand8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
Score History
First score snapshot
v2.6.1
24
Latest
- Findings
- 1,368
- Errors
- 446
- Warnings
- 922
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 1,368 | 446 | 922 | v2.6.1 | 2.0.0 |