How to Hide the "Nextend Social Login" Admin Menu

function plt_hide_nextend_facebook_connect_menus() {
	//Hide the "Settings → Nextend Social Login" menu.
	remove_submenu_page('options-general.php', 'nextend-social-login');
}

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

Where do I put this code?