Tips on Customizing WP Simple Related Posts

How to Hide the "Simple Related Posts" Admin Menu

function plt_hide_wp_simple_related_posts_menus() {
	//Hide the "Settings → Simple Related Posts" menu.
	remove_submenu_page('options-general.php', 'simple_related_posts');
}

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

Where do I put this code?

How to Hide the "Related Posts" Meta Box

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

	//Hide the "Related Posts" meta box.
	remove_meta_box('simple-related-posts', $screen->id, 'advanced');
}

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