How to Hide the "XTRA Settings" Admin Menu

function plt_hide_xtra_settings_menus() {
	//Hide the "XTRA Settings" menu.
	remove_menu_page('xtra');
}

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

Where do I put this code?