Effortlessly set up WordPress themes with WPelemento Importer. One-click demo imports, Elementor compatibility, and support for diverse themes.
Category Scores
Top Issues by Category
i18n96
security83
maintainability67
Issues Details
249 issues found in latest scan
Mismatched text domain. Expected 'wpelemento-importer' but got 'film-production'.
Processing form data without nonce verification.
$_GET['plugin'] not unslashed before sanitization. Use wp_unslash() or similar
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.
Detected usage of a non-sanitized input variable: $_GET['plugin']
Processing form data without nonce verification.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$button_html'.
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: "enqueue_custom_admin_notice_styles".
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EDI_BASE".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "tgmpa_notice_action_links".
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$this->plugin_name . '_theme_setup_wizard_page_slug'".
Detected usage of a possibly undefined superglobal array index: $_POST['bdi_admin_notice_id']. Check that the array index exists before using it.
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.
The plugin name includes a restricted term. Your chosen plugin name - "WPElemento Importer" - contains the restricted term "wp" which cannot be used at all in your plugin name.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "BDI_Admin_Notice".
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
unlink() is discouraged. Use wp_delete_file() to delete a file.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'wpelemento-importer' but got 'film-production'. | 89 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 18 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['plugin'] not unslashed before sanitization. Use wp_unslash() or similar | 17 |
| 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. | 16 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['plugin'] | 15 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 13 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$button_html'. | 12 |
| 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. | 9 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "enqueue_custom_admin_notice_styles". | 8 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to esc_attr_e(). | 7 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EDI_BASE". | 6 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "tgmpa_notice_action_links". | 5 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 5 |
| WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$this->plugin_name . '_theme_setup_wizard_page_slug'". | 4 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_POST['bdi_admin_notice_id']. Check that the array index exists before using it. | 4 |
| badly_named_files | ERROR | File and folder names must not contain spaces or special characters. | 4 |
| 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. | 3 |
| trademarked_term | WARNING | The plugin name includes a restricted term. Your chosen plugin name - "WPElemento Importer" - contains the restricted term "wp" which cannot be used at all in your plugin name. | 3 |
| WordPress.WP.AlternativeFunctions.curl_curl_setopt | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 2 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "BDI_Admin_Notice". | 1 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 1 |
| WordPress.WP.AlternativeFunctions.curl_curl_close | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 1 |
| WordPress.WP.AlternativeFunctions.curl_curl_exec | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 1 |
| WordPress.WP.AlternativeFunctions.curl_curl_init | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 1 |
| WordPress.WP.AlternativeFunctions.unlink_unlink | ERROR | unlink() is discouraged. Use wp_delete_file() to delete a file. | 1 |
Latest Snapshot
Findings
249
Errors
126
Warnings
123
Score History
First score snapshot
First scan completed Jun 20, 2026
v0.7.0 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v0.7.0
35
Latest
- Findings
- 249
- Errors
- 126
- Warnings
- 123
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 35 | 249 | 126 | 123 | v0.7.0 | 2.0.0 | 2026.06-mvp-static-v2 |