get_post_stati()

最后更新于:2021-11-26 22:38:19

get_post_stati( array|string$args=array(), string$output=’names’, string$operator=’and’)

Get a list of post statuses.

参数

$args

(array|string) (Optional) Array or string of post status arguments to compare against properties of the global $gc_post_statuses objects.

Default value: array()

$output

(string) (Optional) The type of output to return, either ‘names’ or ‘objects’.

Default value: ‘names’

$operator

(string) (Optional) The logical operation to perform. ‘or’ means only one element from the array needs to match; ‘and’ means all elements must match.

Default value: ‘and’

响应

(array) A list of post status names or objects.

源文件

文件: gc-includes/post.php

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

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

	return gc_filter_object_list( $gc_post_statuses, $args, $operator, $field );
}