Tips on Customizing Related Posts, Inline Related Posts, Contextual Related Posts, Related Content By PickPlugins

How to Hide the "Related Post" Admin Menu

function plt_hide_related_post_menus() {
	//Hide the "Related Post" menu.
	remove_menu_page('related_post_settings');
}

add_action('admin_menu', 'plt_hide_related_post_menus', 13);

Where do I put this code?

How to Hide the "Related Post" Meta Box

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

	//Hide the "Related Post" meta box.
	remove_meta_box('related_post_metabox', $screen->id, 'side');
}

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