All-in-one enhancement suite that improves WordPress & Advanced Custom Fields.
Category Scores
Top Issues by Category
i18n1,572
security469
maintainability138
Issues Details
2,214 issues found in latest scan
Mismatched text domain. Expected 'acf-extended' but got 'acf'.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"</{$element}>"'.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
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.
Detected usage of a non-sanitized input variable: $_FILES['acf_import_file']
Processing form data without nonce verification.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'acf/fields/post_object/query/key=' . $field['key']".
$_GET['mode'] not unslashed before sanitization. Use wp_unslash() or similar
Detected usage of a possibly undefined superglobal array index: $_GET['option']. Check that the array index exists before using it.
print_r() found. Debug code should not normally be used in production.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_acfe_flexible_render_layout_template_after".
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$all_hook".
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$acf_page_title".
The "acfe/add" prefix is not a valid namespace/function/class/variable/constant prefix in PHP.
In footer ($in_footer) is not set explicitly wp_register_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
var_export() found. Debug code should not normally be used in production.
Found usage of constant "STYLESHEETPATH". Use get_stylesheet_directory() instead.
Found usage of constant "TEMPLATEPATH". Use get_template_directory() instead.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'acf-extended' but got 'acf'. | 1,434 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"</{$element}>"'. | 221 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 95 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 59 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 50 |
| 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. | 43 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['acf_import_file'] | 38 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 34 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'acf/fields/post_object/query/key=' . $field['key']". | 33 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['mode'] not unslashed before sanitization. Use wp_unslash() or similar | 30 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_GET['option']. Check that the array index exists before using it. | 22 |
| WordPress.PHP.DevelopmentFunctions.error_log_print_r | WARNING | print_r() found. Debug code should not normally be used in production. | 17 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_acfe_flexible_render_layout_template_after". | 16 |
| WordPress.Security.SafeRedirect.wp_redirect_wp_redirect | WARNING | wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed. | 15 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 12 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 11 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$all_hook". | 11 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$acf_page_title". | 8 |
| WordPress.NamingConventions.PrefixAllGlobals.InvalidPrefixPassed | WARNING | The "acfe/add" prefix is not a valid namespace/function/class/variable/constant prefix in PHP. | 7 |
| WordPress.WP.EnqueuedResourceParameters.NotInFooter | WARNING | In footer ($in_footer) is not set explicitly wp_register_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header. | 6 |
| WordPress.WP.AlternativeFunctions.strip_tags_strip_tags | ERROR | strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead. | 5 |
| 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. | 3 |
| WordPress.PHP.DevelopmentFunctions.error_log_var_export | WARNING | var_export() found. Debug code should not normally be used in production. | 3 |
| WordPress.WP.DiscouragedConstants.STYLESHEETPATHUsageFound | ERROR | Found usage of constant "STYLESHEETPATH". Use get_stylesheet_directory() instead. | 3 |
| WordPress.WP.DiscouragedConstants.TEMPLATEPATHUsageFound | ERROR | Found usage of constant "TEMPLATEPATH". Use get_template_directory() instead. | 3 |
Latest Snapshot
Findings
2,214
Errors
1,885
Warnings
329
Score History
First score snapshot
First scan completed Jun 20, 2026
v0.9.2.6 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v0.9.2.6
23
Latest
- Findings
- 2,214
- Errors
- 1,885
- Warnings
- 329
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 23 | 2,214 | 1,885 | 329 | v0.9.2.6 | 2.0.0 | 2026.06-mvp-static-v2 |