Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Post Status To Translate

if ( ! function_exists('beauvoir_custom_post_status') ) {

// Register Custom Status
function beauvoir_custom_post_status() {

	$args = array(
		'label'                     => _x( 'To Translate', 'Status General Name', 'divi-child-beauvoir' ),
		'label_count'               => _n_noop( 'To Translate (%s)',  'To Translate (%s)', 'divi-child-beauvoir' ), 
		'public'                    => false,
		'show_in_admin_all_list'    => true,
		'show_in_admin_status_list' => true,
		'exclude_from_search'       => false,
	);
	register_post_status( 'to translate', $args );

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

}