Create a Yelp review slider! Allows you to easily display your Yelp business reviews in your Posts, Pages, and Widget areas.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
503
14 issue groups
Security
434
10 issue groups
I18n
122
1 issue group
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$allowed_keys".367
- Category
- Maintainability
- Occurrences
- 367
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$allowed_keys".
ERRORI18nText Domain MismatchMismatched text domain. Expected 'wp-yelp-review-slider' but got 'wp-fb-reviews'.122
- Category
- I18n
- Occurrences
- 122
- Severity
- error
Sample message
Mismatched text domain. Expected 'wp-yelp-review-slider' but got 'wp-fb-reviews'.
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"[$k]=>\""'.101
- Category
- Security
- Occurrences
- 101
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"[$k]=>\""'.
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.99
- Category
- Security
- Occurrences
- 99
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_GET['page']. Check that the array index exists before using it.44
- Category
- Security
- Occurrences
- 44
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['page']. Check that the array index exists before using it.
ERRORSecurityNot PreparedUse placeholders and $wpdb->prepare(); found $filterratingtext43
- Category
- Security
- Occurrences
- 43
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $filterratingtext
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityMissing Unslash$_GET['pnum'] not unslashed before sanitization. Use wp_unslash() or similar37
- Category
- Security
- Occurrences
- 37
- Severity
- warning
Sample message
$_GET['pnum'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityRecommendedProcessing form data without nonce verification.34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
WARNINGSecurityInput Not Sanitized34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['pnum']
WARNINGSecurityUnescaped DBParameter23
- Category
- Security
- Occurrences
- 23
- Severity
- warning
Sample message
Unescaped parameter $table_name used in $wpdb->get_results()
WARNINGSecurityInterpolated Not Prepared14
- Category
- Security
- Occurrences
- 14
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $created_time at " WHERE created_time = '$created_time'"
ERRORMaintainabilitymissing direct file access protection13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilityOffloaded Content12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.
ERRORMaintainabilityEcho Found7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo esc_attr ..." but found "<?= esc_attr ..."
ERRORSecurityUnescaped DBParameter5
- Category
- Security
- Occurrences
- 5
- Severity
- error
Sample message
Unescaped parameter $query used in $wpdb->get_results()\n$query assigned unsafely at line 136.
ERRORMaintainabilitydate date5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilitycurl curl setopt5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
WARNINGMaintainabilitySchema Change4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGMaintainabilityNon Prefixed Function Found4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "activate_WP_Yelp_Review".
ERRORMaintainabilitystrip tags strip tags3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilitytrademarked term3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
The plugin name includes a restricted term. Your chosen plugin name - "WP Yelp Review Slider" - contains the restricted term "wp" which cannot be used at all in your plugin name.
WARNINGMaintainabilityNon Prefixed Constant Found2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "wprev_yelp_plugin_dir".
ERRORMaintainabilityrand rand2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
Score History
First score snapshot
v8.5
25
Latest
- Findings
- 1,074
- Errors
- 429
- Warnings
- 645
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 1,074 | 429 | 645 | v8.5 | 2.0.0 |