How to Hide the "Facebook Send Button" Admin Menu

function plt_hide_fb_send_button_for_wp_menus() {
	//Hide the "Settings → Facebook Send Button" menu.
	remove_submenu_page('options-general.php', 'fb-send-button-for-wp');
}

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

Where do I put this code?