How to Hide the "Yandex.Zen PostGrid" Admin Menu

function plt_hide_display_yandex_zen_postgrid_menus() {
	//Hide the "Settings → Yandex.Zen PostGrid" menu.
	remove_submenu_page('options-general.php', 'yg-settings');
}

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

Where do I put this code?