Tips on Customizing El mejor Cluster

How to Hide the "El mejor cluster" Admin Menu

function plt_hide_mejorcluster_menus() {
	//Hide the "Settings → El mejor cluster" menu.
	remove_submenu_page('options-general.php', 'mejorcluster');
}

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

Where do I put this code?

How to Hide the "Mejor Cluster" Meta Box

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

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

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