wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_post_custom_values › WordPress Function

Seit1.2.0
Veraltetn/v
› get_post_custom_values ( $key = '', $post_id = 0 )
Parameter: (2)
  • (string) $key Optional. Meta field key. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (int) $post_id Optional. Post ID. Default is the ID of the global `$post`.
    Erforderlich: Nein
    Standard: —
Gibt zurück:
  • (string[]|null) Meta field values. Null if `$key` is not specified, if the post has no
    meta for that key, or if the post meta could not be retrieved.
    Values are always strings, as described for {@see get_post_custom()}.
Definiert in:
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.


Quellcode

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

	$custom = get_post_custom( $post_id );

	return $custom[ $key ] ?? null;
}