返回介绍

update_meta()

发布于 2017-09-11 11:04:16 字数 1427 浏览 1108 评论 0 收藏 0

update_meta( int $meta_id,  string $meta_key,  string $meta_value )

Update post meta data by meta ID.


description


参数

$meta_id

(int) (Required)

$meta_key

(string) (Required) Expect Slashed

$meta_value

(string) (Required) Expect Slashed


返回值

(bool)


源代码

File: wp-admin/includes/post.php

function update_meta( $meta_id, $meta_key, $meta_value ) {
	$meta_key = wp_unslash( $meta_key );
	$meta_value = wp_unslash( $meta_value );

	return update_metadata_by_mid( 'post', $meta_id, $meta_value, $meta_key );
}

更新日志

Versiondescription
1.2.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: wp_unslash()
  • wp-includes/meta.php: update_metadata_by_mid()

Used By

  • wp-admin/includes/post.php: edit_post()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文