How to Hide the "Buy Now Plus" Admin Menu

function plt_hide_buy_now_plus_menus() {
	//Hide the "Settings → Buy Now Plus" menu.
	remove_submenu_page('options-general.php', 'buy-now-plus');
}

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

Where do I put this code?