How to Hide the "Simple Ticker" Admin Menu

function plt_hide_simple_ticker_menus() {
	//Hide the "Settings → Simple Ticker" menu.
	remove_submenu_page('options-general.php', 'SimpleTicker');
}

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

Where do I put this code?