Display Instagram, Facebook, YouTube & X/Twitter feeds with photos, videos, reels, events & galleries. Fast, responsive & easy to set up.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,322
12 issue groups
I18n
805
3 issue groups
Security
684
10 issue groups
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ESF_Admin".804
- Category
- Maintainability
- Occurrences
- 804
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ESF_Admin".
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"body.{$body_class} .fs-notice:not(.fs-slug-easy-facebook-likebox){display:none !important;}"'.475
- Category
- Security
- Occurrences
- 475
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"body.{$body_class} .fs-notice:not(.fs-slug-easy-facebook-likebox){display:none !important;}"'.
ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $access_token440
- Category
- I18n
- Occurrences
- 440
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $access_token
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to esc_attr_e().360
- Category
- I18n
- Occurrences
- 360
- Severity
- error
Sample message
Missing $domain parameter in function call to esc_attr_e().
ERRORMaintainabilitywp function not compatible with requires wpFunction "get_the_post_thumbnail_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.3.0.187
- Category
- Maintainability
- Occurrences
- 187
- Severity
- error
Sample message
Function "get_the_post_thumbnail_url()" requires WordPress 4.4.0, but your plugin minimum supported version is WordPress 3.3.0.
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "efl_fs_loaded".97
- Category
- Maintainability
- Occurrences
- 97
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "efl_fs_loaded".
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "ecff_hastags_to_link".71
- Category
- Maintainability
- Occurrences
- 71
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "ecff_hastags_to_link".
WARNINGMaintainabilityNon Prefixed Class FoundClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "Customize_Alpha_Color_Control".67
- Category
- Maintainability
- Occurrences
- 67
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "Customize_Alpha_Color_Control".
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.60
- Category
- Security
- Occurrences
- 60
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityMissingProcessing form data without nonce verification.49
- Category
- Security
- Occurrences
- 49
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
WARNINGSecurityRecommended43
- Category
- Security
- Occurrences
- 43
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing Unslash21
- Category
- Security
- Occurrences
- 21
- Severity
- warning
Sample message
$_GET['access_token'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput Not Validated20
- Category
- Security
- Occurrences
- 20
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['status']. Check that the array index exists before using it.
WARNINGMaintainabilityDirect Query19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityMissing Version18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
ERRORMaintainabilitymissing direct file access protection16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon Prefixed Constant Found12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "ESF_INSTA_PLUGIN_DIR".
WARNINGMaintainabilityNot In Footer10
- Category
- Maintainability
- Occurrences
- 10
- 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.
WARNINGSecurityInput Not Sanitized6
- Category
- Security
- Occurrences
- 6
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['moove_gdpr_popup']
ERRORI18nInterpolated Variable Text5
- Category
- I18n
- Occurrences
- 5
- Severity
- error
Sample message
The $text parameter must not contain interpolated variables or expressions. Found: {$efbl_bio_data->name}
WARNINGSecurityInterpolated Not Prepared4
- Category
- Security
- Occurrences
- 4
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable {$option_table} at "DELETE FROM {$option_table} WHERE option_name LIKE %s OR option_name LIKE %s OR option_name LIKE %s OR option_name LIKE %s"
WARNINGSecurityUnescaped DBParameter3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Unescaped parameter $sql used in $wpdb->get_results()\n$sql assigned unsafely at line 215.
ERRORSecurityNot Prepared3
- Category
- Security
- Occurrences
- 3
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $efbl_trans_sql
ERRORMaintainabilitydate date3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Score History
First score snapshot
v6.7.6
22
Latest
- Findings
- 2,844
- Errors
- 1,567
- Warnings
- 1,277
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 2,844 | 1,567 | 1,277 | v6.7.6 | 2.0.0 |