Ultimate Fields

Easy and powerful custom fields management: Post Meta, Options Pages, Repeaters and many field types!

v3.0.2Radoslav GeorgievUpdated Added 700 installs100% rating
23
Score
371
Errors
458
Warnings
+0
Change

Category Scores

Security0
Repo94
Performance91
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

829 findings

Security

376

9 issue groups

Maintainability

364

10 issue groups

I18n

56

4 issue groups

Performance

8

2 issue groups

ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.114
Category
Security
Occurrences
114
Severity
error

Sample message

All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$key seems not to be a valid property for "'.110
Category
Security
Occurrences
110
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$key seems not to be a valid property for "'.

ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;69
Category
Maintainability
Occurrences
69
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGMaintainabilityAlternative PHP tag foundPossible use of ASP style opening tags detected; found: <% _.each( filters, function( options, lab...65
Category
Maintainability
Occurrences
65
Severity
warning

Sample message

Possible use of ASP style opening tags detected; found: <% _.each( filters, function( options, lab...

WARNINGMaintainabilityAlternative PHP tag foundPossible use of ASP style short opening tags detected; found: <%= 'popup' == edit_mode ? 'dashicons-edit'...64
Category
Maintainability
Occurrences
64
Severity
warning

Sample message

Possible use of ASP style short opening tags detected; found: <%= 'popup' == edit_mode ? 'dashicons-edit'...

WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'add_meta_boxes_' . $this->id".52
Category
Maintainability
Occurrences
52
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'add_meta_boxes_' . $this->id".

WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['uf-import-file']38
Category
Security
Occurrences
38
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_FILES['uf-import-file']

WARNINGMaintainabilityNot In FooterIn footer ($in_footer) is not set explicitly wp_register_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.37
Category
Maintainability
Occurrences
37
Severity
warning

Sample message

In footer ($in_footer) is not set explicitly wp_register_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.

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.36
Category
I18n
Occurrences
36
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.

WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.33
Category
Security
Occurrences
33
Severity
warning

Sample message

Processing form data without nonce verification.

Show 15 more
WARNINGSecurityRequest data is not unslashed33
Category
Security
Occurrences
33
Severity
warning

Sample message

$_GET['order'] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityNo PHP code found30
Category
Maintainability
Occurrences
30
Severity
warning

Sample message

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.

WARNINGSecurityMissing nonce verification27
Category
Security
Occurrences
27
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGMaintainabilityNon-prefixed function20
Category
Maintainability
Occurrences
20
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "get_group_type".

WARNINGMaintainabilityNon-prefixed global variable19
Category
Maintainability
Occurrences
19
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$c".

ERRORI18nMissing Arg Domain12
Category
I18n
Occurrences
12
Severity
error

Sample message

Missing $domain parameter in function call to __().

WARNINGSecurityInput is not validated10
Category
Security
Occurrences
10
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_FILES['uf-import-file']. Check that the array index exists before using it.

ERRORSecuritySQL query is not prepared7
Category
Security
Occurrences
7
Severity
error

Sample message

Use placeholders and $wpdb->prepare(); found $sql

WARNINGMaintainabilityDirect Query4
Category
Maintainability
Occurrences
4
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo Caching4
Category
Maintainability
Occurrences
4
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

WARNINGSecuritywp redirect wp redirect4
Category
Security
Occurrences
4
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.

ERRORI18nText Domain Mismatch4
Category
I18n
Occurrences
4
Severity
error

Sample message

Mismatched text domain. Expected 'ultimate-fields' but got ''.

ERRORI18nUnordered Placeholders Text4
Category
I18n
Occurrences
4
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in 'Item #%d, "%s", already exists.'.

WARNINGPerformancePost Not In exclude4
Category
Performance
Occurrences
4
Severity
warning

Sample message

Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.

WARNINGPerformancePost Not In post not in4
Category
Performance
Occurrences
4
Severity
warning

Sample message

Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.

External Connections

Potential connections found in static code analysis.

13 domains

Outbound calls

84

External assets

1

Incoming endpoints

0

Notable Domains

ultimate-fields.com9 · outbound
google.com4 · outbound
jsperf.com2 · outbound
select2.github.io2 · outbound
whatwg.org2 · outbound

Platform / Reference Domains

github.com55 · platform/reference
codex.wordpress.org4 · platform/reference
gnu.org1 · platform/reference

External Asset Domains

ra.do1 · asset

Incoming Endpoints

No public endpoints detected.

Score History

First score snapshot

v3.0.2

23

Latest

Findings
829
Errors
371
Warnings
458
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

37 nodes

Related Plugins