How to Hide the "Review Showcase" Admin Menu

function plt_hide_reviews_showcase_for_google_menus() {
	//Hide the "Settings → Review Showcase" menu.
	remove_submenu_page('options-general.php', 'reviews-showcase-for-google');
}

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

Where do I put this code?