Pending Edit Post Status

Home » Snippets » Pending Edit Post Status

Visibility: public

Created with Post status Generator

Creator: WPTurbo Team

				function (): void {
	$args = [
		'public' => true,
		'show_in_admin_all_list' => false,
		'show_in_admin_status_list' => false,
		'exclude_from_search' => false
	];
	register_post_status( '', $args );
}
add_action( 'init', '', 0 );