How to Hide the "Watchful" Admin Menu

function plt_hide_watchful_menus() {
	//Hide the "Settings → Watchful" menu.
	remove_submenu_page('options-general.php', 'watchful-setting');
}

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

Where do I put this code?