How to Hide the "Smooth Scroll" Admin Menu

function plt_hide_mousewheel_smooth_scroll_menus() {
	//Hide the "Settings → Smooth Scroll" menu.
	remove_submenu_page('options-general.php', 'mousewheel-smooth-scroll.php');
}

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

Where do I put this code?