Skip to content

Admin General

Description

How to customize whole admin screen.

 

Notifications

Notifications is possible to hide for WordPress core, Plugin, Theme, Translations notifications.

This features is not possible for automatic update of WordPress core, Plugin, Theme, Translations.

Notifications of Admin General
Notifications of Admin General

 

 

Screen Options and Help Tab

This feature hide the Screen Options and Help tabs in the upper right.

Hide Screenoptions Help Admin Genera
Hide Screenoptions Help Admin Genera

 

 

Footer Text

WordPress show links and version informations by default, can be hide these.

Footer text Admin General
Footer text Admin General

 

 

Custom Footer Text

Custom footer text, HTML can be inserted and Hide the Footer Text even better.

Custom Footer text Admin General
Custom Footer text Admin General

 

 

Remove “WordPress” from title tag

Revmove the “WordPress” title tag on admin screen.

 

Include your CSS file

If you want to customize the admin screen, can be include the CSS file on admin screen.

e.g.) [mywp_theme field="url"]/assets/admin.css

 

Include your JS file

If you want to customize the admin screen, can be include the JS file on admin screen.

e.g.) [mywp_theme field="url"]/assets/admin.js

 

Input CSS

If you want to customize the admin screen, can be inline include the CSS on admin screen.

Input CSS Admin General
Input CSS Admin General

 

 

Max Post Revision

Can be limit the number of post rivisions and “-1” is unlimited the max.

 

Not use Admin Screen

Can be limit the admin screen access and redirect to home. If you use this feature we recommend restriction with user roles groups.

 

If mistake setting

If you mistake setting to Not use Admin Screen, you can be disable the function.

Add below code to functions.php on your theme.

add_filter( "mywp_controller_is_do_function_admin_general_not_use_admin" , "force_not_use_admin" );

function force_not_use_admin( $is_true ) {

  return false;

}

Please uncheck the customize screen and save. Then delete the code to functions.php.

 

This Post Has 9 Comments

  1. Hello, I accidentally used the Not use Admin Screen function, I want to cancel its effect. How can I solve it?

  2. I want to know how to use the “Include your CSS file” feature. I created an admin.css in my child theme, but it was always unsuccessful. I hope that you can give more detailed instructions.

    1. For example to how to use the “Include your CSS file”, please setting this code.
      e.g.)
      [mywp_theme field="url"]/example-admin.css

      At this point if correct working, you can get the error that CSS file can not be included.

      Include CSS file Setting

      Then, setting after create CSS file on your theme.

  3. Hello, when I used the function of Include your CSS file, I set ”display:none” in the css file of the child-theme. However I delete this code, the menu item of sidebar still doesn’t show. How can I solve it? Thank u.

    1. I think your cause of problem is caching(PHP/Server/Plugin/Browser…etc).
      Could you please reload the screen after remove the cache?

      If still does not show, Is setting correct when access the CSS file directly on the browser?

    1. Hi, My WP Customize can one role only customize(hide elements).
      One role only can be limited with add-ons. OR, you can use some filters to limited just one role only.

Leave a Reply to Silvano Cancel reply

Your email address will not be published. Required fields are marked *

Back To Top