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 "TP Cookies Law" Admin Menu

function plt_hide_eu_cookie_law_compliance_menus() {
	//Hide the "Settings → TP Cookies Law" menu.
	remove_submenu_page('options-general.php', 'tplis_cl_settings');
}

add_action('admin_menu', 'plt_hide_eu_cookie_law_compliance_menus', 21);

Where do I put this code?