How to Hide the "Trustindex.io" Admin Menu

function plt_hide_reviews_widgets_for_yelp_menus() {
	//Hide the "Trustindex.io" menu.
	remove_menu_page('reviews-widgets-for-yelp/settings.php');
}

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

Where do I put this code?