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



add_comment_meta › WordPress Function

Seit2.9.0
Veraltetn/v
add_comment_meta ( $comment_id, $meta_key, $meta_value, $unique = false )
Parameter: (4)
  • (int) $comment_id Comment ID.
    Erforderlich: Ja
  • (string) $meta_key Metadata name.
    Erforderlich: Ja
  • (mixed) $meta_value Metadata value. Must be serializable if non-scalar.
    Erforderlich: Ja
  • (bool) $unique Optional. Whether the same key should not be added. Default false.
    Erforderlich: Nein
    Standard: false
Links:
Gibt zurück:
  • (int|false) Meta ID on success, false on failure.
Definiert in:
Codex:

Adds meta data field to a comment.



Quellcode

function add_comment_meta( $comment_id, $meta_key, $meta_value, $unique = false ) {
	return add_metadata( 'comment', $comment_id, $meta_key, $meta_value, $unique );
}