Tips on Customizing On Record Credits

How to Hide On Record Credits Admin Menus

function plt_hide_on_record_credits_menus() {
	//Hide "On Record Credits".
	remove_menu_page('edit.php?post_type=orec_credit');
	//Hide "On Record Credits → On Record Credits".
	remove_submenu_page('edit.php?post_type=orec_credit', 'edit.php?post_type=orec_credit');
	//Hide "On Record Credits → Add New Credit".
	remove_submenu_page('edit.php?post_type=orec_credit', 'post-new.php?post_type=orec_credit');
	//Hide "On Record Credits → Settings".
	remove_submenu_page('edit.php?post_type=orec_credit', 'orec-settings');
}

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

Where do I put this code?

How to Hide the "Credit Details" Meta Box

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

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

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