update_comment_meta()
update_comment_meta( int $comment_id, string $meta_key,…
update_comment_meta( int $comment_id, string $meta_key, mixed $meta_value, mixed $prev_value = ” )
根据注释ID更新注释元字段。
Update comment meta field based on comment ID.
目录锚点:#说明#参数#源码#笔记
说明(Description)
使用$prev_value参数来区分具有相同键和注释ID的元字段。如果注释的元字段不存在,则会添加它。
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$comment_id | (int) | 注释ID。 |
$meta_key | (string) | 元数据键。 |
$meta_value | (mixed) | 元数据值。 |
$prev_value | (mixed) | 删除之前要检查的值。 |
源码(Source)
/** * Update 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. * * @since 2.9.0 * @link https://codex.wordpress.org/Function_Reference/update_comment_meta * * @param int $comment_id Comment ID. * @param string $meta_key Metadata key. * @param mixed $meta_value Metadata value. * @param mixed $prev_value Optional. Previous value to check before removing. * @return int|bool Meta ID if the key didn't exist, true on successful update, false on failure. */ function update_comment_meta($comment_id, $meta_key, $meta_value, $prev_value = '') { return update_metadata('comment', $comment_id, $meta_key, $meta_value, $prev_value); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.9.0 | wp-includes/comment.php | 4 | 4 |
笔记(Notes)
基本用途
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!