Here is snippet to add own style css into wp-admin backend using theme function hook.
1 2 3 4 | function my_custom_admin_head(){ echo '<style>.yourclass {display: none !important;}</style>' ; } add_action( 'admin_head' , 'my_custom_admin_head' ); |