Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Last active January 18, 2016 20:02
Show Gist options
  • Select an option

  • Save nathaningram/a25f5bbcaf2a01ac0bde to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/a25f5bbcaf2a01ac0bde to your computer and use it in GitHub Desktop.
Hides WP Help Functions for Non-Admins
// Hides WP Help Functions for Non-Admins
// Add to the functions.php of your active child theme
function ni_hide_wphelp_actions() {
echo '<style type="text/css">
#cws-wp-help-actions {display:none !important;}
</style>';
}
if ( ! current_user_can('administrator') ) {
add_action('admin_head', 'ni_hide_wphelp_actions');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment