get_post_custom_values

函数
get_post_custom_values ( $key = '', $post_id = 0 )
参数
  • (string) $key Optional. Meta field key. Default empty.
    Required:
    Default: (empty)
  • (int) $post_id Optional. Post ID. Default is the ID of the global `$post`.
    Required:
返回值
  • (array|null) Meta field values.
定义位置
相关方法
get_post_custom_keysget_post_customget_post_statusesget_post_statusget_post_states
引入
1.2.0
弃用
-

get_post_custom_values函数用于检索给定文章的自定义字段的所有值的数组。它有两个参数:第一个参数是自定义字段的键,第二个参数是文章的ID。

检索自定义文章字段的值。

参数不能被认为是可选的。所有的文章元字段都会被检索到,并且只返回元字段的关键值。

function get_post_custom_values( $key = '', $post_id = 0 ) {
	if ( ! $key ) {
		return null;
	}

	$custom = get_post_custom( $post_id );

	return isset( $custom[ $key ] ) ? $custom[ $key ] : null;
}

常见问题

FAQs
查看更多 >