wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_post_stati › WordPress Function

Since3.0.0
已弃用n/a
get_post_stati ( $args = array(), $output = 'names', $operator = 'and' )
参数: (3)
  • (array|string) $args Optional. Array or string of post status arguments to compare against properties of the global `$wp_post_statuses objects`. Default empty array.
    Required: No
    默认: array()
  • (string) $output Optional. The type of output to return, either 'names' or 'objects'. Default 'names'.
    Required: No
    默认: 'names'
  • (string) $operator Optional. The logical operation to perform. 'or' means only one element from the array needs to match; 'and' means all elements must match. Default 'and'.
    Required: No
    默认: 'and'
查看:
返回:
  • (string[]|stdClass[]) A list of post status names or objects.
定义在:
文档:

Gets a list of post statuses.



源码

function get_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 );
}