add_meta()函数是Wordpress函数,为具有给定ID的post添加在$u post superglobal中定义的post元数据。
add_meta( int $post_ID )
为具有给定ID的post添加在$u post superglobal中定义的post元数据。
Add post meta data defined in $_POST superglobal for post with given ID.
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$post_ID | (int) | 必需 |
返回(Return)
(int|bool)
源码(Source)
//暂无
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
1.2.0 | wp-admin/includes/post.php:899 | 3 | 5 |
笔记(Notes)
例子