渲染元数据

有两个功能可以方便地访问 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());
下一节:WordPress附带五种默认帖子类型:文章,页面,附件,修订版,菜单。