站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
WordPress:Function Reference/add post meta
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
==描述== [[WordPress:Function Reference/add post meta|add_post_meta]]为某篇文章添加了一个自定义的(meta)区。 如果<tt>$unique</tt>参数设置为<var>true</var>而且已经存在特别的meta关键词,函数返回<var>false</var>而且不做什么更改;否则的话,函数返回<var>true</var>。 ==用法== %%% <?php add_post_meta($post_id, $meta_key, $meta_value, $unique); ?> %%% ==例子== ===默认用法=== <?php add_post_meta($68, 'my_key', 47); ?> ===添加或者更新一个独特的区=== 如果你存在关键词,添加一个新的field,或者更新现存的field。 <?php add_post_meta(7, 'fruit', 'banana', true) 或者update_post_meta(7, 'fruit', 'banana'); ?> ===其它的例子=== 如果你想要确定没有带有关键字''"my_key"''的fieled,添加之前: <?php add_post_meta(68, 'my_key', '47', true); ?> To add several values to the key ''"my_key"'': <pre><?php add_post_meta(68, 'my_key', '47'); ?> <?php add_post_meta(68, 'my_key', '682'); ?> <?php add_post_meta(68, 'my_key', 'The quick, brown fox jumped over the lazy dog.'); ?> ...</pre> 更详细的例子,请进入[[WordPress:Function Reference/post meta Function Examples|post_meta 函数例子]]网页。 === 制作一个 "隐藏的" 自定义区 === 如果你是一个插件/主题开发人员而且你计划使用自定义field储存与你的插件或者主题相关的参数,你会饶有兴趣地发现,WordPress习惯于显示网页/文章编辑网页中自定义field列表上以"_"(下划线)开始的关键字。就是说,在自定义参数中将下划线设置为第一个字符,是个很好的做法,这样你可以将设置储存为自定义fields,但是你的设置不会在管理UI中的自定义fields列表中显示。 下面的例子: <?php add_post_meta(68, '_color', 'red', true); ?> 会添加一个关键字是 "_color" 的自定义范围而且这个自定义范围中的参数值"red"不会在网页/文章编辑网页中显示。 ==参数== {{Parameter|$post_id|integer|The ID of the post to which you will add a custom field.}} {{Parameter|$meta_key|string|The key of the custom field you will add.}} {{Parameter|$meta_value|string|The value of the custom field you will add.}} {{Parameter|$unique|boolean|Whether or not you want the key to be unique. When set to true, this will ensure that there is not already a custom field attached to the post with <tt>$meta_key</tt> as it's key, and, if such a field already exists, the key will not be added.|optional|false}} {{Parameter|$post_id|integer|你添加一个自定义范围的文章的ID。}} {{Parameter|$meta_key|string|你将要添加的自定义field的关键词。}} {{Parameter|$meta_value|string|你将要添加的自定义field的参数值。}} {{Parameter|$unique|boolean|你是否想要独特的关键字。如果设置为真的,能够确保不存在文章的关键字with <tt>$meta_key</tt> 如果这个field已经存在,这个关键词就不会得到添加。|optional|false}} ==相关的== [[WordPress:Function Reference/delete post meta|delete_post_meta()]], [[WordPress:Function Reference/get post meta|get_post_meta()]], [[WordPress:Function Reference/update post meta|update_post_meta()]], [[WordPress:Function Reference/get post custom|get_post_custom()]], [[WordPress:Function Reference/get post custom values|get_post_custom_values()]], [[WordPress:Function Reference/get post custom keys|get_post_custom_keys()]] [[WordPress:Function Reference/delete post meta|delete_post_meta()]], [[WordPress:Function Reference/get post meta|get_post_meta()]], [[WordPress:Function Reference/update post meta|update_post_meta()]], [[WordPress:Function Reference/get post custom|get_post_custom()]], [[WordPress:Function Reference/get post custom values|get_post_custom_values()]], [[WordPress:Function Reference/get post custom keys|get_post_custom_keys()]]
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)
本页使用的模板:
模板:Parameter
(
编辑
)