I have the WP3.4 and I would like to disable the admin bar. I have tried to do that with many ways, but the admin bar do not display....
  • May 11, 2022
  • 0 Comments
I have been customising the admin bar in version 3.3 to only have certain custom links with the following added to functions.php: function mytheme_admin_bar_render() { global $wp_admin_bar; $wp_admin_bar->remove_menu('site-name'); $wp_admin_bar->remove_menu('new-content');...
  • May 11, 2022
  • 0 Comments
I am trying to allow my editors and admins to click to “Edit Author” as they would “Edit Post” or “Edit [Custom Post Type]” from the admin bar when...
  • May 8, 2022
  • 0 Comments
I have a membership site. I need to disable the admin bar for the subscribers. I have used this code below: add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') &&...
  • May 8, 2022
  • 0 Comments