WordPress - 分类MetaData RETRIEVE

时间:2013-03-25 02:35:43

标签: php wordpress

我正在使用https://github.com/bainternet/My-Meta-Box在我的分类“group”中创建MetaData

如何检索该数据?截至目前,我有每个组ID,但我不知道如何检索元数据。

1 个答案:

答案 0 :(得分:2)

刚想通了。不幸的是,https://github.com/bainternet/My-Meta-Box使用数据库中的WP_Options表,而不是Meta表。

以下是获取信息的方法。

<?$meta = get_option('tax_meta_'.$category->term_id)?>