How to Hide the "CHEQ Enforce" Admin Menu

function plt_hide_cheq_enforce_menus() {
	//Hide the "CHEQ Enforce" menu.
	remove_menu_page('cheq-enforce-settings');
}

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

Where do I put this code?