How to Hide the "DePay" Admin Menu

function plt_hide_depay_payments_menus() {
	//Hide the "DePay" menu.
	remove_menu_page('depay-payments');
}

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

Where do I put this code?