get_comment_statuses

函数
get_comment_statuses ( No parameters )
返回值
  • (string[]) List of comment status labels keyed by status.
定义位置
相关方法
wp_get_comment_statusget_comment_datewp_set_comment_statusget_comment_classget_post_statuses
引入
2.7.0
弃用
-

get_comment_statuses – 这个函数返回一个可用的评论状态的数组。它通常用于填充WordPress管理中的评论状态的下拉列表。

检索所有WordPress支持的评论状态。

评论有一组有限的有效状态值,这提供了评论的状态值和描述。

function get_comment_statuses() {
	$status = array(
		'hold'    => __( 'Unapproved' ),
		'approve' => _x( 'Approved', 'comment status' ),
		'spam'    => _x( 'Spam', 'comment status' ),
		'trash'   => _x( 'Trash', 'comment status' ),
	);

	return $status;
}

常见问题

FAQs
查看更多 >