Clean Up Admin Bar + options
-
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.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Clean Up Admin Bar + options’ is closed to new replies.