How to Hide the "Security1" Admin Menu

function plt_hide_really_simple_ssl_menus() {
	//Hide the "Security1" menu.
	remove_menu_page('really-simple-security');
}

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

Where do I put this code?