How to Hide the "Feed Changer" Admin Menu

function plt_hide_feed_changer_menus() {
	//Hide the "Settings → Feed Changer" menu.
	remove_submenu_page('options-general.php', 'FeedChanger-options');
}

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

Where do I put this code?