How to Hide the "RSS Feed Widget" Admin Menu

function plt_hide_rss_feed_widget_menus() {
	//Hide the "Settings → RSS Feed Widget" menu.
	remove_submenu_page('options-general.php', 'rfw_options');
}

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

Where do I put this code?