Admin Tweaks

Customize various aspects of WordPress backend. Create a clean and easier admin area for the users.

v3.3.3brasofiloUpdated Added 1k+ installs94% rating
24
Score
1,507
Errors
206
Warnings
+0
Change

Category Scores

Security0
Repo94
Performance98
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,713 findings

I18n

1,251

5 issue groups

Maintainability

369

13 issue groups

Security

84

7 issue groups

ERRORI18nText Domain MismatchMismatched text domain. Expected 'many-tips-together' but got "mtt".1,188
Category
I18n
Occurrences
1,188
Severity
error

Sample message

Mismatched text domain. Expected 'many-tips-together' but got "mtt".

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

Sample message

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

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$options_global".128
Category
Maintainability
Occurrences
128
Severity
warning

Sample message

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

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='notice notice-warning inline is-dismissible'><p>$base $setts</p></div>"'.54
Category
Security
Occurrences
54
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div class='notice notice-warning inline is-dismissible'><p>$base $setts</p></div>"'.

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

Sample message

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

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.23
Category
I18n
Occurrences
23
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 hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;active_plugins&quot;.11
Category
Maintainability
Occurrences
11
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;active_plugins&quot;.

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.9
Category
Maintainability
Occurrences
9
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;create_term_redux_taxonomy&quot;.9
Category
Maintainability
Occurrences
9
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;create_term_redux_taxonomy&quot;.

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

Sample message

Processing form data without nonce verification.

Show 15 more
WARNINGSecuritywp redirect wp redirect7
Category
Security
Occurrences
7
Severity
warning

Sample message

wp_redirect() found. Using wp_safe_redirect(), along with the &quot;allowed_redirect_hosts&quot; 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.

WARNINGMaintainabilityNot In Footer7
Category
Maintainability
Occurrences
7
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.

WARNINGMaintainabilityNo Caching6
Category
Maintainability
Occurrences
6
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 validated6
Category
Security
Occurrences
6
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET[&#039;page&#039;]. Check that the array index exists before using it.

WARNINGSecurityRequest data is not unslashed4
Category
Security
Occurrences
4
Severity
warning

Sample message

$_GET[&#039;page&#039;] not unslashed before sanitization. Use wp_unslash() or similar

ERRORMaintainabilityForbidden PHP function found3
Category
Maintainability
Occurrences
3
Severity
error

Sample message

The use of function _cleanup_header_comment() is forbidden

WARNINGSecurityInput is not sanitized3
Category
Security
Occurrences
3
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_SERVER[&#039;REQUEST_URI&#039;]

ERRORMaintainabilityNot Allowed2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead

ERRORMaintainabilityLocalhost URL found2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

Do not use Localhost/127.0.0.1/*.local in your code. Found: http://127.0.0.1/

WARNINGMaintainabilityerror log error log2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

error_log() found. Debug code should not normally be used in production.

ERRORSecurityException output is not escaped2
Category
Security
Occurrences
2
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$name'.

ERRORI18nUnordered Placeholders Text2
Category
I18n
Occurrences
2
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Remove from back and front end. Creates a "Visit Site" link in the Dashboard menu item.%s Tip via: %s'.

ERRORMaintainabilityfive star reviews detected2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

Linking directly to 5 stars reviews is not allowed.

WARNINGI18nDiscouraged text-domain loading1
Category
I18n
Occurrences
1
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.

ERRORMaintainabilityPlugin Directory Write1
Category
Maintainability
Occurrences
1
Severity
error

Sample message

Plugin folders are deleted when upgraded. Do not save data to the plugin folder using file_put_contents(). Detected usage of __FILE__ or __DIR__ magic constant. Use wp_upload_dir() to get the uploads directory path or save to the database instead.

External Connections

Potential connections found in static code analysis.

100 domains

Outbound calls

288

External assets

0

Incoming endpoints

12

Notable Domains

jqueryui.com14 · outbound
yandex.com12 · outbound
en.wikipedia.org11 · outbound
jquery.org11 · outbound
elusiveicons.com10 · outbound
fontawesome.com8 · outbound

Platform / Reference Domains

github.com34 · platform/reference
opensource.org11 · platform/reference
w3.org10 · platform/reference
gnu.org7 · platform/reference
wordpress.org7 · platform/reference
api.wordpress.org4 · platform/reference
codex.wordpress.org2 · platform/reference
developer.wordpress.org2 · platform/reference
profiles.wordpress.org1 · platform/reference
validator.w3.org1 · platform/reference

External Asset Domains

No external asset domains detected.

Incoming Endpoints

wp_ajax_nopriv_redux_color_schemespublic

wp_ajax

wp_ajax_nopriv_redux_download_options-public

wp_ajax

Admin AJAX endpoints10
wp_ajax_redux_activationauthenticated

wp_ajax

wp_ajax_redux_color_schemesauthenticated

wp_ajax

wp_ajax_redux_custom_font_timerauthenticated

wp_ajax

wp_ajax_redux_custom_fontsauthenticated

wp_ajax

wp_ajax_redux_delete_widget_areaauthenticated

wp_ajax

wp_ajax_redux_download_options-authenticated

wp_ajax

wp_ajax_redux_get_iconsauthenticated

wp_ajax

wp_ajax_redux_hide_admin_noticeauthenticated

wp_ajax

wp_ajax_redux_submit_support_dataauthenticated

wp_ajax

wp_ajax_redux_update_google_fontsauthenticated

wp_ajax

Score History

First score snapshot

v3.3.3

24

Latest

Findings
1,713
Errors
1,507
Warnings
206
Check
2.0.0

Relationship Map

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

37 nodes

Related Plugins

Beckin Maintenance Mode

1k+ active installs

100
Firebase Authentication

500 active installs

100
Logged-in-only

700 active installs

100
Login Security Captcha

10k+ active installs

100
100
Options for Twenty Nineteen

700 active installs

100