How to Hide Shared Albums for Google Photos Admin Menus

function plt_hide_janzeman_shared_albums_for_google_photos_menus() {
	//Hide "Shared Albums for Google Photos".
	remove_menu_page('janzeman-shared-albums-for-google-photos');
	//Hide "Shared Albums for Google Photos → Guide".
	remove_submenu_page('janzeman-shared-albums-for-google-photos', 'janzeman-shared-albums-for-google-photos');
	//Hide "Shared Albums for Google Photos → Parameters".
	remove_submenu_page('janzeman-shared-albums-for-google-photos', 'janzeman-shared-albums-for-google-photos-shortcode-parameters');
	//Hide "Shared Albums for Google Photos → Placeholders".
	remove_submenu_page('janzeman-shared-albums-for-google-photos', 'janzeman-shared-albums-for-google-photos-placeholders');
	//Hide "Shared Albums for Google Photos → Community".
	remove_submenu_page('janzeman-shared-albums-for-google-photos', 'janzeman-shared-albums-for-google-photos-community');
	//Hide "Shared Albums for Google Photos → Settings".
	remove_submenu_page('janzeman-shared-albums-for-google-photos', 'janzeman-shared-albums-for-google-photos-settings');
}

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

Where do I put this code?