Created
February 1, 2021 19:56
-
-
Save JuReyms/438689c274010ed2d536f9511060222d to your computer and use it in GitHub Desktop.
WordPress - Display options admin bar
This file contains hidden or 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
<?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