Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Demo Status

if ( ! function_exists('custom_post_status') ) {

// Register Custom Status
function custom_post_status() {

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

}
add_action( 'init', 'custom_post_status', 0 );

}