WOLF – WordPress Posts Bulk Editor and Manager Professional

WOLF (formerly WPBE) - a WordPress plugin for managing posts, pages, and custom types easily. Perfect for real estate, cars, etc.

v1.0.9RealMag777Updated Added 4k+ installs98% rating
24
Score
485
Errors
623
Warnings
+0
Change

Category Scores

Security0
Repo89
Performance96
Maintainability3

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,108 findings

Security

700

9 issue groups

Maintainability

205

10 issue groups

I18n

172

5 issue groups

Performance

4

1 issue group

ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"wpbe_filter[{$ff}][from]"'.255
Category
Security
Occurrences
255
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"wpbe_filter[{$ff}][from]"'.

WARNINGSecurityMissing Unslash$_COOKIE[$key] not unslashed before sanitization. Use wp_unslash() or similar109
Category
Security
Occurrences
109
Severity
warning

Sample message

$_COOKIE[$key] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$attachment_id".107
Category
Maintainability
Occurrences
107
Severity
warning

Sample message

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

WARNINGSecurityRecommendedProcessing form data without nonce verification.101
Category
Security
Occurrences
101
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE[$key]96
Category
Security
Occurrences
96
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_COOKIE[$key]

WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_COOKIE[$key]. Check that the array index exists before using it.82
Category
Security
Occurrences
82
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_COOKIE[$key]. Check that the array index exists before using it.

ERRORI18nMissing Translators CommentA function call to esc_html__() 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.58
Category
I18n
Occurrences
58
Severity
error

Sample message

A function call to esc_html__() 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.

ERRORI18nMissing Arg DomainMissing $domain parameter in function call to esc_html__().54
Category
I18n
Occurrences
54
Severity
error

Sample message

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

ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $current_field_key53
Category
I18n
Occurrences
53
Severity
error

Sample message

The $text parameter must be a single text string literal. Found: $current_field_key

WARNINGSecurityInterpolated Not PreparedUse placeholders and $wpdb->prepare(); found interpolated variable {$WPBE->settings->current_post_type} at "SELECT * FROM {$this->table_bulk} WHERE user_id={$user_id} AND post_type='{$WPBE->settings->current_post_type}' ORDER BY started DESC LIMIT 2"38
Category
Security
Occurrences
38
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable {$WPBE->settings->current_post_type} at "SELECT * FROM {$this->table_bulk} WHERE user_id={$user_id} AND post_type='{$WPBE->settings->current_post_type}' ORDER BY started DESC LIMIT 2"

Show 15 more
WARNINGMaintainabilityDirect Query24
Category
Maintainability
Occurrences
24
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNo Caching21
Category
Maintainability
Occurrences
21
Severity
warning

Sample message

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

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.

ERRORSecurityUnescaped DBParameter13
Category
Security
Occurrences
13
Severity
error

Sample message

Unescaped parameter $_REQUEST['bulk_key'] used in $wpdb->get_var()\n$_REQUEST['bulk_key'] used without escaping.

ERRORMaintainabilitymissing direct file access protection13
Category
Maintainability
Occurrences
13
Severity
error

Sample message

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

ERRORMaintainabilitydate date6
Category
Maintainability
Occurrences
6
Severity
error

Sample message

date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.

WARNINGMaintainabilityslow db query meta key5
Category
Maintainability
Occurrences
5
Severity
warning

Sample message

Detected usage of meta_key, possible slow query.

ERRORMaintainabilitystrip tags strip tags4
Category
Maintainability
Occurrences
4
Severity
error

Sample message

strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.

ERRORI18nUnordered Placeholders Text4
Category
I18n
Occurrences
4
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Columns settings%s, columns enabled %s'.

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.

WARNINGI18nload plugin textdomain Found3
Category
I18n
Occurrences
3
Severity
warning

Sample message

load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed.

ERRORSecurityNot Prepared3
Category
Security
Occurrences
3
Severity
error

Sample message

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

ERRORSecurityUnsafe Printing Function3
Category
Security
Occurrences
3
Severity
error

Sample message

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

ERRORMaintainabilityEcho Found2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

Short PHP opening tag used with echo; expected "<?php echo $WPBE ..." but found "<?= $WPBE ..."

WARNINGMaintainabilitySchema Change2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

Attempting a database schema change is discouraged.

Score History

First score snapshot

v1.0.9

24

Latest

Findings
1,108
Errors
485
Warnings
623
Check
2.0.0

Related Plugins

Bulk Delete

30k+ active installs

96
95
Auto Update Post Date

1k+ active installs

69
Bulk menu creator

1k+ active installs

69