Skip to content

Instantly share code, notes, and snippets.

@dwesolowski
Created September 3, 2018 08:56
Show Gist options
  • Save dwesolowski/2b879f3e37ea2de2ccbf0bd7f37d2749 to your computer and use it in GitHub Desktop.
Save dwesolowski/2b879f3e37ea2de2ccbf0bd7f37d2749 to your computer and use it in GitHub Desktop.
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