站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
WordPress:Function Reference/post meta Function Examples
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
==Description== The following is a detailed example for the usage of the [[WordPress:Function Reference/add post meta|add_post_meta]], [[WordPress:Function Reference/delete post meta|delete_post_meta]], [[WordPress:Function Reference/update post meta|update_post_meta]], and [[WordPress:Function Reference/get post meta|get_post_meta]] functions. ==Example== <div style="padding: 1em; border: 1px dashed #2f6fab; color: Black; background-color: #fafafa; line-height: 1.1em"> %%%<?php /******************* This function handles the mood and listening_to meta tags. It can be called with an action of update, delete, and get (default) When called with an action of update, either $mood or $listening_to must be provided. ie. mood_music( $post->ID, 'update', 'Happy', 'Bon Jovi - It's My Life' ); *******************/ function mood_music( $post_id, $action = 'get', $mood = 0, $listening_to = 0 ) { //Let's make a switch to handle the three cases of 'Action' switch ($action) { case 'update' : if( ! $mood && ! $listening_to ) //If nothing is given to update, end here return false; //add_post_meta usage: //add_post_meta( $post_id, $meta_key, $meta_value, $unique = false ) //If the $mood variable is supplied, //add a new key named 'mood', containing that value. //If the 'mood' key already exists on this post, //this command will simply add another one. if( $mood ) { add_post_meta( $post_id, 'mood', $mood ); return true; } //update_post_meta usage: //update_post_meta( $post_id, $meta_key, $meta_value ) //If the $listening_to variable is supplied, //add a new key named 'listening_to', containing that value. //If the 'listening_to' key already exists on this post, //this command will update it to the new value if( $listening_to ) { add_post_meta( $post_id, 'listening_to', $listening_to, true ) or update_post_meta( $post_id, 'listening_to', $listening_to ); return true; } case 'delete' : //delete_post_meta usage: //delete_post_meta( $post_id, $meta_key, $prev_value = ' ' ) //This will delete all instances of the following keys from the given post delete_post_meta( $post_id, 'mood' ); delete_post_meta( $post_id, 'listening_to' ); //To only delete 'mood' if it's value is 'sad': //delete_post_meta( $post_id, 'mood', 'sad' ); break; case 'get' : //get_post_custom usage: //get_post_meta( $post_id, $meta_key, $single value = false ) //$stored_moods will be an array containing all values of the meta key 'mood' $stored_moods = get_post_meta( $post_id, 'mood' ); //$stored_listening_to will be the first value of the key 'listening_to' $stored_listening_to = get_post_meta( $post_id, 'listening_to', 'true' ); //Now we need a nice ouput format, so that //the user can implement it how he/she wants: //ie. echo mood_music( $post->ID, 'get' ); $return = '<div class='mood-music'>'; if ( ! empty( $stored_moods ) ) $return .= '<strong>Current Mood</strong>: '; foreach( $stored_moods as $mood ) $return .= $mood . ', '; $return .= '<br/>'; if ( ! empty( $stored_moods ) ) { $return .= '<strong>Currently Listening To</strong>: '; $return .= $stored_listening_to; } $return .= '</div>'; return $return; default : return false; break; } //end switch } //end function ?>%%%</div>
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)