xili-language lets you create and manage multilingual WP site in several languages with yours or most famous localizable themes. Ready for CMS design.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,148
9 issue groups
I18n
685
8 issue groups
Maintainability
140
8 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<br /><span class='description'>$desc</span>"'.662
- Category
- Security
- Occurrences
- 662
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<br /><span class='description'>$desc</span>"'.
ERRORI18nNon Singular String Literal DomainThe $domain parameter must be a single text string literal. Found: $textdomain199
- Category
- I18n
- Occurrences
- 199
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: $textdomain
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.186
- Category
- Security
- Occurrences
- 186
- Severity
- error
Sample message
All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.
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.149
- Category
- I18n
- Occurrences
- 149
- 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.
ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $before104
- Category
- I18n
- Occurrences
- 104
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $before
WARNINGI18nLow Level Translation FunctionUse of the "translate()" function is reserved for low-level API usage.89
- Category
- I18n
- Occurrences
- 89
- Severity
- warning
Sample message
Use of the "translate()" function is reserved for low-level API usage.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET['action']85
- Category
- Security
- Occurrences
- 85
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['action']
WARNINGSecurityRequest data is not unslashed$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar85
- Category
- Security
- Occurrences
- 85
- Severity
- warning
Sample message
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().83
- Category
- I18n
- Occurrences
- 83
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_POST[$key]. Check that the array index exists before using it.51
- Category
- Security
- Occurrences
- 51
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST[$key]. Check that the array index exists before using it.
Show 15 moreShow less
WARNINGSecurityMissing nonce verification40
- Category
- Security
- Occurrences
- 40
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORI18nText Domain Mismatch37
- Category
- I18n
- Occurrences
- 37
- Severity
- error
Sample message
Mismatched text domain. Expected 'xili-language' but got "xili-dictionary".
WARNINGMaintainabilityNon-prefixed hook name31
- Category
- Maintainability
- Occurrences
- 31
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'load_plugin_domain_for_curlang_'. str_replace('-', '_', $plugin_domain )".
WARNINGMaintainabilityNon-prefixed function30
- Category
- Maintainability
- Occurrences
- 30
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_again_filter".
WARNINGSecurityNonce verification recommended26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityDirect Query21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORI18nUnordered Placeholders Text18
- Category
- I18n
- Occurrences
- 18
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$1s, %2$2s", but got "%1s, %2s" in 'xili-dictionary: msgid list updated (n=%1s, d=%2s'.
ERRORMaintainabilityDeprecated parameter: get_terms parameter 217
- Category
- Maintainability
- Occurrences
- 17
- Severity
- error
Sample message
The parameter "array ( 'hide_empty' => false )" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
ERRORMaintainabilitystrip tags strip tags8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORSecurityDatabase parameter is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Unescaped parameter $q used in $wpdb->get_col()\n$q assigned unsafely at line 5238.
ERRORMaintainabilityDeprecated function: screen_icon7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
screen_icon() has been deprecated since WordPress version 3.8.0.
WARNINGI18nDiscouraged text-domain loading6
- Category
- I18n
- Occurrences
- 6
- Severity
- warning
Sample message
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.
ERRORSecuritySQL query is not prepared6
- Category
- Security
- Occurrences
- 6
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $q
WARNINGMaintainabilityNon-prefixed constant6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DEFAULTSLUG".
External Connections
Potential connections found in static code analysis.
Outbound calls
48
External assets
0
Incoming endpoints
3
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints3
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v2.21.3
24
Latest
- Findings
- 2,024
- Errors
- 1,501
- Warnings
- 523
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 2,024 | 1,501 | 523 | v2.21.3 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.