Setup paid membership, accept payment, sell subscription & digital product, paywall, create login & registration form, user profile & member directory
Category Scores
Top Issues by Category
security2,598
maintainability1,584
Issues Details
4,679 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 class=\"add-new-h2\" href=\"$url\">"'.
Short PHP opening tag used with echo; expected "<?php echo ! ..." but found "<?= ! ..."
Processing form data without nonce verification.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_plan".
$_COOKIE[WP_PPRESS_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar
Processing form data without nonce verification.
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 a possibly undefined superglobal array index: $_FILES['wpua-file']['name']. Check that the array index exists before using it.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Detected usage of a non-sanitized input variable: $_COOKIE[WP_PPRESS_SESSION_COOKIE]
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: " ppress_md_profile_cpf".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in 'Maximum upload file size: %d%s.'.
Use placeholders and $wpdb->prepare(); found interpolated variable $customer_Table at LEFT JOIN $customer_Table AS customer on customer.user_id = user.id \n
Unescaped parameter $order_table used in $wpdb->get_var()\n$order_table assigned unsafely at line 224.
No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.
Unescaped parameter $customer_Table used in $wpdb->get_results()\n$customer_Table assigned unsafely at line 126.
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.
Mismatched text domain. Expected 'wp-user-avatar' but got 'mailoptin'.
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
| 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 class=\"add-new-h2\" href=\"$url\">"'. | 1,093 |
| Generic.PHP.DisallowShortOpenTag.EchoFound | ERROR | Short PHP opening tag used with echo; expected "<?php echo ! ..." but found "<?= ! ..." | 718 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 422 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_plan". | 410 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_COOKIE[WP_PPRESS_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar | 252 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 245 |
| 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. | 186 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_FILES['wpua-file']['name']. Check that the array index exists before using it. | 173 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 145 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_COOKIE[WP_PPRESS_SESSION_COOKIE] | 143 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 88 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: " ppress_md_profile_cpf". | 88 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 81 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 78 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 77 |
| PluginCheck.CodeAnalysis.Heredoc.NotAllowed | ERROR | Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead | 62 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in 'Maximum upload file size: %d%s.'. | 56 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $customer_Table at LEFT JOIN $customer_Table AS customer on customer.user_id = user.id \n | 40 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $order_table used in $wpdb->get_var()\n$order_table assigned unsafely at line 224. | 32 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $args | 30 |
| Internal.NoCodeFound | WARNING | No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them. | 25 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $customer_Table used in $wpdb->get_results()\n$customer_Table assigned unsafely at line 126. | 23 |
| 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. | 19 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'wp-user-avatar' but got 'mailoptin'. | 18 |
| WordPress.WP.AlternativeFunctions.strip_tags_strip_tags | ERROR | strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead. | 16 |
Latest Snapshot
Findings
4,679
Errors
2,576
Warnings
2,103
Score History
First score snapshot
First scan completed Jun 19, 2026
v4.16.17 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v4.16.17
24
Latest
- Findings
- 4,679
- Errors
- 2,576
- Warnings
- 2,103
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 24 | 4,679 | 2,576 | 2,103 | v4.16.17 | 2.0.0 | 2026.06-mvp-static-v2 |