delete_comment_meta()

delete_comment_meta( int $comment_id, string $meta_key,…

delete_comment_meta( int $comment_id, string $meta_key, mixed $meta_value =  )

从注释中删除元数据匹配条件。
Remove metadata matching criteria from a comment.

目录锚点:#说明#参数#返回#源码#笔记


说明(Description)

可以基于键或键和值进行匹配。基于键和值进行删除将避免删除具有相同键的重复元数据。如果需要,它还允许删除所有元数据匹配键。


参数(Parameters)

参数 类型 必填 说明
$comment_id (int) 必需 注释ID
$meta_key (string) 必需 元数据名称。
$meta_value (mixed) 可选 元数据值。

返回(Return)

(bool)成功时正确,失败时错误。


源码(Source)

/**
 * Remove metadata matching criteria from a comment.
 *
 * You can match based on the key, or key and value. Removing based on key and
 * value, will keep from removing duplicate metadata with the same key. It also
 * allows removing all metadata matching key, if needed.
 *
 * @since 2.9.0
 * @link https://codex.wordpress.org/Function_Reference/delete_comment_meta
 *
 * @param int $comment_id comment ID
 * @param string $meta_key Metadata name.
 * @param mixed $meta_value Optional. Metadata value.
 * @return bool True on success, false on failure.
 */
function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {
	return delete_metadata('comment', $comment_id, $meta_key, $meta_value);
}
更新版本 源码位置 使用 被使用
2.9.0 wp-includes/comment.php:475 5 1 function

笔记(Notes)

删除注释ID为5的密钥为“my_meta_key”的所有元数据。

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册