The most advanced frontend drag & drop page builder. Pagelayer is a light weight but extremely powerful Website Builder.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
826
8 issue groups
I18n
263
3 issue groups
Maintainability
202
14 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<a class='nav-tab{$active_class}' href='{$type_url}'>{$type_label}</a>"'.337
- Category
- Security
- Occurrences
- 337
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<a class='nav-tab{$active_class}' href='{$type_url}'>{$type_label}</a>"'.
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().247
- Category
- I18n
- Occurrences
- 247
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityRequest data is not unslashed$_GET[$name] not unslashed before sanitization. Use wp_unslash() or similar132
- Category
- Security
- Occurrences
- 132
- Severity
- warning
Sample message
$_GET[$name] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['userfile']['name']124
- Category
- Security
- Occurrences
- 124
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['userfile']['name']
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$app".86
- Category
- Maintainability
- Occurrences
- 86
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$app".
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES['userfile']['name']. Check that the array index exists before using it.81
- Category
- Security
- Occurrences
- 81
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['userfile']['name']. Check that the array index exists before using it.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.76
- Category
- Security
- Occurrences
- 76
- 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.39
- Category
- Security
- Occurrences
- 39
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitywp function not compatible with requires wpFunction "do_blocks()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 4.7.0.32
- Category
- Maintainability
- Occurrences
- 32
- Severity
- error
Sample message
Function "do_blocks()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 4.7.0.
Show 15 moreShow less
ERRORMaintainabilityMissing direct file access protection25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed hook name14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "enter_title_here".
ERRORI18nMissing Translators Comment8
- Category
- I18n
- Occurrences
- 8
- 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 Text8
- Category
- I18n
- Occurrences
- 8
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $val['title']
ERRORMaintainabilitydate date6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityNot In Footer6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
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.
WARNINGMaintainabilityNon-prefixed function5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "__pl".
WARNINGMaintainabilityerror log trigger error5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
trigger_error() found. Debug code should not normally be used in production.
ERRORMaintainabilityfile system operations mkdir5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
WARNINGMaintainabilityslow db query meta key4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
ERRORMaintainabilityrand rand4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
ERRORMaintainabilitybadly named files4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
File and folder names must not contain spaces or special characters.
ERRORSecuritySQL query is not prepared3
- Category
- Security
- Occurrences
- 3
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $post
WARNINGMaintainabilityslow db query meta value3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
ERRORMaintainabilityNon Enqueued Stylesheet3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
Stylesheets must be registered/enqueued via wp_enqueue_style()
External Connections
Potential connections found in static code analysis.
Outbound calls
176
External assets
14
Incoming endpoints
47
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Admin AJAX endpoints43
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
31 more hidden
Score History
2 score snapshots
v2.1.3
24
Latest
- Findings
- 1,325
- Errors
- 769
- Warnings
- 556
- Check
- 2.0.0
v2.1.2
24
Score
- Findings
- 1,321
- Errors
- 766
- Warnings
- 555
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 1,325 | 769 | 556 | v2.1.3 | 2.0.0 |
| 24 | 1,321 | 766 | 555 | v2.1.2 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.