How to Hide the "TF Social Share" Admin Menu

function plt_hide_twitter_facebook_google_plusone_share_menus() {
	//Hide the "Settings → TF Social Share" menu.
	remove_submenu_page('options-general.php', 'kc-social-share');
}

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

Where do I put this code?