How to Hide Drag and Drop Form Builder for Contact Form 7 Admin Menus

function plt_hide_drag_and_drop_form_builder_for_contact_form_7_menus() {
	//Hide the "Settings → CF7 Form Builder" menu.
	remove_submenu_page('options-general.php', 'wpvsfb_welcome_page');
	//Hide the "Settings → Contact Us" menu.
	remove_submenu_page('options-general.php', 'wpvsfb_welcome_page-contact');
	//Hide the "Settings → Upgrade" menu.
	remove_submenu_page('options-general.php', 'wpvsfb_welcome_page-pricing');
}

add_action('admin_menu', 'plt_hide_drag_and_drop_form_builder_for_contact_form_7_menus', 1000000000);

Where do I put this code?