How to Hide Post Affiliate Pro Admin Menus

function plt_hide_postaffiliatepro_menus() {
	//Hide the "Post Affiliate Pro" menu.
	remove_menu_page('pap-top-level-options-handle');
	//Hide the "Post Affiliate Pro → General" menu.
	remove_submenu_page('pap-top-level-options-handle', 'pap-top-level-options-handle');
	//Hide the "Post Affiliate Pro → Debugging" menu.
	remove_submenu_page('pap-top-level-options-handle', 'pap-debugging-page');
}

add_action('admin_menu', 'plt_hide_postaffiliatepro_menus', 96);

Where do I put this code?