Uses
| Uses | Description |
|---|---|
| wp-includes/post.php: get_post_custom() | Retrieve post meta fields, based on post ID. |
Retrieve meta field names for a post.
If there are no meta fields, then nothing (null) will be returned.
(int) (Optional) Post ID. Default is ID of the global $post.
(array|void) Array of the keys, if retrieved.
File: wp-includes/post.php
function get_post_custom_keys( $post_id = 0 ) {
$custom = get_post_custom( $post_id );
if ( ! is_array( $custom ) ) {
return;
}
$keys = array_keys( $custom );
if ( $keys ) {
return $keys;
}
} | Version | Description |
|---|---|
| 1.2.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_post_custom_keys