Page builder for WordPress with drag and drop header/footer editing, responsive settings, and animations. Compatible with Gutenberg block editor.
Category Scores
Top Issues by Category
security1,405
maintainability130
i18n63
Issues Details
1,643 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$accordion_key'.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
$_GET['anchor'] not unslashed before sanitization. Use wp_unslash() or similar
Detected usage of a non-sanitized input variable: $_GET['dslc_post_id']
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$adslc_query".
Processing form data without nonce verification.
Detected usage of a possibly undefined superglobal array index: $_GET['anchor']. Check that the array index exists before using it.
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.
Mismatched text domain. Expected 'live-composer-page-builder' but got 'easy-digital-downloads'.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DS_LIVE_COMPOSER_ABS".
Detected usage of meta_query, possible slow query.
Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
Detected usage of tax_query, possible slow query.
The $text parameter must be a single text string literal. Found: $current_user_email
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "comment_form_default_fields".
In footer ($in_footer) is not set explicitly wp_enqueue_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.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_live_composer_link_to_admin_bar".
wp_reset_query() is discouraged. Use wp_reset_postdata() instead.
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.
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "LC_Control".
Found usage of constant "TEMPLATEPATH". Use get_template_directory() instead.
Detected usage of meta_key, possible slow query.
| 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 '$accordion_key'. | 940 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 188 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['anchor'] not unslashed before sanitization. Use wp_unslash() or similar | 73 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['dslc_post_id'] | 70 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$adslc_query". | 52 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 48 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_GET['anchor']. Check that the array index exists before using it. | 48 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 38 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 23 |
| 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. | 16 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'live-composer-page-builder' but got 'easy-digital-downloads'. | 15 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DS_LIVE_COMPOSER_ABS". | 11 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_query | WARNING | Detected usage of meta_query, possible slow query. | 10 |
| WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_post__not_in | WARNING | Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information. | 10 |
| WordPress.DB.SlowDBQuery.slow_db_query_tax_query | WARNING | Detected usage of tax_query, possible slow query. | 9 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: $current_user_email | 9 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "comment_form_default_fields". | 8 |
| WordPress.WP.EnqueuedResourceParameters.NotInFooter | WARNING | In footer ($in_footer) is not set explicitly wp_enqueue_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. | 8 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_live_composer_link_to_admin_bar". | 6 |
| WordPress.WP.DiscouragedFunctions.wp_reset_query_wp_reset_query | WARNING | wp_reset_query() is discouraged. Use wp_reset_postdata() instead. | 6 |
| 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. | 5 |
| PluginCheck.CodeAnalysis.EnqueuedResourceOffloading.OffloadedContent | ERROR | Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed. | 4 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "LC_Control". | 4 |
| WordPress.WP.DiscouragedConstants.TEMPLATEPATHUsageFound | ERROR | Found usage of constant "TEMPLATEPATH". Use get_template_directory() instead. | 4 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_key | WARNING | Detected usage of meta_key, possible slow query. | 3 |
Latest Snapshot
Findings
1,643
Errors
1,216
Warnings
427
Score History
First score snapshot
First scan completed Jun 20, 2026
v2.1.17 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v2.1.17
25
Latest
- Findings
- 1,643
- Errors
- 1,216
- Warnings
- 427
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 25 | 1,643 | 1,216 | 427 | v2.1.17 | 2.0.0 | 2026.06-mvp-static-v2 |