Home > Database > Mysql Tutorial > wordpress获取自定义字段get_post_meta函数_MySQL

wordpress获取自定义字段get_post_meta函数_MySQL

WBOY
Release: 2016-06-01 13:26:46
Original
1067 people have browsed it

WordPress

bitsCN.com

wordpress可以设置自定义字段,方便扩展功能,wordpress利用巧妙的数据库表设计达到这一目的,posts表存放文章,页面和附件等,与之对应的postmeta表用来存储自定义的字段,采用post_id,key,value这样的设计来存放自定义字段的值。

get_post_meta函数用法:
get_post_meta($post_id, $key, $single);

该函数有3个基本参数:
$post_id —— 所检索数据的文章的ID,使用 $post->ID 来获取文章的ID。
$key —— 要检索的自定义字段名称
$single —— 这是一个布尔值,如果设置为 true ,将直接以字符串的形式返回字段的值;一个自定义字段可以填写多个值,如果设置为 false,将返回一个数组 array 来显示这多个值。

此函数定义在wordpress的post.php中:

function get_post_meta($post_id, $key = '', $single = false) {    return get_metadata('post', $post_id, $key, $single);}
Copy after login

来看一个使用了wp_cache_set,wp_cache_get和get_post_meta函数的示例:

 

<?php $post_id = $post->ID;  $post_views = wp_cache_get($post_id,'views');   if($post_views === false){    $post_views = get_post_meta($post_id, "views",true);    if(!$post_views) $post_views = 0;  }   $post_views = $post_views + 1;   wp_cache_set($post_id,$post_views,'views');   if($post_views%10 == 0){    update_post_meta($post_id, 'views', $post_views);  }   echo $post_views;?>
Copy after login

 

本文链接:http://www.tantengvip.com/2013/12/wordpress-get_post_meta/

 

更多关于wordpress二次开发的文章,请访问:

http://www.tantengvip.com/category/web/wordpress/

 

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template