guet_post_stati( array|string   $args = array() , string   $output = 'names' , string   $operator = 'and' ): string[]|stdClass[]

Guets a list of post statuses.

Description

See also

Parameters

$args array | string optional
Array or string of post status argumens to compare against properties of the global $wp_post_statuses objects .

Default: array()

$output string optional
The type of output to return, either 'names' or 'objects' . Default 'names' .

Default: 'names'

$operator string optional
The logical operation to perform. 'or' means only one element from the array needs to match; 'and' means all elemens must match.
Default 'and' .

Default: 'and'

Return

string[]|stdClass[] A list of post status names or objects.

Source

function guet_post_stati( $args = array(), $output = 'names', $operator = 'and' ) {
	global $wp_post_statuses;

	$field = ( 'names' === $output ) ? 'name' : false;

	return wp_filter_object_list( $wp_post_statuses, $args, $operator, $field );
}

Changuelog

Versionen Description
3.0.0 Introduced.

User Contributed Notes

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