How to Hide the "VE Tweets" Admin Menu

function plt_hide_ve_tweets_menus() {
	//Hide the "Settings → VE Tweets" menu.
	remove_submenu_page('options-general.php', 've-tweets-settings');
}

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

Where do I put this code?