Tips on Customizing SEO & redirect

How to Hide the "SEO Plugin" Admin Menu

function plt_hide_redirect_editor_menus() {
	//Hide the "SEO Plugin" menu.
	remove_menu_page('seo-plugin-settings');
}

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

Where do I put this code?

How to Hide SEO & Redirect Meta Boxes

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

	//Hide the "Custom Page Title" meta box.
	remove_meta_box('custom-page-title-meta-box', $screen->id, 'side');
	//Hide the "Custom SEO Description" meta box.
	remove_meta_box('custom-seo-description-meta-box', $screen->id, 'normal');
	//Hide the "Custom SEO Keywords" meta box.
	remove_meta_box('custom-seo-keywords-meta-box', $screen->id, 'normal');
}

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