Created
September 3, 2018 08:56
-
-
Save dwesolowski/2b879f3e37ea2de2ccbf0bd7f37d2749 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' ); | |
add_action( 'admin_head', function(){ | |
ob_start(); | |
?> | |
<style> | |
#your-profile > h2, | |
.user-rich-editing-wrap, | |
.user-syntax-highlighting-wrap | |
/*.user-comment-shortcuts-wrap,*/ | |
/*.user-admin-bar-front-wrap*/ { | |
display: none; | |
} | |
</style> | |
<?php | |
ob_end_flush(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment