How to Hide the "Blighty Pluginator" Admin Menu

function plt_hide_blighty_pluginator_menus() {
	//Hide the "Settings → Blighty Pluginator" menu.
	remove_submenu_page('options-general.php', 'blighty-pluginator-plugin');
}

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

Where do I put this code?