Create a YouTube video gallery or playlist visually in the block editor. No shortcodes, no coding — just beautiful responsive video grids.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
711
14 issue groups
Security
527
9 issue groups
I18n
80
2 issue groups
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "emd_' . $std_analytics . '_call_js".208
- Category
- Maintainability
- Occurrences
- 208
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "emd_' . $std_analytics . '_call_js".
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "create_emd_sessions_table".183
- Category
- Maintainability
- Occurrences
- 183
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "create_emd_sessions_table".
WARNINGSecurityRequest data is not unslashed$_COOKIE[EMD_WP_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar146
- Category
- Security
- Occurrences
- 146
- Severity
- warning
Sample message
$_COOKIE[EMD_WP_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"][load_info]' type='checkbox' value=1 $load_info></input></td></tr>"'.136
- Category
- Security
- Occurrences
- 136
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"][load_info]' type='checkbox' value=1 $load_info></input></td></tr>"'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.104
- Category
- Security
- Occurrences
- 104
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$access_views".85
- Category
- Maintainability
- Occurrences
- 85
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$access_views".
ERRORI18nMissing Translators CommentA 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.65
- Category
- I18n
- Occurrences
- 65
- Severity
- error
Sample message
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.
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "EMD_MB_Button_Field".54
- Category
- Maintainability
- Occurrences
- 54
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "EMD_MB_Button_Field".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.54
- Category
- Security
- Occurrences
- 54
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES['async-upload']. Check that the array index exists before using it.49
- Category
- Security
- Occurrences
- 49
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['async-upload']. Check that the array index exists before using it.
Show 15 moreShow less
WARNINGMaintainabilityMissing Version47
- Category
- Maintainability
- Occurrences
- 47
- 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.
ERRORMaintainabilitydate date26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityDirect Query25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not sanitized23
- Category
- Security
- Occurrences
- 23
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[$name]
WARNINGMaintainabilityNot In Footer21
- Category
- Maintainability
- Occurrences
- 21
- 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.
ERRORI18nUnordered Placeholders Text15
- Category
- I18n
- Occurrences
- 15
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in '%s \a\t %s'.
WARNINGMaintainabilityNon-prefixed constant11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EMD_ADMIN_DIR".
ERRORMaintainabilityNo Explicit Version10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
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.
ERRORSecuritySQL query is not prepared7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $join
WARNINGMaintainabilityslow db query meta key7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityslow db query meta value5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
WARNINGMaintainabilityDynamic hook name5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$this->app_name . '_getting_started'".
WARNINGSecuritywp redirect wp redirect5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
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.
ERRORSecurityDatabase parameter is not escaped3
- Category
- Security
- Occurrences
- 3
- Severity
- error
Sample message
Unescaped parameter $meta used in $wpdb->get_var()\n$meta assigned unsafely at line 45.
External Connections
Not analyzed yet.
Score History
First score snapshot
v4.0.3
25
Latest
- Findings
- 1,345
- Errors
- 275
- Warnings
- 1,070
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 1,345 | 275 | 1,070 | v4.0.3 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.