How to Hide the "CT Commerce 0" Admin Menu

function plt_hide_ctc_lite_menus() {
	//Hide the "CT  Commerce  0" menu.
	remove_menu_page('ctclAdminPanel');
}

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

Where do I put this code?