get_available_post_statuses

函数
get_available_post_statuses ( $type = 'post' )
参数
  • (string) $type The post_type you want the statuses for. Default 'post'.
    Required:
    Default: 'post'
返回值
  • (string[]) An array of all the statuses for the supplied post type.
定义位置
相关方法
get_available_post_mime_typesget_post_statusesget_available_languagesget_post_statesget_post_status
引入
2.5.0
弃用
-

get_available_post_statuses: 该函数在一个关联数组中返回可用的文章状态。数组的键值是状态标题,值是相应的人类可读字符串: 该函数不接受任何参数。

返回一个文章类型的所有可能的状态。

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

	return array_keys( get_object_vars( $stati ) );
}

常见问题

FAQs
查看更多 >