WordPress函数文档add_comment_meta()

给一个评论添加meta自定义附加信息 描述 Add meta data field to a comment….

给一个评论添加meta自定义附加信息

描述

Add meta data field to a comment.

用法

<?php add_comment_meta$comment_id$meta_key$meta_value$unique ); ?>

参数

$comment_id

(int) (必填) Comment ID.

默认值: None

$meta_key

(string) (必填) Metadata name.

默认值: None

$meta_value

(mixed) (必填) Metadata value.

默认值: None

$unique

(boolean) (可选) Optional, default is false. Whether the same key should not be added.

默认值: false

返回值

(bool

False for failure. True for success.

示例

Add a custom posted value to every new comment

历史

添加于 版本: 2.9

源文件

add_comment_meta() 函数的代码位于 wp-includes/comment.php

相关

Comment Meta Function(函数)s: add_comment_meta(), get_comment_meta(),
update_comment_meta(),
delete_comment_meta()

  • 原文:http://codex.wordpress.org/Function_Reference/add_comment_meta
类别:WordPress函数文档

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

评论 (0)COMMENT