WordPress:Function Reference/get post custom keys

来自站长百科
跳转至: 导航、​ 搜索

描述[ ]

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

用法[ ]

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

例子[ ]

默认用法[ ]

下面的例子会将一个变数($custom_field_keys)设置为一个数组,包含当前文章的所有自定义fields的关键词,然后再输出。

<?php

  $custom_field_keys = get_post_custom_keys();
  foreach ( $custom_field_keys as $key => $value )
    echo $key . " => " . $value . "<br />";

?>

If the post contains custom fields with the keys mykey and yourkey, the output would be:

0 => mykey
1 => yourkey
2 => _edit_last
3 => _edit_lock
4 => _wp_page_template


注:不管一个关键字分配了多少参数值(自定义fields),关键字在数组中只显示一次。


参数[ ]

相关的[ ]

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