Code-Snippets-Functions/Execute a function on a child site/WordPress/remove-comments-icon-in-admin-bar.txt
2019-04-03 14:18:15 -06:00

4 lines
128 B
Text

add_action('wp_before_admin_bar_render', function() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('comments');
});