Tips on Customizing VS Meta Description

How to Hide the "Meta description" Admin Menu

function plt_hide_very_simple_meta_description_menus() {
	//Hide the "Settings → Meta description" menu.
	remove_submenu_page('options-general.php', 'vsmd');
}

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

Where do I put this code?

How to Hide the "Excerpt" Meta Box

function plt_hide_very_simple_meta_description_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Excerpt" meta box.
	remove_meta_box('postexcerpt', $screen->id, 'normal');
}

add_action('add_meta_boxes', 'plt_hide_very_simple_meta_description_metaboxes', 20);