How to Hide Multiple Moderators Admin Menus

function plt_hide_multiplemoderators_menus() {
	//Hide the "Comments → All Comments" menu.
	remove_submenu_page('edit-comments.php', 'edit-comments.php');
	//Hide the "Comments → Comment Moderators" menu.
	remove_submenu_page('edit-comments.php', 'mm-comment-moderators');
}

add_action('admin_menu', 'plt_hide_multiplemoderators_menus', 11);

Where do I put this code?