How to Hide the "Elite Notification" Admin Menu

function plt_hide_elite_notification_menus() {
	//Hide the "Elite Notification" menu.
	remove_menu_page('elite-notification');
}

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

Where do I put this code?