Tips on Customizing Testimonial Feed

How to Hide Testimonial Feed Admin Menus

function plt_hide_testimonial_feed_menus() {
	//Hide the "Testimonial Feeds" menu.
	remove_menu_page('edit.php?post_type=testi_feed');
	//Hide the "Testimonial Feeds → Testimonial Feeds" menu.
	remove_submenu_page('edit.php?post_type=testi_feed', 'edit.php?post_type=testi_feed');
	//Hide the "Testimonial Feeds → Add Post" menu.
	remove_submenu_page('edit.php?post_type=testi_feed', 'post-new.php?post_type=testi_feed');
}

add_action('admin_menu', 'plt_hide_testimonial_feed_menus', 15);

Where do I put this code?

How to Hide Testimonial Feed Meta Boxes

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

	//Hide the "Stars Given" meta box.
	remove_meta_box('tfeed_stars', $screen->id, 'side');
	//Hide the "Customer Name" meta box.
	remove_meta_box('tfeed_name', $screen->id, 'side');
}

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