wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_post_custom_keys › WordPress Function

Depuis1.2.0
Dépréciéen/a
get_post_custom_keys ( $post_id = 0 )
Paramètres:
  • (int) $post_id Optional. Post ID. Default is the ID of the global `$post`.
    Requis: Non
    Défaut:
Retourne:
  • (array|void) Array of the keys, if retrieved.
Défini(e) dans:
Codex:

Retrieves meta field names for a post.

If there are no meta fields, then nothing (null) will be returned.


Source

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;
	}
}