get_post_custom_keys

Definition:
function get_post_custom_keys( $post_id = 0 ) {}

Retrieve meta field names for a post.
If there are no meta fields, then nothing (null) will be returned.

Parameters

  • int $post_id: post ID

Return values

returns:Either array of the keys, or null if keys could not be retrieved.

Source code

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;

}

1587

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: