Tips on Customizing Testimonials Box

How to Hide Testimonials Box Admin Menus

function plt_hide_testimonials_box_menus() {
	//Hide "Testimonials Box".
	remove_menu_page('Testimonials Box');

	//Hide "Testimonials Box".
	remove_menu_page('edit.php?post_type=testimonialsbox');
	//Hide "Testimonials Box → Testimonials Box".
	remove_submenu_page('edit.php?post_type=testimonialsbox', 'edit.php?post_type=testimonialsbox');
	//Hide "Testimonials Box → Add New Post".
	remove_submenu_page('edit.php?post_type=testimonialsbox', 'post-new.php?post_type=testimonialsbox');
}

add_action('admin_menu', 'plt_hide_testimonials_box_menus', 100);

Where do I put this code?

How to Hide Testimonials Box Meta Boxes

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

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

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