How To Remove Links and Menus From WordPress Admin Bar?

// Remove Admin Menu Visit Link

function remove_admin_bar_links() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('view-site');        // Remove the view site link
    $wp_admin_bar->remove_menu('site-name');        // Remove the site name menu
    $wp_admin_bar->remove_menu('customize');        // Remove the site name menu
    $wp_admin_bar->remove_menu('comments');        // Remove the site name menu
    $wp_admin_bar->remove_menu('edit');        // Remove the site name menu
    $wp_admin_bar->remove_menu('new-content');        // Remove the site name menu
    $wp_admin_bar->remove_menu('appearance');        // Remove the site name menu
    $wp_admin_bar->remove_menu('my-account');        // Remove the site name menu
    $wp_admin_bar->remove_menu('wp-logo');        // Remove the site name menu
    $wp_admin_bar->remove_menu('adminbar-input');        // Remove the site name menu
}
add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );

// Remove Admin Menu Visit Link

Comments

Popular posts from this blog

Remove Add New Post Sub Menu From Custom Post

How To Remove and Add Visit Site Menu From WordPress Admin Bar?

Register Custom Post Type