How to Hide the "OPIO Native Feed" Admin Menu

function plt_hide_opio_native_feed_menus() {
	//Hide the "OPIO Native Feed" menu.
	remove_menu_page('opio_native_feed');
}

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

Where do I put this code?