get_post_custom_keys()

get_post_custom_keys( int $post_id ) 检索文章的元字段名。Retrieve…

get_post_custom_keys( int $post_id )

检索文章的元字段名。
Retrieve meta field names for a post.

目录锚点:#说明#参数#返回#源码#笔记


说明(Description)

如果没有元字段,则不返回任何内容(空)。


参数(Parameters)

参数 类型 必填 说明
$post_id (int) 可选 Post ID。默认值是全局$Post的ID。

返回(Return)

(array|void)键的数组(array|void)


源码(Source)

/**
 * Retrieve meta field names for a post.
 *
 * If there are no meta fields, then nothing (null) will be returned.
 *
 * @since 1.2.0
 *
 * @param int $post_id Optional. Post ID. Default is ID of the global $post.
 * @return array|void Array of the keys, if retrieved.
 */
function get_post_custom_keys( $post_id = 0 ) {
	$custom = get_post_custom( $post_id );

	if ( !is_array($custom) )
		return;

	if ( $keys = array_keys($custom) )
		return $keys;
}
更新版本 源码位置 使用 被使用
1.2.0 wp-includes/post.php:2228 2 1 function

笔记(Notes)

默认用法

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册