Automatically share your WordPress posts on multiple social networks like Facebook, X (Twitter), LinkedIn, Instagram and more.
Category Scores
Top Issues by Category
maintainability378
security194
Issues Details
680 issues found in latest scan
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'rop_get_key_' . $key".
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.
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Rop".
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
Detected usage of a non-sanitized input variable: $_GET['code']
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$arguments".
print_r() found. Debug code should not normally be used in production.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"\n'.
Processing form data without nonce verification.
Detected usage of a possibly undefined superglobal array index: $_GET['oauth_verifier']. Check that the array index exists before using it.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "ROP_APP_FACEBOOK_PATH".
$_GET['code'] not unslashed before sanitization. Use wp_unslash() or similar
Short URL detected (bit.ly). Use full URLs instead of URL shorteners.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found interpolation in unescaped heredoc.
Function "register_post_meta()" requires WordPress 4.9.8, but your plugin minimum supported version is WordPress 4.7.0.
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.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "deactivate_rop".
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
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 parameter "' '" at position #3 of add_option() has been deprecated since WordPress version 2.3.0. Use "" instead.
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'rop_get_key_' . $key". | 91 |
| 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. | 59 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Rop". | 51 |
| WordPress.WP.AlternativeFunctions.curl_curl_setopt | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 50 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['code'] | 46 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$arguments". | 36 |
| WordPress.PHP.DevelopmentFunctions.error_log_print_r | WARNING | print_r() found. Debug code should not normally be used in production. | 33 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"\n'. | 31 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 31 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_GET['oauth_verifier']. Check that the array index exists before using it. | 31 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "ROP_APP_FACEBOOK_PATH". | 24 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['code'] not unslashed before sanitization. Use wp_unslash() or similar | 24 |
| PluginCheck.CodeAnalysis.ShortURL.Found | WARNING | Short URL detected (bit.ly). Use full URLs instead of URL shorteners. | 20 |
| 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. | 18 |
| WordPress.Security.EscapeOutput.HeredocOutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found interpolation in unescaped heredoc. | 17 |
| wp_function_not_compatible_with_requires_wp | ERROR | Function "register_post_meta()" requires WordPress 4.9.8, but your plugin minimum supported version is WordPress 4.7.0. | 10 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 9 |
| WordPress.WP.AlternativeFunctions.curl_curl_init | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 8 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "deactivate_rop". | 7 |
| WordPress.WP.AlternativeFunctions.curl_curl_exec | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 7 |
| WordPress.WP.AlternativeFunctions.parse_url_parse_url | ERROR | parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead. | 7 |
| WordPress.WP.AlternativeFunctions.curl_curl_close | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 6 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 5 |
| 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. | 5 |
| WordPress.WP.DeprecatedParameters.Add_optionParam3Found | ERROR | The parameter "' '" at position #3 of add_option() has been deprecated since WordPress version 2.3.0. Use "" instead. | 5 |
Latest Snapshot
Findings
680
Errors
255
Warnings
425
Score History
First score snapshot
First scan completed Jun 20, 2026
v9.3.6 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v9.3.6
21
Latest
- Findings
- 680
- Errors
- 255
- Warnings
- 425
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 21 | 680 | 255 | 425 | v9.3.6 | 2.0.0 | 2026.06-mvp-static-v2 |
Related Plugins
50k+ active installs