记录日常点点滴滴,欢迎来到我的小站。

0%

WordPress get_post_custom()函数获得自定义字段内容

同get_post_meta()一样,用于返回文章的自定义字段值得一个函数,只不过get_post_custom()函数使用起来更简单,如果在循环中使用你甚至不需要设置任何参数。

其实get_post_custom()函数的基础实现与get_post_meta()大同小异,在这里不做过多赘述,

get_post_custom()使用

1
get_post_custom($postid);

只接受一个参数
$postid文章id;

实例演示

1
2
3
4
5
6
7
8
if (have_posts()) :

while (have_posts()) : the_post();
var_dump(get_post_custom());

endwhile;

endif;

输出的结果如下:(如果如下字段有设置的话)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
array(4) {
["_edit_last"]=>
array(1) {
[0]=>
string(1) “1″
}
["_edit_lock"]=>
array(1) {
[0]=>
string(12) “1342451729:1″
}
["_thumbnail_id"]=>
array(1) {
[0]=>
string(3) “228″
}
["xzmeta"]=>
array(2) {
[0]=>
string(3) “xz1″
[1]=>
string(3) “xz2″
}
}

总结

WordPress 目前来看是一套强大的 CMS ,也是一套庞大、臃肿的博客系统,因为在很多功能实现上为了方便初学者或者懒人的使用针对同一个功能做了很多重复的封装,个人感觉本函数就是一个为了一个简单的功能而作的一个多余的封装,既然我们折腾 WP ,就要各个方面都学一下,看一下才好,所以像这种函数我们也要简单的了解一下。