Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

closed_post_status

kind of archived posts or alternate version

if ( ! function_exists('closed_post_status') ) {

// Register Custom Status
function closed_post_status() {

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

}

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

}