Remove WordPress Admin Bar - Enlever la barre d'administration de Wordpress


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. global $current_user;
  3. get_currentuserinfo();
  4.  
  5. if ($current_user->ID != 1) {
  6. add_filter( 'show_admin_bar', '__return_false' );
  7. }
  8. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.