Monetize your website thanks to advertising. The « all in one » solution to make you earn money thanks to a wide range of ad formats.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
378
13 issue groups
Security
330
8 issue groups
I18n
303
4 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'the-moneytizer' but got "themoneytizer".285
- Category
- I18n
- Occurrences
- 285
- Severity
- error
Sample message
Mismatched text domain. Expected 'the-moneytizer' but got "themoneytizer".
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$arr_rec_skin".176
- Category
- Maintainability
- Occurrences
- 176
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$arr_rec_skin".
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.164
- Category
- Security
- Occurrences
- 164
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$args['after_title']'.76
- Category
- Security
- Occurrences
- 76
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$args['after_title']'.
ERRORMaintainabilitywp function not compatible with requires wpFunction "wp_send_json()" requires WordPress 3.5.0, but your plugin minimum supported version is WordPress 3.3.0.64
- Category
- Maintainability
- Occurrences
- 64
- Severity
- error
Sample message
Function "wp_send_json()" requires WordPress 3.5.0, but your plugin minimum supported version is WordPress 3.3.0.
ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORSecurityregister setting MissingSanitization missing for register_setting().33
- Category
- Security
- Occurrences
- 33
- Severity
- error
Sample message
Sanitization missing for register_setting().
WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_POST['_nonce']. Check that the array index exists before using it.28
- Category
- Security
- Occurrences
- 28
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['_nonce']. Check that the array index exists before using it.
ERRORMaintainabilityEcho FoundShort PHP opening tag used with echo; expected "<?php echo _e ..." but found "<?= _e ..."15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo _e ..." but found "<?= _e ..."
ERRORMaintainabilityNon Enqueued ScriptScripts must be registered/enqueued via wp_enqueue_script()13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
Show 15 moreShow less
ERRORMaintainabilityOffloaded Content12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
WARNINGMaintainabilityNon Prefixed Function Found12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_admin_lazy_loading".
WARNINGSecurityMissing Unslash12
- Category
- Security
- Occurrences
- 12
- Severity
- warning
Sample message
$_POST['adId'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nNon Singular String Literal Text12
- Category
- I18n
- Occurrences
- 12
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $format->ad_name
WARNINGMaintainabilityNot In Footer11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
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.
WARNINGSecurityMissing10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityfile system operations fopen10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
ERRORMaintainabilityfile system operations fwrite10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
WARNINGMaintainabilityNon Prefixed Constant Found8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "GLOBAL_DEL".
ERRORMaintainabilityfile system operations fclose8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
WARNINGSecurityRecommended4
- Category
- Security
- Occurrences
- 4
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityPlugin Directory Write3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
Plugin folders are deleted when upgraded. Do not save data to the plugin folder using fwrite(). Detected usage of function plugin_dir_path(). Use wp_upload_dir() to get the uploads directory path or save to the database instead.
WARNINGSecurityInput Not Sanitized3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_POST['formatlazy']
ERRORI18nMissing Arg Domain3
- Category
- I18n
- Occurrences
- 3
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGI18nNo Html Wrapped Strings3
- Category
- I18n
- Occurrences
- 3
- Severity
- warning
Sample message
Translatable string should not be wrapped in HTML. Found: '<option value="center">Centré</option>'
Score History
First score snapshot
v10.0.10
22
Latest
- Findings
- 1,022
- Errors
- 751
- Warnings
- 271
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 1,022 | 751 | 271 | v10.0.10 | 2.0.0 |