Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

CP status – Pending review

if ( ! function_exists('auxilii_post_status') ) {

// Register Custom Status
function auxilii_post_status() {

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

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

}