How to Hide the "Skype share button" Admin Menu

function plt_hide_skype_share_button_menus() {
	//Hide the "Settings → Skype share button" menu.
	remove_submenu_page('options-general.php', 'skype-share');
}

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

Where do I put this code?