remove_menu('comments'); }); // Return a comment count of zero to hide existing comment entry link. function zero_comment_count($count){ return 0; } add_filter('get_comments_number', 'zero_comment_count'); // Multisite - Remove manage comments from admin bar add_action( 'admin_bar_menu', 'remove_toolbar_items', PHP_INT_MAX -1 ); function remove_toolbar_items( $bar ) { $sites = get_blogs_of_user( get_current_user_id() ); foreach ( $sites as $site ) { $bar->remove_node( "blog-{$site->userblog_id}-c" ); } }