get_available_post_statuses( string $type = 'post' ): string[]

Returns all the possible statuses for a post type.


Parameters

$type string Optional
The post_type you want the statuses for. Default 'post'.

Default: 'post'


Top ↑

Return

string[] An array of all the statuses for the supplied post type.


Top ↑

Source

File: wp-admin/includes/post.php. View all references

function get_available_post_statuses( $type = 'post' ) {
	$stati = wp_count_posts( $type );

	return array_keys( get_object_vars( $stati ) );
}


Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.