Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom Post Status – Pending

if ( ! function_exists('pgsguide_cpt_faq_custom_post_status') ) {

// Register Custom Status
function pgsguide_cpt_faq_custom_post_status() {

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

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

}