How to Hide the "Helpful" Admin Menu

function plt_hide_was_this_article_helpful_menus() {
	//Hide the "Settings → Helpful" menu.
	remove_submenu_page('options-general.php', 'wthf');
}

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

Where do I put this code?