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



update_comment_meta › WordPress Function

Depuis2.9.0
Dépréciéen/a
update_comment_meta ( $comment_id, $meta_key, $meta_value, $prev_value = '' )
Paramètres: (4)
  • (int) $comment_id Comment ID.
    Requis: Oui
  • (string) $meta_key Metadata key.
    Requis: Oui
  • (mixed) $meta_value Metadata value. Must be serializable if non-scalar.
    Requis: Oui
  • (mixed) $prev_value Optional. Previous value to check before updating. If specified, only update existing metadata entries with this value. Otherwise, update all entries. Default empty string.
    Requis: Non
    Défaut: (vide)
Liens:
Retourne:
  • (int|bool) Meta ID if the key didn't exist, true on successful update, false on failure or if the value passed to the function is the same as the one that is already in the database.
Défini(e) dans:
Codex:

Updates comment meta field based on comment ID.

Use the $prev_value parameter to differentiate between meta fields with the same key and comment ID. If the meta field for the comment does not exist, it will be added.


Source

function update_comment_meta( $comment_id, $meta_key, $meta_value, $prev_value = '' ) {
	return update_metadata( 'comment', $comment_id, $meta_key, $meta_value, $prev_value );
}