How to Hide the "Scrolling Popup" Admin Menu

function plt_hide_scroll_popup_html_content_ads_menus() {
	//Hide the "Settings → Scrolling Popup" menu.
	remove_submenu_page('options-general.php', 'scroll-popup-html-content-ads');
}

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

Where do I put this code?