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 Payping Donate Admin Menus

function plt_hide_payping_donate_menus() {
	//Hide the "حمایت مالی" menu.
	remove_menu_page('payPingDonate_MenuItem');
	//Hide the "حمایت مالی → حمایت مالی" menu.
	remove_submenu_page('payPingDonate_MenuItem', 'payPingDonate_MenuItem');
	//Hide the "حمایت مالی → نمایش حامیان مالی" menu.
	remove_submenu_page('payPingDonate_MenuItem', 'payPingDonate_Hamian');
}

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

Where do I put this code?