How to Hide NMT Sitewide Comment moderation Admin Menus

function plt_hide_nmt_sitewide_moderation_menus() {
	//Hide the "Comments → All Comments" menu.
	remove_submenu_page('edit-comments.php', 'edit-comments.php');
	//Hide the "Comments → Sitewide moderation" menu.
	remove_submenu_page('edit-comments.php', 'nmt-sitewide-moderation');
	//Hide the "Comments → Sitewide blacklist" menu.
	remove_submenu_page('edit-comments.php', 'nmt-sitewide-blacklist');
}

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

Where do I put this code?