How to Hide the "Manage Notifications" Admin Menu

function plt_hide_monitor_pages_menus() {
	//Hide the "Pages → Manage Notifications" menu.
	remove_submenu_page('edit.php?post_type=page', 'monitor-pages');
}

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

Where do I put this code?