Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created February 17, 2013 15:53
Show Gist options
  • Save WebEndevSnippets/4971962 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4971962 to your computer and use it in GitHub Desktop.
WordPress: Remove Site Name menu from WP Toolbar if not Admin
add_action( 'wp_before_admin_bar_render', 'webendev_remove_sitename' );
/**
* Remove Site Name menu from WP Toolbar if not Admin
*
*/
function webendev_remove_sitename() {
if ( ! current_user_can( 'activate_plugins' ) ) {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('site-name');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment