数字化技能提升教程,数字化时代生存宝典

数字化百科 / 产品文档 / WordPress:Function Reference/get post custom

WordPress:Function Reference/get post custom

查看全部产品文档命名空间:WordPress

描述

返回一个多维数组,带有某篇文章的或者网页的所有自定义fields。也看看get_post_custom_keys()get_post_custom_values()

用法

%%% <?php get_post_custom($post_id); ?> %%%

例子

默认用法

使用下面的例子,设置一个变数($custom_fields)作为多维数组,包含当前文章所有的自定义field。 <?php $custom_fields = get_post_custom(); ?>

检索数组中的数据

下面的例子会检索ID是72的文章,关键字为my_custom_field的所有自定义field参数值(既然这个关键词拥有三个自定义field,参数值分别是"狗""47"和 "这是另一个参数值")。

<?php

  $custom_fields = get_post_custom();
  $my_custom_field = $custom_fields['my_custom_field'];
  foreach ( $my_custom_field as $key => $value )
    echo $key . " => " . $value . "<br />";

?>

0 => dogs
1 => 47
2 => This is another value

参数

相关的

add_post_meta(), delete_post_meta(), get_post_meta(), update_post_meta(), get_post_custom_values(), get_post_custom_keys()