On this page
get_post_custom_keys( int $post_id ): array|void
Retrieves meta field names for a post.
Description
If there are no meta fields, then nothing (null) will be returned.
Parameters
$post_idint Optional-
Post ID. Default is the ID of the global
$post.
Return
array|void Array of the keys, if retrieved.
Source
File: wp-includes/post.php. View all references
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;
}
}
Related
Uses
| Uses | Description |
|---|---|
| get_post_custom() wp-includes/post.php | Retrieves post meta fields, based on post ID. |
Used By
| Used By | Description |
|---|---|
| the_meta() wp-includes/post-template.php | Displays a list of post custom fields. |
| WP_Embed::delete_oembed_caches() wp-includes/class-wp-embed.php | Deletes all oEmbed caches. Unused by core as of 4.0.0. |
Changelog
| Version | Description |
|---|---|
| 1.2.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_post_custom_keys