Skip to content

Instantly share code, notes, and snippets.

@JuReyms
Created February 1, 2021 19:56
Show Gist options
  • Save JuReyms/438689c274010ed2d536f9511060222d to your computer and use it in GitHub Desktop.
Save JuReyms/438689c274010ed2d536f9511060222d to your computer and use it in GitHub Desktop.
WordPress - Display options admin bar
<?php
function edit_admin_bar() {
/* Display options admin bar*/
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo'); // Logo
$wp_admin_bar->remove_menu('about'); // A propos de WordPress
//$wp_admin_bar->remove_menu('wporg'); // WordPress.org
//$wp_admin_bar->remove_menu('documentation'); // Documentation
//$wp_admin_bar->remove_menu('support-forums'); // Forum de support
//$wp_admin_bar->remove_menu('feedback'); // Remarque
//$wp_admin_bar->remove_menu('view-site'); // Aller voir le site
//$wp_admin_bar->remove_menu('site-name'); // Nom du site
//$wp_admin_bar->remove_menu('updates'); // Mises à jour
$wp_admin_bar->remove_menu('comments'); // Commentaires
//$wp_admin_bar->remove_menu('new-content'); // Publier
}
add_action('wp_before_admin_bar_render', 'edit_admin_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment