Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

For Review

status

if ( ! function_exists('post_status_for_review') ) {

// Register Custom Status
function post_status_for_review() {

	$args = array(
		'label'                     => _x( 'Review', 'Status General Name', 'betheme' ),
		'label_count'               => _n_noop( 'Review (%s)',  'Reviews (%s)', 'betheme' ), 
		'public'                    => false,
		'show_in_admin_all_list'    => true,
		'exclude_from_search'       => true,
	);
	register_post_status( 'for_review', $args );

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

}