How to Hide the "Feefo" Admin Menu

function plt_hide_feefo_ratings_reviews_for_woocommerce_menus() {
	//Hide the "Feefo" menu.
	remove_menu_page('feefo-ratings-and-reviews');
}

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

Where do I put this code?