<?php
function remove_admin_bar_links () {
if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
global $wp_admin_bar;
$wp_admin_bar->remove_menu( 'wp-logo' ); // Remove the WordPress logo link
// $wp_admin_bar->remove_menu( 'about' ); // Remove the about WordPress link
// $wp_admin_bar->remove_menu( 'wporg' ); // Remove the WordPress.org link
// $wp_admin_bar->remove_menu( 'feedback' ); // Remove the feedback link
$wp_admin_bar->remove_menu( 'comments' ); // Remove the comments link
$wp_admin_bar->remove_menu( 'new-content' ); // Remove the content link
}
}
add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );