wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_post_custom_keys › WordPress Function

Da1.2.0
Deprecaton/a
get_post_custom_keys ( $post_id = 0 )
Parametri:
  • (int) $post_id Optional. Post ID. Default is the ID of the global `$post`.
    Richiesto: No
    Default:
Ritorna:
  • (array|void) Array of the keys, if retrieved.
Definito a:
Codex:

Retrieves meta field names for a post.

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


Sorgenti

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