How to Hide the "Ask My Brand Feed" Admin Menu

function plt_hide_ask_my_brand_feed_by_epublishing_menus() {
	//Hide the "Settings → Ask My Brand Feed" menu.
	remove_submenu_page('options-general.php', 'amb-feed');
}

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

Where do I put this code?