[ad_1]
Hi!
In the Clean Up Admin Bar, I would add a cleanup to remove the icons of the following popular plugins/themes (Generatepress, Rank Math, WP Statistic):
function remove_admin_bar_links() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu(‘gp_elements-menu’);
$wp_admin_bar->remove_menu(‘rank-math’);
$wp_admin_bar->remove_menu(‘wp-statistic-menu’);
}
add_action( ‘wp_before_admin_bar_render’, ‘remove_admin_bar_links’ );
Thanks.
