How to Hide the "Ganohrs Toggle Shortcode" Admin Menu

function plt_hide_ganohrs_toggle_shortcode_menus() {
	//Hide the "Settings → Ganohrs Toggle Shortcode" menu.
	remove_submenu_page('options-general.php', 'ganohrs-toggle-shortcode-options');
}

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

Where do I put this code?