Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Progress Post Statuses

if ( ! function_exists('tab_progress_statuses') ) {

// Register Custom Status
function tab_progress_statuses() {

	$args = array(
		'label'                     => _x( 'imported_backedup', 'Status General Name', 'text_domain' ),
		'label_count'               => _n_noop( 'Imported & Backed Up (%s)',  'Imported & Backed Up (%s)', 'text_domain' ), 
		'public'                    => true,
		'show_in_admin_all_list'    => true,
		'show_in_admin_status_list' => true,
		'exclude_from_search'       => false,
	);
	register_post_status( 'imported_backedup', $args );

}

// Hook into the 'init' action
add_action( 'init', 'tab_progress_statuses', 0 );

}