How to Hide the "Sticky Menu (or Anything!)" Admin Menu

function plt_hide_sticky_menu_or_anything_on_scroll_menus() {
	//Hide the "Settings → Sticky Menu (or Anything!)" menu.
	remove_submenu_page('options-general.php', 'stickyanythingmenu');
}

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

Where do I put this code?