Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide the "Audit Trail" Admin Menu

function plt_hide_audit_trail_menus() {
	//Hide the "Tools → Audit Trail" menu.
	remove_submenu_page('tools.php', 'audit-trail.php');
}

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

Where do I put this code?