Robo Gallery is a powerful image gallery and photo gallery plugin with advanced features to create responsive galleries with a beautiful lightbox
Category Scores
Top Issues by Category
security1,282
maintainability413
Issues Details
1,821 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<a href=\"#{$category_slug}\" class=\"nav-tab nav-tab-{$category_slug}\">{$category['name']}</a>"'.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$allImages".
Processing form data without nonce verification.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
$_GET[$fieldName] not unslashed before sanitization. Use wp_unslash() or similar
Detected usage of a non-sanitized input variable: $_GET[$fieldName]
Function "get_rest_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.3.0.
Mismatched text domain. Expected 'robo-gallery' but got 'cmb'.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_robo_gallery_button".
Processing form data without nonce verification.
Sanitization missing for register_setting().
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Gallery_RoTeam_AddonAction".
Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Could not find template path. Template: {$templatePath}"'.
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.
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Detected usage of a possibly undefined superglobal array index: $_POST['plugin']. Check that the array index exists before using it.
Use placeholders and $wpdb->prepare(); found interpolated variable $placeholders at "SELECT ID FROM {$wpdb->posts} WHERE ID IN ($placeholders) AND post_type = %s"
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.
Detected usage of meta_key, possible slow query.
The parameter "'hide_empty=0'" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
| 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 '"<a href=\"#{$category_slug}\" class=\"nav-tab nav-tab-{$category_slug}\">{$category['name']}</a>"'. | 796 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 212 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$allImages". | 114 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 109 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 95 |
| Internal.LineEndings.Mixed | WARNING | File has mixed line endings; this may cause incorrect results | 83 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 68 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET[$fieldName] not unslashed before sanitization. Use wp_unslash() or similar | 52 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET[$fieldName] | 44 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "get_rest_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.3.0. | 40 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'robo-gallery' but got 'cmb'. | 38 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_robo_gallery_button". | 30 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 24 |
| PluginCheck.CodeAnalysis.SettingSanitization.register_settingMissing | ERROR | Sanitization missing for register_setting(). | 16 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Gallery_RoTeam_AddonAction". | 14 |
| WordPress.WP.EnqueuedResourceParameters.NoExplicitVersion | ERROR | Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_enqueue_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development. | 10 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 8 |
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Could not find template path. Template: {$templatePath}"'. | 8 |
| 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. | 8 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 7 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_POST['plugin']. Check that the array index exists before using it. | 7 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $placeholders at "SELECT ID FROM {$wpdb->posts} WHERE ID IN ($placeholders) AND post_type = %s" | 6 |
| 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. | 5 |
| WordPress.DB.SlowDBQuery.slow_db_query_meta_key | WARNING | Detected usage of meta_key, possible slow query. | 4 |
| WordPress.WP.DeprecatedParameters.Get_termsParam2Found | WARNING | The parameter "'hide_empty=0'" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter. | 3 |
Latest Snapshot
Findings
1,821
Errors
1,291
Warnings
530
Score History
First score snapshot
First scan completed Jun 20, 2026
v5.1.5 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v5.1.5
23
Latest
- Findings
- 1,821
- Errors
- 1,291
- Warnings
- 530
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 23 | 1,821 | 1,291 | 530 | v5.1.5 | 2.0.0 | 2026.06-mvp-static-v2 |