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



has_meta › WordPress Function

Seit1.2.0
Veraltetn/v
has_meta ( $post_id )
Parameter:
  • (int) $post_id A post ID.
    Erforderlich: Ja
Gibt zurück:
  • (array[]) { Array of meta data arrays for the given post ID. @type array ...$0 { Associative array of meta data. @type string $meta_key Meta key. @type mixed $meta_value Meta value. @type string $meta_id Meta ID as a numeric string. @type string $post_id Post ID as a numeric string. } }
Definiert in:
Codex:

Returns meta data for the given post ID.



Ähnliche Funktionen: has_tag, has_term_meta, add_meta, the_meta, list_meta

Quellcode

function has_meta( $post_id ) {
	global $wpdb;

	return $wpdb->get_results(
		$wpdb->prepare(
			"SELECT meta_key, meta_value, meta_id, post_id
			FROM $wpdb->postmeta WHERE post_id = %d
			ORDER BY meta_key,meta_id",
			$post_id
		),
		ARRAY_A
	);
}