WordPress中文开发手册

  1. Home
  2. Docs
  3. WordPress中文开发手册
  4. WordPress插件开发
  5. 元数据
  6. 渲染元数据

渲染元数据

有两个功能可以方便地访问postmeta表中存储的元数据:get_post_meta(),get_post_custom()。

有关参数详细信息,请参见功能参考。

get_post_meta(
    int $post_id,
    string $key = '',
    bool $single = false
);

例:

$wporg_meta_value = get_post_meta(get_the_ID(), 'wporg_meta_key');

有关参数详细信息,请参见功能参考。

get_post_custom(
    int $post_id
);

例:

$meta_array = get_post_custom(get_the_ID());