How to Hide the "Google Ratings Widget" Admin Menu

function plt_hide_pp_google_ratings_widget_menus() {
	//Hide the "Settings → Google Ratings Widget" menu.
	remove_submenu_page('options-general.php', 'pgrw');
}

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

Where do I put this code?