How to Hide the "RSS Image Feed" Admin Menu

function plt_hide_rss_image_feed_menus() {
	//Hide the "Plugins → RSS Image Feed" menu.
	remove_submenu_page('plugins.php', 'rss-image-feed');
}

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

Where do I put this code?