How to Hide SocialShop Admin Menus

function plt_hide_instashop_menus() {
	//Hide the "Settings → SocialShop" menu.
	remove_submenu_page('options-general.php', 'socialshop_settings');
	//Hide the "SocialShop" menu.
	remove_menu_page('socialshop');
}

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

Where do I put this code?