Tips on Customizing Timeline and History slider

How to Hide the "Timeline Slider" Admin Menu

function plt_hide_timeline_and_history_slider_menus() {
	//Hide the "Timeline Slider" menu.
	remove_menu_page('timeline-and-history-slider');
}

add_action('admin_menu', 'plt_hide_timeline_and_history_slider_menus', 1000);

Where do I put this code?

How to Hide Timeline and History Slider Meta Boxes

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

	//Hide the "Timeline - Settings" meta box.
	remove_meta_box('wpostahs-sett-metabox-pro', $screen->id, 'normal');
	//Hide the "More Premium - Settings" meta box.
	remove_meta_box('wpostahs-post-metabox-pro', $screen->id, 'normal');
}

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