How to Hide the "CashBill" Admin Menu

function plt_hide_cashbill_payment_method_menus() {
	//Hide the "CashBill" menu.
	remove_menu_page('cashbill-payments-settings');
}

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

Where do I put this code?