Schema & Structured Data adds Google Rich Snippets markup according to Schema.org guidelines to structure your site for SEO.
Category Scores
Top Issues by Category
maintainability202
security94
Issues Details
309 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_schemas".
$_POST[$field['name']] not unslashed before sanitization. Use wp_unslash() or similar
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'wisdom_form_text_' . esc_attr( $this->plugin_name )".
Function "get_sites()" requires WordPress 4.6.0, but your plugin minimum supported version is WordPress 4.5.0.
Detected usage of a non-sanitized input variable: $_FILES['saswp-rf-form-image']
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 '$comment'.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
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 meta_query, possible slow query.
Detected usage of meta_key, possible slow query.
Use placeholders and $wpdb->prepare(); found interpolated variable {$dict_table} at INNER JOIN {$dict_table} d\r\n
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "extra_user_profile_fields".
Unescaped parameter $dictionary_table used in $wpdb->get_var()\n$dictionary_table assigned unsafely at line 5606.
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 - "Schema & Structured Data for WP & AMP" - contains the restricted term "wp" which cannot be used at all in your plugin name.
Detected usage of a possibly undefined superglobal array index: $_FILES['saswp-rf-form-image']. Check that the array index exists before using it.
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Invalid file type: %s. Supported file types: %s'.
Unescaped parameter $field used in $wpdb->get_var()\n$field used without escaping.
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Detected usage of meta_value, possible slow query.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AMP_Review_Form_Blacklist".
Resource version not set in call to wp_enqueue_style(). This means new versions of the style may not always be loaded due to browser caching.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$all_schemas". | 114 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_POST[$field['name']] not unslashed before sanitization. Use wp_unslash() or similar | 32 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'wisdom_form_text_' . esc_attr( $this->plugin_name )". | 25 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "get_sites()" requires WordPress 4.6.0, but your plugin minimum supported version is WordPress 4.5.0. | 23 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['saswp-rf-form-image'] | 20 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 16 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$comment'. | 13 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 13 |
| 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. | 8 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_query | WARNING | Detected usage of meta_query, possible slow query. | 7 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_key | WARNING | Detected usage of meta_key, possible slow query. | 5 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable {$dict_table} at INNER JOIN {$dict_table} d\r\n | 4 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "extra_user_profile_fields". | 4 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $dictionary_table used in $wpdb->get_var()\n$dictionary_table assigned unsafely at line 5606. | 3 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 3 |
| 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 - "Schema & Structured Data for WP & AMP" - contains the restricted term "wp" which cannot be used at all in your plugin name. | 3 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_FILES['saswp-rf-form-image']. Check that the array index exists before using it. | 2 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Invalid file type: %s. Supported file types: %s'. | 2 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $field used in $wpdb->get_var()\n$field used without escaping. | 1 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 1 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_value | WARNING | Detected usage of meta_value, possible slow query. | 1 |
| 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. | 1 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AMP_Review_Form_Blacklist". | 1 |
| WordPress.WP.EnqueuedResourceParameters.MissingVersion | WARNING | Resource version not set in call to wp_enqueue_style(). This means new versions of the style may not always be loaded due to browser caching. | 1 |
Latest Snapshot
Findings
309
Errors
63
Warnings
246
Score History
First score snapshot
First scan completed Jun 19, 2026
v1.61 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v1.61
33
Latest
- Findings
- 309
- Errors
- 63
- Warnings
- 246
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 33 | 309 | 63 | 246 | v1.61 | 2.0.0 | 2026.06-mvp-static-v2 |