How to Hide the "BlueFeed" Admin Menu

function plt_hide_bluefeed_menus() {
	//Hide the "Settings → BlueFeed" menu.
	remove_submenu_page('options-general.php', 'bluefeed');
}

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

Where do I put this code?