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



get_post_custom_values › WordPress Function

Depuis1.2.0
Dépréciéen/a
get_post_custom_values ( $key = '', $post_id = 0 )
Paramètres: (2)
  • (string) $key Optional. Meta field key. Default empty.
    Requis: Non
    Défaut: (vide)
  • (int) $post_id Optional. Post ID. Default is the ID of the global `$post`.
    Requis: Non
    Défaut:
Retourne:
  • (array|null) Meta field values.
Défini(e) dans:
Codex:

Retrieves values for a custom post field.

The parameters must not be considered optional. All of the post meta fields will be retrieved and only the meta field key values returned.


Source

function get_post_custom_values( $key = '', $post_id = 0 ) {
	if ( ! $key ) {
		return null;
	}

	$custom = get_post_custom( $post_id );

	return isset( $custom[ $key ] ) ? $custom[ $key ] : null;
}