get_post_custom_values

Definition:
function get_post_custom_values( $key = '', $post_id = 0 ) {}

Retrieve values for a custom post field.
The parameters must not be considered optional. All of the post meta fields will be retrieved and only the meta field key values returned.

Parameters

  • string $key: Meta field key.
  • int $post_id: Post ID

Return values

returns:Meta field values.

Source code

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;

}

1589

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: