How to Hide the "Scroll post excerpt" Admin Menu

function plt_hide_scroll_post_excerpt_menus() {
	//Hide the "Settings → Scroll post excerpt" menu.
	remove_submenu_page('options-general.php', 'scroll-post-excerpt/scroll-post-excerpt.php');
}

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

Where do I put this code?