get_post_custom

函数


get_post_custom ( $post_id = 0 )
参数
  • (int)
    $post_id
    Optional. Post ID. Default is the ID of the global `$post`.
    Required:
返回值
  • (mixed) An array of values. False for an invalid `$post_id` (non-numeric, zero, or negative value). An empty string if a valid but non-existing post ID is passed.
定义位置
  • wp-includes/post.php
    , line 2584
引入
1.2.0
弃用

检索文章的元字段,基于文章的ID。

在可能的情况下,从缓存中检索帖子的元字段,因此该函数被优化为可多次调用。

function get_post_custom( $post_id = 0 ) {
	$post_id = absint( $post_id );

	if ( ! $post_id ) {
		$post_id = get_the_ID();
	}

	return get_post_meta( $post_id );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。