Tips on Customizing Portfolio and Projects

How to Hide the "Portfolio" Admin Menu

function plt_hide_portfolio_and_projects_menus() {
	//Hide the "Portfolio" menu.
	remove_menu_page('portfolio-and-projects');
}

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

Where do I put this code?

How to Hide Portfolio and Projects Meta Boxes

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

	//Hide the "Portfolio and Projects - Settings" meta box.
	remove_meta_box('wp-pap-post-sett', $screen->id, 'normal');
	//Hide the "More Premium - Settings" meta box.
	remove_meta_box('wp-pap-post-metabox-pro', $screen->id, 'normal');
}

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