How to Hide the "Easy Shopping Cart" Admin Menu

function plt_hide_easy_paypal_shopping_cart_menus() {
	//Hide the "Settings → Easy Shopping Cart" menu.
	remove_submenu_page('options-general.php', 'easy-paypal-shopping-cart');
}

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

Where do I put this code?