How to Hide the "Publishing Help" Admin Menu

function plt_hide_wp_help_menus() {
	//Hide the "Publishing Help" menu.
	remove_menu_page('wp-help-documents');
}

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

Where do I put this code?