💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
有两个功能可以方便地访问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()); ```