How to Hide the "VSRP Options" Admin Menu

function plt_hide_vertical_scroll_recent_post_menus() {
	//Hide the "Settings → VSRP Options" menu.
	remove_submenu_page('options-general.php', 'vertical-scroll-recent-post');
}

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

Where do I put this code?