WordPress开发函数add_comment_meta()
WordPress开发函数add_comment_meta(),向注释添加元数据字段。 用法: add_com…
WordPress开发函数add_comment_meta(),向注释添加元数据字段。
用法:
add_comment_meta( int $comment_id, string $meta_key, mixed $meta_value, bool $unique = false )
参数:
$comment_id
(int) (必需) 评论ID。
$meta_key
(string) (必需) 元数据名称。
$meta_value
(mixed) (必需) 元数据的值。如果是非标量,则必须是可序列化的。
$unique
(bool) (可选) 是否不应该添加相同的键。
默认值:假
返回:
(int|false) Meta ID成功,失败为false。
来源:
文件: wp-includes/comment.php
function add_comment_meta( $comment_id, $meta_key, $meta_value, $unique = false ) {
return add_metadata( ‘comment’, $comment_id, $meta_key, $meta_value, $unique );
}
更新版本:
用户贡献的笔记:
(由Codex – 5年前贡献)
基本的例子
为每个新评论添加一个自定义的发布值
<?php
function add_custom_comment_field( $comment_id ) {
add_comment_meta( $comment_id, ‘my_custom_comment_field’, $_POST[‘my_custom_comment_field’] );
}
add_action( ‘comment_post’, ‘add_custom_comment_field’ );
?>
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!